/external/tpm2/ |
PPPlat.c | 15 // Check if physical presence is signaled 19 // TRUE if physical presence is signaled 20 // FALSE if physical presence is not signaled
|
/external/compiler-rt/test/tsan/ |
vptr_benign_race.cc | 9 signaled = false; 15 signaled = true; 23 bool signaled; member in struct:A 31 while (!signaled)
|
/external/linux-kselftest/tools/testing/selftests/sync/ |
sync_wait.c | 36 int valid, active, signaled, ret; local 52 /* Confirm fence isn't signaled */ 54 ASSERT(active == 3, "Fence signaled too early!\n"); 62 signaled = sync_fence_count_with_status(merged, FENCE_STATUS_SIGNALED); 63 ASSERT(active == 2 && signaled == 1, 68 signaled = sync_fence_count_with_status(merged, FENCE_STATUS_SIGNALED); 69 ASSERT(active == 1 && signaled == 2, 74 signaled = sync_fence_count_with_status(merged, FENCE_STATUS_SIGNALED); 75 ASSERT(active == 0 && signaled == 3, 80 ASSERT(ret > 0, "Failure waiting on signaled fence\n") [all...] |
/external/lzma/C/ |
Threads.c | 52 WRes Event_Create(CEvent *p, BOOL manualReset, int signaled)
54 *p = CreateEvent(NULL, manualReset, (signaled ? TRUE : FALSE), NULL);
61 WRes ManualResetEvent_Create(CManualResetEvent *p, int signaled) { return Event_Create(p, TRUE, signaled); }
62 WRes AutoResetEvent_Create(CAutoResetEvent *p, int signaled) { return Event_Create(p, FALSE, signaled); }
|
Threads.h | 46 WRes ManualResetEvent_Create(CManualResetEvent *p, int signaled);
48 WRes AutoResetEvent_Create(CAutoResetEvent *p, int signaled);
|
/external/linux-kselftest/tools/testing/selftests/powerpc/signal/ |
signal.c | 29 static sig_atomic_t signaled; variable 35 signaled = 1; 72 while (!signaled && !fail) 74 if (!signaled) { 87 signaled = 0; 95 while (!signaled && !fail) 97 if (!signaled) {
|
signal_tm.c | 29 static sig_atomic_t signaled; variable 40 signaled = 1; 73 signaled = 0; 95 while(!signaled && !fail) 97 if (!signaled) {
|
/frameworks/native/libs/ui/include/ui/ |
Fence.h | 86 // becomes signaled when both f1 and f2 are signaled (even if f1 or f2 is 87 // destroyed before it becomes signaled). The name argument specifies the 101 // fence transitioned to the signaled state. If the fence is not signaled 108 Unsignaled, // Fence is valid but has not yet signaled 109 Signaled, // Fence is valid and has signaled 112 // getStatus() returns whether the fence has signaled yet. Prefer this to 114 // signaled [all...] |
/hardware/qcom/display/msm8996/sdm/include/core/ |
buffer_sync_handler.h | 33 @details SDM will use this interface to wait for buffer sync fd to be signaled/merge 48 signaled/merge two buffer sync fds into one. 56 @details This method waits for fd to be signaled by the producer/consumer. 81 /*! @brief Method to detect if sync fd is signaled 83 @details This method detects if sync fd is signaled. It is responsibility of the caller to 88 @return \link Tue if fd has been signaled \endlink
|
/hardware/qcom/display/msm8998/sdm/include/core/ |
buffer_sync_handler.h | 33 @details SDM will use this interface to wait for buffer sync fd to be signaled/merge 48 signaled/merge two buffer sync fds into one. 56 @details This method waits for fd to be signaled by the producer/consumer. 81 /*! @brief Method to detect if sync fd is signaled 83 @details This method detects if sync fd is signaled. It is responsibility of the caller to 88 @return \link Tue if fd has been signaled \endlink
|
/hardware/qcom/display/sdm845/sdm/include/core/ |
buffer_sync_handler.h | 33 @details SDM will use this interface to wait for buffer sync fd to be signaled/merge 48 signaled/merge two buffer sync fds into one. 56 @details This method waits for fd to be signaled by the producer/consumer. 81 /*! @brief Method to detect if sync fd is signaled 83 @details This method detects if sync fd is signaled. It is responsibility of the caller to 88 @return \link Tue if fd has been signaled \endlink
|
/external/libchrome/base/synchronization/ |
waitable_event.h | 47 // state after a single waiting thread has been released or remain signaled 51 // Indicates whether a new WaitableEvent should start in a signaled state or 53 enum class InitialState { SIGNALED, NOT_SIGNALED }; 68 // Put the event in the un-signaled state. 71 // Put the event in the signaled state. Causing any thread blocked on Wait 75 // Returns true if the event is in the signaled state, else false. If this 79 // Wait indefinitely for the event to be signaled. Wait's return "happens 89 // Wait up until max_time has passed for the event to be signaled. Returns 90 // true if the event was signaled. If this method returns false, then it 104 // returns: the index of a WaitableEvent which has been signaled [all...] |
waitable_event_watcher.h | 29 // the waitable event is signaled, a callback is made in the thread of a given 48 // becomes signaled. WaitableEventWatcher makes this task easy. When MyClass 59 // it with a Watcher. It will act as if the event was never signaled. 72 // When @event is signaled, the given callback is called on the thread of the 90 // signaled.
|
/frameworks/native/cmds/surfacereplayer/replayer/ |
Event.cpp | 25 waitUntil(Event::EventState::Signaled); 31 changeState(Event::EventState::Signaled);
|
Event.h | 34 Signaled, // Signaled by main thread, about to immediately switch to Running
|
/external/webrtc/talk/app/webrtc/objctests/ |
RTCSessionDescriptionSyncObserver.m | 41 @property(atomic, assign) BOOL signaled; 51 @synthesize signaled = _signaled; 62 self.signaled = YES; 68 if (!self.signaled) 70 self.signaled = NO;
|
/external/mesa3d/src/gallium/winsys/svga/drm/ |
vmw_fence.c | 65 * signaled. 115 * @signaled: Seqno that has signaled. 122 uint32_t signaled, 137 if (emitted - signaled > (1 << 30)) 138 emitted = signaled; 141 if (signaled == ops->last_signaled && emitted == ops->last_emitted) 145 if (!vmw_fence_seq_is_signaled(fence->seqno, signaled, emitted)) 151 ops->last_signaled = signaled; 256 * a flag, it is assumed to be already signaled [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Include/Protocol/ |
VariableLock.h | 4 EFI_END_OF_DXE_EVENT_GUID is signaled.
40 already been signaled.
54 /// EFI_END_OF_DXE_EVENT_GUID is signaled.
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_wait/ |
1-1.c | 30 int signaled = 0; variable 59 if (signaled == 0) { 107 signaled = 1;
|
3-1.c | 28 int signaled = 0; variable 63 if (signaled == 0) { 107 signaled = 1;
|
/device/linaro/bootloader/edk2/MdeModulePkg/Include/Guid/ |
ConnectConInEvent.h | 2 GUID for an event that is signaled on the first attempt to check for a keystroke
|
/external/autotest/server/site_tests/platform_Powerwash/ |
control | 19 signaled. The test verifies that a given file on the stateful partition is
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_timedwait/ |
2-1.c | 11 * signaled or broadcasted, or if the absolute time specified by abstime has 38 int signaled = 0; variable 77 if (signaled == 0) { 131 signaled = 1;
|
/system/core/libsync/include/ndk/ |
sync.h | 29 * in unsignaled state (0), and make a one-time transition to either signaled 32 * signaled if all of the child fences are signaled, or unsignaled otherwise. 50 * If one of the input sync files is signaled or invalid, then this function
|
/hardware/intel/common/libwsbm/src/ |
wsbm_fencemgr.c | 96 * @signaled types is updated using a compare-and-swap 250 uint32_t * signaled) 259 *signaled = wsbmAtomicRead(&fence->signaled_types); 260 if ((*signaled & flush_type) == flush_type) 263 ret = mgr->info.signaled(mgr, fence->private, flush_type, signaled); 265 *signaled = wsbmAtomicRead(&fence->signaled_types); 271 signaled_types = old_signaled_types | *signaled; 279 *signaled); 430 info.signaled = tSignaled [all...] |