Home
last modified time | relevance | path

Searched refs:mExecutionInFlight (Results 1 – 7 of 7) sorted by relevance

/aosp12/packages/modules/NeuralNetworks/shim_and_sl/
H A DShimPreparedModel.cpp357 std::atomic_flag mExecutionInFlight = ATOMIC_FLAG_INIT; member in aidl::android::hardware::neuralnetworks::ShimBurst
386 const bool executionAlreadyInFlight = mExecutionInFlight.test_and_set(); in executeSynchronously()
391 const auto guard = ::android::base::make_scope_guard([this] { mExecutionInFlight.clear(); }); in executeSynchronously()
/aosp12/hardware/interfaces/neuralnetworks/aidl/utils/include/nnapi/hal/aidl/
H A DBurst.h114 mutable std::atomic_flag mExecutionInFlight = ATOMIC_FLAG_INIT;
/aosp12/hardware/interfaces/neuralnetworks/1.2/utils/include/nnapi/hal/1.2/
H A DExecutionBurstController.h191 mutable std::atomic_flag mExecutionInFlight = ATOMIC_FLAG_INIT;
/aosp12/hardware/interfaces/neuralnetworks/aidl/utils/src/
H A DBurst.cpp216 const bool alreadyInFlight = mExecutionInFlight.test_and_set(); in executeInternal()
220 const auto guard = ::android::base::make_scope_guard([this] { mExecutionInFlight.clear(); }); in executeInternal()
/aosp12/hardware/interfaces/neuralnetworks/1.2/utils/src/
H A DExecutionBurstController.cpp409 const bool alreadyInFlight = mExecutionInFlight.test_and_set(); in executeInternal()
413 const auto guard = base::make_scope_guard([this] { mExecutionInFlight.clear(); }); in executeInternal()
/aosp12/packages/modules/NeuralNetworks/driver/sample_aidl/
H A DSampleDriver.h174 std::atomic_flag mExecutionInFlight = ATOMIC_FLAG_INIT;
H A DSampleDriver.cpp621 const bool executionAlreadyInFlight = mExecutionInFlight.test_and_set(); in executeSynchronously()
626 const auto guard = base::make_scope_guard([this] { mExecutionInFlight.clear(); }); in executeSynchronously()