/aosp_15_r20/art/test/1932-monitor-events-misc/src/art/ |
H A D | Test1932.java | 26 public default void handleMonitorEnter(Thread thd, Object lock) {} in handleMonitorEnter() 27 public default void handleMonitorEntered(Thread thd, Object lock) {} in handleMonitorEntered() 28 public default void handleMonitorWait(Thread thd, Object lock, long timeout) {} in handleMonitorWait() 29 public default void handleMonitorWaited(Thread thd, Object lock, boolean timed_out) {} in handleMonitorWaited() 624 public static void handleMonitorEnter(Thread thd, Object lock) { in handleMonitorEnter() 634 public static void handleMonitorEntered(Thread thd, Object lock) { in handleMonitorEntered() 643 public static void handleMonitorWait(Thread thd, Object lock, long timeout) { in handleMonitorWait() 650 public static void handleMonitorWaited(Thread thd, Object lock, boolean timed_out) { in handleMonitorWaited()
|
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/threadproc/netware/ |
H A D | thread.c | 69 apr_thread_t *thd = (apr_thread_t *)opaque; in dummy_worker() local 157 apr_status_t apr_thread_exit(apr_thread_t *thd, in apr_thread_exit() 167 apr_thread_t *thd) in apr_thread_join() 181 apr_status_t apr_thread_detach(apr_thread_t *thd) in apr_thread_detach() 212 apr_thread_t *thd) in apr_os_thread_get() 221 APR_DECLARE(apr_status_t) apr_os_thread_put(apr_thread_t **thd, in apr_os_thread_put()
|
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/threadproc/win32/ |
H A D | thread.c | 77 apr_thread_t *thd = (apr_thread_t *)opaque; in dummy_worker() local 132 APR_DECLARE(apr_status_t) apr_thread_exit(apr_thread_t *thd, in apr_thread_exit() 147 apr_thread_t *thd) in apr_thread_join() 171 APR_DECLARE(apr_status_t) apr_thread_detach(apr_thread_t *thd) in apr_thread_detach() 231 apr_thread_t *thd) in apr_os_thread_get() 240 APR_DECLARE(apr_status_t) apr_os_thread_put(apr_thread_t **thd, in apr_os_thread_put()
|
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/threadproc/beos/ |
H A D | thread.c | 67 apr_thread_t *thd = (apr_thread_t*)opaque; in dummy_worker() local 122 APR_DECLARE(apr_status_t) apr_thread_exit(apr_thread_t *thd, apr_status_t retval) in apr_thread_exit() 131 APR_DECLARE(apr_status_t) apr_thread_join(apr_status_t *retval, apr_thread_t *thd) in apr_thread_join() 151 APR_DECLARE(apr_status_t) apr_thread_detach(apr_thread_t *thd) in apr_thread_detach() 177 APR_DECLARE(apr_status_t) apr_os_thread_get(apr_os_thread_t **thethd, apr_thread_t *thd) in apr_os_thread_get() 183 APR_DECLARE(apr_status_t) apr_os_thread_put(apr_thread_t **thd, apr_os_thread_t *thethd, in apr_os_thread_put()
|
/aosp_15_r20/art/test/1931-monitor-events/src/art/ |
H A D | Test1931.java | 53 public static void handleMonitorEnter(Thread thd, Object lock) { in handleMonitorEnter() 60 public static void handleMonitorEntered(Thread thd, Object lock) { in handleMonitorEntered() 66 public static void handleMonitorWait(Thread thd, Object lock, long timeout) { in handleMonitorWait() 70 public static void handleMonitorWaited(Thread thd, Object lock, boolean timed_out) { in handleMonitorWaited() 156 Thread thd = new Thread(() -> { in testUnlockedWait() local
|
/aosp_15_r20/external/jemalloc_new/test/src/ |
H A D | thd.c | 5 thd_create(thd_t *thd, void *(*proc)(void *), void *arg) { in thd_create() 14 thd_join(thd_t thd, void **ret) { in thd_join() 24 thd_create(thd_t *thd, void *(*proc)(void *), void *arg) { in thd_create() 31 thd_join(thd_t thd, void **ret) { in thd_join()
|
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/threadproc/os2/ |
H A D | thread.c | 132 APR_DECLARE(apr_status_t) apr_thread_exit(apr_thread_t *thd, apr_status_t retval) in apr_thread_exit() 141 APR_DECLARE(apr_status_t) apr_thread_join(apr_status_t *retval, apr_thread_t *thd) in apr_thread_join() 160 APR_DECLARE(apr_status_t) apr_thread_detach(apr_thread_t *thd) in apr_thread_detach() 175 APR_DECLARE(apr_status_t) apr_os_thread_get(apr_os_thread_t **thethd, apr_thread_t *thd) in apr_os_thread_get() 183 APR_DECLARE(apr_status_t) apr_os_thread_put(apr_thread_t **thd, apr_os_thread_t *thethd, in apr_os_thread_put()
|
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/threadproc/unix/ |
H A D | thread.c | 202 APR_DECLARE(apr_status_t) apr_thread_exit(apr_thread_t *thd, 212 apr_thread_t *thd) 230 APR_DECLARE(apr_status_t) apr_thread_detach(apr_thread_t *thd) 280 apr_thread_t *thd) 286 APR_DECLARE(apr_status_t) apr_os_thread_put(apr_thread_t **thd,
|
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/test/ |
H A D | testlock.c | 59 static void *APR_THREAD_FUNC thread_rwlock_func(apr_thread_t *thd, void *data) in thread_rwlock_func() 84 static void *APR_THREAD_FUNC thread_mutex_function(apr_thread_t *thd, void *data) in thread_mutex_function() 109 static void *APR_THREAD_FUNC thread_cond_producer(apr_thread_t *thd, void *data) in thread_cond_producer() 134 static void *APR_THREAD_FUNC thread_cond_consumer(apr_thread_t *thd, void *data) in thread_cond_consumer()
|
H A D | testlockperf.c | 58 void * APR_THREAD_FUNC thread_mutex_func(apr_thread_t *thd, void *data) in thread_mutex_func() 70 void * APR_THREAD_FUNC thread_rwlock_func(apr_thread_t *thd, void *data) in thread_rwlock_func()
|
H A D | testatomic.c | 247 void *APR_THREAD_FUNC thread_func_mutex(apr_thread_t *thd, void *data) in thread_func_mutex() 260 void *APR_THREAD_FUNC thread_func_atomic(apr_thread_t *thd, void *data) in thread_func_atomic() 424 static void *APR_THREAD_FUNC thread_func_busyloop(apr_thread_t *thd, void *data) in thread_func_busyloop()
|
/aosp_15_r20/external/grpc-grpc/test/core/event_engine/ |
H A D | thread_pool_test.cc | 336 for (auto& thd : threads) thd.join(); in TEST_F() local 370 for (auto& thd : threads) thd.join(); in TEST_F() local 409 for (auto& thd : threads) thd.join(); in TEST_F() local 442 for (auto& thd : threads) thd.join(); in TEST_F() local 464 for (auto& thd : threads) thd.join(); in TEST_F() local
|
/aosp_15_r20/external/jemalloc_new/test/unit/ |
H A D | tsd.c | 73 thd_t thd; in TEST_BEGIN() local 121 thd_t thd; in TEST_BEGIN() local
|
/aosp_15_r20/external/grpc-grpc/test/core/gprpp/ |
H A D | fork_test.cc | 85 for (auto& thd : thds) { in TEST() local 119 grpc_core::Thread thd = in TEST() local
|
/aosp_15_r20/external/grpc-grpc/src/cpp/thread_manager/ |
H A D | thread_manager.cc | 99 void ThreadManager::MarkAsCompleted(WorkerThread* thd) { in MarkAsCompleted() 125 for (auto thd : completed_threads) delete thd; in CleanupCompletedThreads() local
|
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/cpp/thread_manager/ |
D | thread_manager.cc | 100 void ThreadManager::MarkAsCompleted(WorkerThread* thd) { in MarkAsCompleted() 126 for (auto thd : completed_threads) delete thd; in CleanupCompletedThreads() local
|
/aosp_15_r20/external/perfetto/test/stress_test/ |
H A D | stress_test.cc | 257 const auto& thd = it.second; in RunConfig() local 331 ParsedTraceStats::WriterThread& thd = t_it->second; in ParseTracePacket() local
|
/aosp_15_r20/external/grpc-grpc/test/cpp/end2end/ |
H A D | cfstream_test.cc | 370 std::thread thd = std::thread([this, &rpcs_sent]() { in TEST_P() local 418 std::thread thd = std::thread([this, &rpcs_sent]() { in TEST_P() local
|
/aosp_15_r20/external/jemalloc_new/test/integration/ |
H A D | thread_tcache_enabled.c | 72 thd_t thd; in TEST_BEGIN() local
|
H A D | allocated.c | 108 thd_t thd; in TEST_BEGIN() local
|
/aosp_15_r20/external/mesa3d/src/gallium/drivers/panfrost/ |
H A D | pan_csf.c | 1077 struct drm_panthor_tiler_heap_destroy thd = { in GENX() local 1174 struct drm_panthor_tiler_heap_destroy thd = { in GENX() local
|
/aosp_15_r20/external/grpc-grpc/test/cpp/interop/ |
H A D | xds_federation_client.cc | 129 for (auto& thd : threads) { in main() local
|
/aosp_15_r20/system/core/init/libprefetch/prefetch/src/ |
H A D | lib.rs | 70 let thd = thread::spawn(move || { in record() localVariable
|
/aosp_15_r20/external/grpc-grpc/test/core/iomgr/ |
H A D | pollset_windows_starvation_test.cc | 69 grpc_core::Thread thd( in main() local
|
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/core/lib/iomgr/ |
D | executor.h | 39 Thread thd; member
|