/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Mutex.h | 93 unsigned acquired; variable 97 impl(rec), acquired(0), recursive(rec) { } in impl() 106 assert((recursive || acquired == 0) && "Lock already acquired!!"); in lock() 107 ++acquired; in lock() 119 assert(((recursive && acquired) || (acquired == 1)) && in unlock() 121 --acquired; in unlock()
|
/third_party/boost/boost/interprocess/detail/ |
D | robust_emulation.hpp | 55 bool acquired; in remove_if_can_lock_file() local 56 if(try_acquire_file_lock(fhnd, acquired) && acquired){ in remove_if_can_lock_file() 118 bool acquired; in robust_mutex_lock_file() local 119 if(!try_acquire_file_lock(fd, acquired) || !acquired ){ in robust_mutex_lock_file() 314 bool acquired; in is_owner_dead() local 315 if(try_acquire_file_lock(fhnd, acquired) && acquired){ in is_owner_dead()
|
D | os_file_functions.hpp | 230 inline bool try_acquire_file_lock(file_handle_t hnd, bool &acquired) in try_acquire_file_lock() argument 239 acquired = false, true : false; in try_acquire_file_lock() 242 return (acquired = true); in try_acquire_file_lock() 261 inline bool try_acquire_file_lock_sharable(file_handle_t hnd, bool &acquired) in try_acquire_file_lock_sharable() argument 269 acquired = false, true : false; in try_acquire_file_lock_sharable() 271 return (acquired = true); in try_acquire_file_lock_sharable() 536 inline bool try_acquire_file_lock(file_handle_t hnd, bool &acquired) 546 (acquired = false, true) : false; 548 return (acquired = true); 571 inline bool try_acquire_file_lock_sharable(file_handle_t hnd, bool &acquired) [all …]
|
/third_party/node/deps/npm/node_modules/lockfile/ |
D | sockets.md | 7 - lock has been acquired via server 11 - if acquired via connection 13 - if acquired via server 16 - if acquired via filename 23 - lock has been acquired via connection
|
/third_party/skia/third_party/externals/sfntly/cpp/src/test/ |
D | lock_test.cc | 52 int acquired() const { return acquired_; } in acquired() function in sfntly::BasicLockTestThread 68 int acquired = 0; in BasicLockTest() local 71 acquired++; in BasicLockTest() 76 acquired++; in BasicLockTest() 82 acquired++; in BasicLockTest() 89 acquired++; in BasicLockTest() 96 EXPECT_GE(acquired, 20); in BasicLockTest() 97 EXPECT_GE(thread.acquired(), 20); in BasicLockTest()
|
/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/test/ |
D | lock_test.cc | 52 int acquired() const { return acquired_; } in acquired() function in sfntly::BasicLockTestThread 68 int acquired = 0; in BasicLockTest() local 71 acquired++; in BasicLockTest() 76 acquired++; in BasicLockTest() 82 acquired++; in BasicLockTest() 89 acquired++; in BasicLockTest() 96 EXPECT_GE(acquired, 20); in BasicLockTest() 97 EXPECT_GE(thread.acquired(), 20); in BasicLockTest()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | Mutex.h | 30 unsigned acquired = 0; variable 41 ++acquired; in lock() 54 assert(acquired && "Lock not acquired before release!"); in unlock() 55 --acquired; in unlock()
|
/third_party/glib/glib/tests/ |
D | timeout.c | 114 gboolean acquired, ready; in test_far_future_ready_time() local 120 acquired = g_main_context_acquire (context); in test_far_future_ready_time() 121 g_assert_true (acquired); in test_far_future_ready_time()
|
/third_party/libwebsockets/lib/misc/threadpool/ |
D | threadpool.c | 54 lws_usec_t acquired; member 76 lws_usec_t acquired; member 131 if (!task->acquired) { in __lws_threadpool_task_dump() 152 ms_delta(task->acquired, task->created), in __lws_threadpool_task_dump() 153 ms_delta(now, task->acquired), in __lws_threadpool_task_dump() 154 pc_delta(now, task->acquired, runms), in __lws_threadpool_task_dump() 155 pc_delta(now, task->acquired, syncms)); in __lws_threadpool_task_dump() 165 ms_delta(task->acquired, task->created), in __lws_threadpool_task_dump() 166 ms_delta(task->done, task->acquired), in __lws_threadpool_task_dump() 167 pc_delta(task->done, task->acquired, runms), in __lws_threadpool_task_dump() [all …]
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/audio/ |
D | gstaudioringbuffer.c | 83 ringbuffer->acquired = FALSE; in gst_audio_ring_buffer_init() 465 g_assert (!buf->acquired); in gst_audio_ring_buffer_open_device() 522 if (G_UNLIKELY (buf->acquired)) in gst_audio_ring_buffer_close_device() 617 if (G_UNLIKELY (buf->acquired)) in gst_audio_ring_buffer_acquire() 620 buf->acquired = TRUE; in gst_audio_ring_buffer_acquire() 688 buf->acquired = FALSE; in gst_audio_ring_buffer_acquire() 697 buf->acquired = FALSE; in gst_audio_ring_buffer_acquire() 734 if (G_UNLIKELY (!buf->acquired)) in gst_audio_ring_buffer_release() 737 buf->acquired = FALSE; in gst_audio_ring_buffer_release() 775 buf->acquired = TRUE; in gst_audio_ring_buffer_release() [all …]
|
/third_party/python/Doc/library/ |
D | _thread.rst | 165 value: if it is zero, the lock is only acquired if it can be acquired 166 immediately without waiting, while if it is nonzero, the lock is acquired 174 The return value is ``True`` if the lock is acquired successfully, 186 Releases the lock. The lock must have been acquired earlier, but not 192 Return the status of the lock: ``True`` if it has been acquired by some thread, 217 :exc:`KeyboardInterrupt` exception will happen after the lock has been acquired.
|
D | asyncio-sync.rst | 230 The lock must be acquired before this method is called and 236 Return ``True`` if the underlying lock is acquired. 245 The lock must be acquired before this method is called and 260 If the calling task has not acquired the lock when this method is 330 Returns ``True`` if semaphore can not be acquired immediately.
|
D | threading.rst | 482 The class implementing primitive lock objects. Once a thread has acquired a 504 and as long as the lock cannot be acquired. A *timeout* argument of ``-1`` 508 The return value is ``True`` if the lock is acquired successfully, 522 which has acquired the lock. 534 Return true if the lock is acquired. 543 A reentrant lock is a synchronization primitive that may be acquired multiple 562 released by the thread that acquired it. Once a thread has acquired a 564 thread must release it once for each time it has acquired it. 592 and as long as the lock cannot be acquired. Return ``True`` if the lock has 593 been acquired, false if the timeout has elapsed. [all …]
|
D | tkinter.scrolledtext.rst | 20 methods of the :class:`Grid` and :class:`Pack` geometry managers are acquired
|
/third_party/glib/gio/tests/ |
D | permission.c | 26 acquired (GObject *source, in acquired() function 99 g_permission_acquire_async (p, NULL, acquired, loop); in test_simple()
|
/third_party/boost/libs/thread/doc/ |
D | mutexes.qbk | 148 each level of ownership acquired by a single thread before ownership can be acquired by another thr… 219 called once for each level of ownership acquired by a single thread before ownership can be acquire…
|
D | mutex_concepts.qbk | 39 Lock ownership acquired through a call to __lock_ref__ must be released through a call to __unlock_… 67 [[Thread safety:] [If an exception is thrown then a lock shall not have been acquired for the curre… 125 Lock ownership acquired through a call to __try_lock_ref__ must be released through a call to __unl… 262 Lock ownership acquired through a call to __try_lock_for or __try_lock_until must be released throu… 315 Lock ownership acquired through a call to __timed_lock_ref__ must be released through a call to __u… 379 Lock ownership acquired through a call to __lock_shared_ref__, __try_lock_shared_ref__, __try_lock_… 416 [[Returns:] [`true` if shared ownership was acquired for the current thread, `false` otherwise.]] 433 [[Returns:] [`true` if shared ownership was acquired for the current thread, `false` otherwise.]] 472 Lock ownership acquired through a call to __timed_lock_shared_ref__ must be released through a call… 481 [[Returns:] [`true` if shared ownership was acquired for the current thread, `false` otherwise.]] [all …]
|
/third_party/EGL/extensions/NV/ |
D | EGL_NV_stream_consumer_eglimage.txt | 50 allows these frames to be acquired as EGLImages. Frames from the 114 acquired from the stream after creation. 221 new frame available in the stream that can be acquired via 284 needs to have previously been acquired with 313 If an acquired EGLImage has not yet released when eglDestroyImage 329 been acquired.
|
/third_party/EGL/extensions/KHR/ |
D | EGL_KHR_stream_consumer_gltexture.txt | 248 If the EGLStream is deleted while an image frame is acquired (i.e. 251 be freed until the acquired image frame is released. However it 321 has an image acquired? 331 acquired. 347 eglStreamConsumerReleaseKHR if an image is acquired. This 352 eglStreamConsumerReleaseKHR if an image is acquired, and state 377 acquired.
|
/third_party/skia/third_party/externals/egl-registry/extensions/KHR/ |
D | EGL_KHR_stream_consumer_gltexture.txt | 248 If the EGLStream is deleted while an image frame is acquired (i.e. 251 be freed until the acquired image frame is released. However it 321 has an image acquired? 331 acquired. 347 eglStreamConsumerReleaseKHR if an image is acquired. This 352 eglStreamConsumerReleaseKHR if an image is acquired, and state 377 acquired.
|
/third_party/libwebsockets/lib/system/smd/ |
D | README.md | 260 acquired the date as well as acquired an IP on a non-captive portal connection, 273 DHCP|DHCP acquired 277 POLICY_VALID|The system policy has been acquired and parsed 279 AUTH1|We acquired auth1 from the authority using our registration info 280 AUTH2|We acquired auth2 from the authority using our registration info
|
/third_party/gstreamer/gstplugins_bad/ext/webrtcdsp/ |
D | gstwebrtcechoprobe.cpp | 282 if (!probe->acquired && g_strcmp0 (GST_OBJECT_NAME (probe), name) == 0) { in gst_webrtc_acquire_echo_probe() 283 probe->acquired = TRUE; in gst_webrtc_acquire_echo_probe() 299 probe->acquired = FALSE; in gst_webrtc_release_echo_probe()
|
D | gstwebrtcechoprobe.h | 80 gboolean acquired; member
|
/third_party/boost/libs/fiber/doc/ |
D | mutexes.qbk | 214 each level of ownership acquired by a single fiber before ownership can be 215 acquired by another fiber. 285 ownership acquired by a single fiber before ownership can be acquired by another
|
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-proxy/ |
D | README.md | 32 [2020/02/26 15:41:28:4226] N: ss_api_amazon_auth_rx: acquired 567-byte api.amazon.com auth token, e…
|