Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
Dhashlib.h53 if ((obj)->use_mutex) { \
57 if ((obj)->use_mutex) { \
65 (obj)->use_mutex = true; \
71 (obj)->use_mutex = false; \
Dmd5module.c52 bool use_mutex; member
201 if (!self->use_mutex && buf.len >= HASHLIB_GIL_MINSIZE) { in MD5Type_update()
202 self->use_mutex = true; in MD5Type_update()
204 if (self->use_mutex) { in MD5Type_update()
Dsha1module.c52 bool use_mutex; member
194 if (!self->use_mutex && buf.len >= HASHLIB_GIL_MINSIZE) { in SHA1Type_update()
195 self->use_mutex = true; in SHA1Type_update()
197 if (self->use_mutex) { in SHA1Type_update()
Dsha2module.c56 bool use_mutex; member
65 bool use_mutex; member
377 if (!self->use_mutex && buf.len >= HASHLIB_GIL_MINSIZE) { in SHA256Type_update()
378 self->use_mutex = true; in SHA256Type_update()
380 if (self->use_mutex) { in SHA256Type_update()
411 if (!self->use_mutex && buf.len >= HASHLIB_GIL_MINSIZE) { in SHA512Type_update()
412 self->use_mutex = true; in SHA512Type_update()
414 if (self->use_mutex) { in SHA512Type_update()
Dsha3module.c64 bool use_mutex; member
261 if (!self->use_mutex && buf.len >= HASHLIB_GIL_MINSIZE) { in _sha3_sha3_224_update()
262 self->use_mutex = true; in _sha3_sha3_224_update()
264 if (self->use_mutex) { in _sha3_sha3_224_update()
D_hashopenssl.c280 bool use_mutex; member
288 bool use_mutex; member
632 if (!self->use_mutex && view.len >= HASHLIB_GIL_MINSIZE) { in EVP_update()
633 self->use_mutex = true; in EVP_update()
635 if (self->use_mutex) { in EVP_update()
1630 if (!self->use_mutex && view.len >= HASHLIB_GIL_MINSIZE) { in _hmac_update()
1631 self->use_mutex = true; in _hmac_update()
1633 if (self->use_mutex) { in _hmac_update()
/external/sdv/vsomeip/third_party/boost/thread/test/
Dtest_condition_timed_wait_times_out.cpp159 …d_test(&do_test_timed_wait_times_out, timeout_seconds+timeout_grace, execution_monitor::use_mutex); in BOOST_AUTO_TEST_CASE()
160 …_timed_wait_with_predicate_times_out, timeout_seconds+timeout_grace, execution_monitor::use_mutex); in BOOST_AUTO_TEST_CASE()
161 …_timed_wait_with_predicate_times_out, timeout_seconds+timeout_grace, execution_monitor::use_mutex); in BOOST_AUTO_TEST_CASE()
162 …o_test_timed_wait_relative_times_out, timeout_seconds+timeout_grace, execution_monitor::use_mutex); in BOOST_AUTO_TEST_CASE()
163 …&do_test_cv_any_timed_wait_times_out, timeout_seconds+timeout_grace, execution_monitor::use_mutex); in BOOST_AUTO_TEST_CASE()
164 …_timed_wait_with_predicate_times_out, timeout_seconds+timeout_grace, execution_monitor::use_mutex); in BOOST_AUTO_TEST_CASE()
165 …_timed_wait_with_predicate_times_out, timeout_seconds+timeout_grace, execution_monitor::use_mutex); in BOOST_AUTO_TEST_CASE()
166 …cv_any_timed_wait_relative_times_out, timeout_seconds+timeout_grace, execution_monitor::use_mutex); in BOOST_AUTO_TEST_CASE()
Dtest_condition_notify_one.cpp142 …test(&do_test_condition_notify_one_wakes_from_wait, timeout_seconds, execution_monitor::use_mutex); in BOOST_AUTO_TEST_CASE()
143 …ondition_notify_one_wakes_from_wait_with_predicate, timeout_seconds, execution_monitor::use_mutex); in BOOST_AUTO_TEST_CASE()
144 …do_test_condition_notify_one_wakes_from_timed_wait, timeout_seconds, execution_monitor::use_mutex); in BOOST_AUTO_TEST_CASE()
145 …on_notify_one_wakes_from_timed_wait_with_predicate, timeout_seconds, execution_monitor::use_mutex); in BOOST_AUTO_TEST_CASE()
146 …_one_wakes_from_relative_timed_wait_with_predicate, timeout_seconds, execution_monitor::use_mutex); in BOOST_AUTO_TEST_CASE()
147 …t_multiple_notify_one_calls_wakes_multiple_threads, timeout_seconds, execution_monitor::use_mutex); in BOOST_AUTO_TEST_CASE()
Dutil.inl71 enum wait_type { use_sleep_only, use_mutex, use_condition }; enumerator
/external/python/cpython3/Modules/_blake2/
Dblake2s_impl.c46 bool use_mutex; member
285 if (!self->use_mutex && buf.len >= HASHLIB_GIL_MINSIZE) { in _blake2_blake2s_update()
286 self->use_mutex = true; in _blake2_blake2s_update()
288 if (self->use_mutex) { in _blake2_blake2s_update()
Dblake2b_impl.c46 bool use_mutex; member
285 if (!self->use_mutex && buf.len >= HASHLIB_GIL_MINSIZE) { in _blake2_blake2b_update()
286 self->use_mutex = true; in _blake2_blake2b_update()
288 if (self->use_mutex) { in _blake2_blake2b_update()