Home
last modified time | relevance | path

Searched refs:oneShot (Results 1 – 17 of 17) sorted by relevance

/system/chre/apps/test/chqts/src/general_test/
Dtimer_cancel_test.h43 bool oneShot; member
50 oneShot(oneShot_), in Stage()
Dtimer_cancel_test.cc48 stage->timerId = chreTimerSet(kDuration, stage, stage->oneShot); in startStages()
113 if (stage->oneShot) { in handleStageEvent()
Dtimer_set_test.cc56 const void *cookie, bool oneShot) in Stage() argument
62 mOneShot(oneShot) {} in Stage()
Dtimer_set_test.h44 Stage(uint32_t stage, uint64_t duration, const void *cookie, bool oneShot);
/system/gsid/aidl/android/gsi/
DIGsiService.aidl87 int enableGsi(boolean oneShot, @utf8InCpp String dsuSlot); in enableGsi() argument
94 …oneway void enableGsiAsync(boolean oneShot, @utf8InCpp String dsuSlot, IGsiServiceCallback result); in enableGsiAsync() argument
/system/teeui/libteeui/include/secure_input/
Devdev.h106 : next(_next), duration(_duration), handleTimer(std::move(handle)), oneShot(_oneShot) {} in Timer()
111 bool oneShot; member
129 bool oneShot = true);
/system/chre/platform/shared/
Dchre_api_re.cc48 bool oneShot) { in chreTimerSet() argument
53 .setNanoappTimer(nanoapp, chre::Nanoseconds(duration), cookie, oneShot); in chreTimerSet()
/system/chre/chre_api/legacy/v1_0/chre/
Dre.h254 uint32_t chreTimerSet(uint64_t duration, const void* cookie, bool oneShot);
/system/chre/chre_api/legacy/v1_1/chre/
Dre.h314 uint32_t chreTimerSet(uint64_t duration, const void *cookie, bool oneShot);
/system/chre/chre_api/legacy/v1_3/chre/
Dre.h320 uint32_t chreTimerSet(uint64_t duration, const void *cookie, bool oneShot);
/system/chre/chre_api/legacy/v1_2/chre/
Dre.h320 uint32_t chreTimerSet(uint64_t duration, const void *cookie, bool oneShot);
/system/chre/chre_api/legacy/v1_4/chre/
Dre.h334 uint32_t chreTimerSet(uint64_t duration, const void *cookie, bool oneShot);
/system/chre/chre_api/include/chre_api/chre/
Dre.h334 uint32_t chreTimerSet(uint64_t duration, const void *cookie, bool oneShot);
/system/teeui/libteeui/src/
Devdev.cpp64 if (!current.oneShot) { in runTimers()
99 std::chrono::steady_clock::duration duration, bool oneShot) { in addTimer() argument
102 newTimers_.emplace_back(next, duration, std::move(handler), oneShot); in addTimer()
/system/gsid/
Dgsi_service.h53 binder::Status enableGsi(bool oneShot, const std::string& dsuSlot, int* _aidl_return) override;
54 binder::Status enableGsiAsync(bool oneShot, const ::std::string& dsuSlot,
/system/chre/apps/test/common/chre_stress_test/inc/
Dchre_stress_test_manager.h125 void setTimer(uint64_t delayNs, bool oneShot, uint32_t *timerHandle);
/system/chre/apps/test/common/chre_stress_test/src/
Dchre_stress_test_manager.cc425 void Manager::setTimer(uint64_t delayNs, bool oneShot, uint32_t *timerHandle) { in setTimer() argument
426 *timerHandle = chreTimerSet(delayNs, timerHandle, oneShot); in setTimer()