Home
last modified time | relevance | path

Searched defs:cv (Results 1 – 25 of 298) sorted by relevance

12345678910>>...12

/external/python/cpython3/Python/
Dcondvar.h138 PyCOND_INIT(PyCOND_T *cv) in PyCOND_INIT()
152 PyCOND_FINI(PyCOND_T *cv) in PyCOND_FINI()
161 _PyCOND_WAIT_MS(PyCOND_T *cv, PyMUTEX_T *cs, DWORD ms) in _PyCOND_WAIT_MS()
192 PyCOND_WAIT(PyCOND_T *cv, PyMUTEX_T *cs) in PyCOND_WAIT()
199 PyCOND_TIMEDWAIT(PyCOND_T *cv, PyMUTEX_T *cs, long long us) in PyCOND_TIMEDWAIT()
205 PyCOND_SIGNAL(PyCOND_T *cv) in PyCOND_SIGNAL()
223 PyCOND_BROADCAST(PyCOND_T *cv) in PyCOND_BROADCAST()
264 PyCOND_INIT(PyCOND_T *cv) in PyCOND_INIT()
270 PyCOND_FINI(PyCOND_T *cv) in PyCOND_FINI()
276 PyCOND_WAIT(PyCOND_T *cv, PyMUTEX_T *cs) in PyCOND_WAIT()
[all …]
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/
DClassProbesAdapterTest.java76 final MockClassVisitor cv = new MockClassVisitor(); in testProbeCounter() local
87 final MockClassVisitor cv = new MockClassVisitor() { in testVisitClassMethods() local
107 final MockClassVisitor cv = new MockClassVisitor(); in testVisitMethodNullMethodVisitor() local
120 final MockClassVisitor cv = new MockClassVisitor() { in testVisitWithFrames() local
136 final MockClassVisitor cv = new MockClassVisitor() { in testVisitWithoutFrames() local
149 private void writeMethod(final ClassVisitor cv) { in writeMethod()
157 private void writeMethodWithBranch(final ClassVisitor cv) { in writeMethodWithBranch()
170 private void writeMethodWithTableSwitch(final ClassVisitor cv) { in writeMethodWithTableSwitch()
185 private void writeMethodWithLookupSwitch(final ClassVisitor cv) { in writeMethodWithLookupSwitch()
/external/rust/crates/grpcio-sys/grpc/src/core/lib/gpr/
Dsync_abseil.cc71 void gpr_cv_init(gpr_cv* cv) { in gpr_cv_init()
77 void gpr_cv_destroy(gpr_cv* cv) { in gpr_cv_destroy()
81 int gpr_cv_wait(gpr_cv* cv, gpr_mu* mu, gpr_timespec abs_deadline) { in gpr_cv_wait()
98 void gpr_cv_signal(gpr_cv* cv) { in gpr_cv_signal()
103 void gpr_cv_broadcast(gpr_cv* cv) { in gpr_cv_broadcast()
Dsync_posix.cc94 void gpr_cv_init(gpr_cv* cv) { in gpr_cv_init()
110 void gpr_cv_destroy(gpr_cv* cv) { in gpr_cv_destroy()
119 int gpr_cv_wait(gpr_cv* cv, gpr_mu* mu, gpr_timespec abs_deadline) { in gpr_cv_wait()
147 void gpr_cv_signal(gpr_cv* cv) { in gpr_cv_signal()
155 void gpr_cv_broadcast(gpr_cv* cv) { in gpr_cv_broadcast()
Dsync_windows.cc62 void gpr_cv_init(gpr_cv* cv) { InitializeConditionVariable(cv); } in gpr_cv_init()
64 void gpr_cv_destroy(gpr_cv* cv) { in gpr_cv_destroy()
68 int gpr_cv_wait(gpr_cv* cv, gpr_mu* mu, gpr_timespec abs_deadline) { in gpr_cv_wait()
97 void gpr_cv_signal(gpr_cv* cv) { WakeConditionVariable(cv); } in gpr_cv_signal()
99 void gpr_cv_broadcast(gpr_cv* cv) { WakeAllConditionVariable(cv); } in gpr_cv_broadcast()
/external/grpc-grpc/src/core/lib/gpr/
Dsync_posix.cc64 void gpr_cv_init(gpr_cv* cv) { in gpr_cv_init()
73 void gpr_cv_destroy(gpr_cv* cv) { GPR_ASSERT(pthread_cond_destroy(cv) == 0); } in gpr_cv_destroy()
75 int gpr_cv_wait(gpr_cv* cv, gpr_mu* mu, gpr_timespec abs_deadline) { in gpr_cv_wait()
95 void gpr_cv_signal(gpr_cv* cv) { GPR_ASSERT(pthread_cond_signal(cv) == 0); } in gpr_cv_signal()
97 void gpr_cv_broadcast(gpr_cv* cv) { in gpr_cv_broadcast()
Dsync_windows.cc61 void gpr_cv_init(gpr_cv* cv) { InitializeConditionVariable(cv); } in gpr_cv_init()
63 void gpr_cv_destroy(gpr_cv* cv) { in gpr_cv_destroy()
67 int gpr_cv_wait(gpr_cv* cv, gpr_mu* mu, gpr_timespec abs_deadline) { in gpr_cv_wait()
96 void gpr_cv_signal(gpr_cv* cv) { WakeConditionVariable(cv); } in gpr_cv_signal()
98 void gpr_cv_broadcast(gpr_cv* cv) { WakeAllConditionVariable(cv); } in gpr_cv_broadcast()
/external/swiftshader/third_party/marl/include/marl/
Dmutex.h46 MARL_NO_EXPORT inline void wait_locked(std::condition_variable& cv, in wait_locked()
55 MARL_NO_EXPORT inline bool wait_until_locked(std::condition_variable& cv, in wait_until_locked()
80 inline void wait(std::condition_variable& cv, Predicate&& p) { in wait()
86 inline bool wait_until(std::condition_variable& cv, in wait_until()
/external/libsrtp2/crypto/cipher/
Daes_gcm_nss.c194 static srtp_err_status_t srtp_aes_gcm_nss_context_init(void *cv, in srtp_aes_gcm_nss_context_init()
231 void *cv, in srtp_aes_gcm_nss_set_iv()
259 static srtp_err_status_t srtp_aes_gcm_nss_set_aad(void *cv, in srtp_aes_gcm_nss_set_aad()
278 static srtp_err_status_t srtp_aes_gcm_nss_do_crypto(void *cv, in srtp_aes_gcm_nss_do_crypto()
325 static srtp_err_status_t srtp_aes_gcm_nss_encrypt(void *cv, in srtp_aes_gcm_nss_encrypt()
366 static srtp_err_status_t srtp_aes_gcm_nss_get_tag(void *cv, in srtp_aes_gcm_nss_get_tag()
384 static srtp_err_status_t srtp_aes_gcm_nss_decrypt(void *cv, in srtp_aes_gcm_nss_decrypt()
Daes_gcm_ossl.c172 static srtp_err_status_t srtp_aes_gcm_openssl_context_init(void *cv, in srtp_aes_gcm_openssl_context_init()
208 void *cv, in srtp_aes_gcm_openssl_set_iv()
243 static srtp_err_status_t srtp_aes_gcm_openssl_set_aad(void *cv, in srtp_aes_gcm_openssl_set_aad()
284 static srtp_err_status_t srtp_aes_gcm_openssl_encrypt(void *cv, in srtp_aes_gcm_openssl_encrypt()
312 static srtp_err_status_t srtp_aes_gcm_openssl_get_tag(void *cv, in srtp_aes_gcm_openssl_get_tag()
343 static srtp_err_status_t srtp_aes_gcm_openssl_decrypt(void *cv, in srtp_aes_gcm_openssl_decrypt()
Dnull_cipher.c96 static srtp_err_status_t srtp_null_cipher_init(void *cv, const uint8_t *key) in srtp_null_cipher_init()
105 static srtp_err_status_t srtp_null_cipher_set_iv(void *cv, in srtp_null_cipher_set_iv()
113 static srtp_err_status_t srtp_null_cipher_encrypt(void *cv, in srtp_null_cipher_encrypt()
Daes_icm_ossl.c213 static srtp_err_status_t srtp_aes_icm_openssl_context_init(void *cv, in srtp_aes_icm_openssl_context_init()
266 void *cv, in srtp_aes_icm_openssl_set_iv()
298 static srtp_err_status_t srtp_aes_icm_openssl_encrypt(void *cv, in srtp_aes_icm_openssl_encrypt()
Daes_icm.c180 static srtp_err_status_t srtp_aes_icm_context_init(void *cv, const uint8_t *key) in srtp_aes_icm_context_init()
234 static srtp_err_status_t srtp_aes_icm_set_iv(void *cv, in srtp_aes_icm_set_iv()
294 static srtp_err_status_t srtp_aes_icm_encrypt(void *cv, in srtp_aes_icm_encrypt()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/
DInterfaceFieldProbeArrayStrategy.java84 public void addMembers(final ClassVisitor cv, final int probeCount) { in addMembers()
92 private void createDataField(final ClassVisitor cv) { in createDataField()
98 private void createInitMethod(final ClassVisitor cv, final int probeCount) { in createInitMethod()
134 private void createClinitMethod(final ClassVisitor cv, in createClinitMethod()
DClassFieldProbeArrayStrategy.java60 public void addMembers(final ClassVisitor cv, final int probeCount) { in addMembers()
65 private void createDataField(final ClassVisitor cv) { in createDataField()
70 private void createInitMethod(final ClassVisitor cv, final int probeCount) { in createInitMethod()
/external/libcxx/test/std/utilities/any/any.nonmembers/any.cast/
Dany_cast_reference.pass.cpp149 Type const &cv = any_cast<Type const&>(a); in test_cast_to_reference() local
157 Type const &cv = any_cast<Type const&>(ca); in test_cast_to_reference() local
165 Type const &cv = any_cast<Type const&>(std::move(ca)); in test_cast_to_reference() local
/external/llvm-project/libcxx/test/std/utilities/any/any.nonmembers/any.cast/
Dany_cast_reference.pass.cpp146 Type const &cv = any_cast<Type const&>(a); in test_cast_to_reference() local
154 Type const &cv = any_cast<Type const&>(ca); in test_cast_to_reference() local
162 Type const &cv = any_cast<Type const&>(std::move(ca)); in test_cast_to_reference() local
/external/libchromeos-rs/src/sync/
Dcv.rs505 let cv = Condvar::new(); in smoke() localVariable
513 let cv = Arc::new(Condvar::new()); in notify_one() localVariable
533 let cv = Arc::new(Condvar::new()); in multi_mutex() localVariable
538 let cv = cv.clone(); in multi_mutex() localVariable
604 let cv = Rc::new(Condvar::new()); in notify_one_single_thread_async() localVariable
636 let cv = Arc::new(Condvar::new()); in notify_one_multi_thread_async() localVariable
715 let cv = Arc::new(Condvar::new()); in notify_one_with_cancel() localVariable
800 let cv = Arc::new(Condvar::new()); in notify_all_with_cancel() localVariable
835 let cv = Arc::new(Condvar::new()); in notify_all() localVariable
900 let cv = Rc::new(Condvar::new()); in notify_all_single_thread_async() localVariable
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DSoftCache.java57 CacheValue<V> cv = (CacheValue<V>)mapValue; in getInstance() local
86 CacheValue<V> cv = (CacheValue<V>)mapValue; in getInstance() local
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DSoftCache.java55 CacheValue<V> cv = (CacheValue<V>)mapValue; in getInstance() local
84 CacheValue<V> cv = (CacheValue<V>)mapValue; in getInstance() local
/external/crosvm/cros_async/src/sync/
Dcv.rs470 let cv = Condvar::new(); in smoke() localVariable
478 let cv = Arc::new(Condvar::new()); in notify_one() localVariable
498 let cv = Arc::new(Condvar::new()); in multi_mutex() localVariable
503 let cv = cv.clone(); in multi_mutex() localVariable
568 let cv = Rc::new(Condvar::new()); in notify_one_single_thread_async() localVariable
600 let cv = Arc::new(Condvar::new()); in notify_one_multi_thread_async() localVariable
679 let cv = Arc::new(Condvar::new()); in notify_one_with_cancel() localVariable
764 let cv = Arc::new(Condvar::new()); in notify_all_with_cancel() localVariable
799 let cv = Arc::new(Condvar::new()); in notify_all() localVariable
864 let cv = Rc::new(Condvar::new()); in notify_all_single_thread_async() localVariable
[all …]
/external/usrsctp/usrsctplib/netinet/
Dsctp_userspace.c338 InitializeXPConditionVariable(userland_cond_t *cv) in InitializeXPConditionVariable()
347 DeleteXPConditionVariable(userland_cond_t *cv) in DeleteXPConditionVariable()
355 SleepXPConditionVariable(userland_cond_t *cv, userland_mutex_t *mtx) in SleepXPConditionVariable()
378 WakeAllXPConditionVariable(userland_cond_t *cv) in WakeAllXPConditionVariable()
/external/swiftshader/third_party/marl/src/
Dconditionvariable_test.cpp26 marl::ConditionVariable cv; in TEST_F() local
69 marl::ConditionVariable cv; in TEST_P() local
116 marl::ConditionVariable cv; in TEST_P() local
/external/perfetto/src/tracing/
Dtracing.cc87 std::condition_variable cv; in ReadTraceBlocking() local
109 std::condition_variable cv; in GetTraceStatsBlocking() local
131 std::condition_variable cv; in QueryServiceStateBlocking() local
/external/python/cpython3/Include/
Ddynamic_annotations.h106 #define _Py_ANNOTATE_CONDVAR_LOCK_WAIT(cv, lock) \ argument
111 #define _Py_ANNOTATE_CONDVAR_WAIT(cv) \ argument
116 #define _Py_ANNOTATE_CONDVAR_SIGNAL(cv) \ argument
120 #define _Py_ANNOTATE_CONDVAR_SIGNAL_ALL(cv) \ argument
336 #define _Py_ANNOTATE_CONDVAR_LOCK_WAIT(cv, lock) /* empty */ argument
337 #define _Py_ANNOTATE_CONDVAR_WAIT(cv) /* empty */ argument
338 #define _Py_ANNOTATE_CONDVAR_SIGNAL(cv) /* empty */ argument
339 #define _Py_ANNOTATE_CONDVAR_SIGNAL_ALL(cv) /* empty */ argument

12345678910>>...12