Home
last modified time | relevance | path

Searched refs:deadline (Results 1 – 11 of 11) sorted by relevance

/hardware/interfaces/neuralnetworks/1.3/vts/functional/
DQualityOfServiceTests.cpp60 const OptionalTimePoint& deadline)>;
81 OptionalTimePoint deadline; in makeDeadline() local
82 deadline.nanosecondsSinceEpoch(getNanosecondsSinceEpoch(timePoint)); in makeDeadline()
83 return deadline; in makeDeadline()
88 OptionalTimePoint deadline; in runPrepareModelTest() local
90 deadline = makeDeadline(deadlineBound.value()); in runPrepareModelTest()
107 model, ExecutionPreference::FAST_SINGLE_ANSWER, priority, deadline, in runPrepareModelTest()
172 const OptionalTimePoint& deadline) { in executeAsynchronously() argument
178 Return<ErrorStatus> ret = preparedModel->execute_1_3(request, measure, deadline, {}, callback); in executeAsynchronously()
195 const OptionalTimePoint& deadline) { in executeSynchronously() argument
[all …]
/hardware/interfaces/neuralnetworks/1.3/
DIPreparedModel.hal71 * execute_1_3 can be called with an optional deadline. If the execution
72 * is not able to be completed before the provided deadline, the execution
88 * @param deadline The time by which the execution is expected to complete.
89 * If the execution cannot be completed by the deadline, the
114 * cannot be completed by the deadline
118 execute_1_3(Request request, MeasureTiming measure, OptionalTimePoint deadline,
147 * executeSynchronously_1_3 may be called with an optional deadline. If the
148 * execution is not able to be completed before the provided deadline, the
164 * @param deadline The time by which the execution is expected to complete.
165 * If the execution cannot be finished by the deadline, the
[all …]
DIDevice.hal128 * prepareModel_1_3 can be called with an optional deadline. If the model
129 * is not able to be prepared before the provided deadline, the model
158 * @param deadline The time by which the model is expected to be prepared.
159 * If the model cannot be prepared by the deadline, the preparation may
196 * cannot be prepared by the deadline
200 Priority priority, OptionalTimePoint deadline,
246 * prepareModelFromCache_1_3 can be called with an optional deadline. If the
247 * model is not able to prepared before the provided deadline, the model
262 * @param deadline The time by which the model is expected to be prepared.
263 * If the model cannot be prepared by the deadline, the preparation may
[all …]
DIPreparedModelCallback.hal51 * the model cannot be prepared by the deadline
DIFencedExecutionCallback.hal42 * cannot be completed by the deadline
DIExecutionCallback.hal51 * cannot be completed by the deadline
Dtypes.t581 * Failure because a deadline could not be met for a task, but future
587 * Failure because a deadline could not be met for a task, and future
Dtypes.hal5816 * Failure because a deadline could not be met for a task, but future
5822 * Failure because a deadline could not be met for a task, and future
/hardware/google/av/media/sfplugin/
DCCodec.cpp1521 Mutexed<NamedTimePoint>::Locked deadline(mQueueDeadline); in onMessageReceived() local
1522 deadline->set(TimePoint::max(), "none"); in onMessageReceived()
1661 Mutexed<NamedTimePoint>::Locked deadline(mDeadline); in setDeadline() local
1662 deadline->set(now + (timeout * mult), name); in setDeadline()
1669 Mutexed<NamedTimePoint>::Locked deadline(*deadlinePtr); in initiateReleaseIfStuck() local
1670 if (deadline->get() < std::chrono::steady_clock::now()) { in initiateReleaseIfStuck()
1671 name = deadline->getName(); in initiateReleaseIfStuck()
1674 if (deadline->get() != TimePoint::max()) { in initiateReleaseIfStuck()
1698 Mutexed<NamedTimePoint>::Locked deadline(mEosDeadline); in onWorkQueued() local
1699 deadline->set(std::chrono::steady_clock::now() + 3s, "eos"); in onWorkQueued()
[all …]
/hardware/interfaces/soundtrigger/2.0/vts/functional/
DVtsHalSoundtriggerV2_0TargetTest.cpp72 auto deadline = std::chrono::system_clock::now() + in wait() local
75 if (mCv.wait_until(lock, deadline) == std::cv_status::timeout) { in wait()
/hardware/interfaces/soundtrigger/2.1/vts/functional/
DVtsHalSoundtriggerV2_1TargetTest.cpp82 auto deadline = std::chrono::system_clock::now() + std::chrono::seconds(timeoutSeconds); in wait() local
84 if (!mCv.wait_until(lock, deadline, [& count = mCount] { return count > 0; })) { in wait()