Home
last modified time | relevance | path

Searched refs:thread (Results 1 – 13 of 13) sorted by relevance

/system/extras/tests/bionic/libc/common/
Dtest_clock.c36 pthread_t thread; in main() local
42 pthread_create(&thread, NULL, cpu_hog, NULL); in main()
/system/core/fastbootd/
Dtransport.c117 pthread_t thread; in transport_connect_thread() local
132 pthread_create(&thread, &attr, transport_data_thread, thandle); in transport_connect_thread()
142 pthread_t thread; in transport_register() local
148 pthread_create(&thread, &attr, transport_connect_thread, transport); in transport_register()
/system/extras/tests/bionic/libc/other/
Dtest_thread_max.c50 pthread_t thread; in main() local
53 if (pthread_create( &thread, &attr, thread_func, (void*)(long)count ) < 0) { in main()
/system/netd/
DDnsProxyListener.cpp76 pthread_t thread; in start() local
77 pthread_create(&thread, NULL, in start()
79 pthread_detach(thread); in start()
316 pthread_t thread; in start() local
317 pthread_create(&thread, NULL, in start()
319 pthread_detach(thread); in start()
451 pthread_t thread; in start() local
452 pthread_create(&thread, NULL, in start()
454 pthread_detach(thread); in start()
/system/core/toolbox/
Dsetconsole.c129 pthread_t thread; in setconsole_main() local
134 pthread_create(&thread, &attr, activate_thread, (void*)fd); in setconsole_main()
/system/core/libutils/
DThreads.cpp155 pthread_t thread; in androidCreateRawThreadEtc() local
156 int result = pthread_create(&thread, &attr, in androidCreateRawThreadEtc()
170 *threadId = (android_thread_id_t)thread; // XXX: this is not portable in androidCreateRawThreadEtc()
176 static pthread_t android_thread_id_t_to_pthread(android_thread_id_t thread) in android_thread_id_t_to_pthread() argument
178 return (pthread_t) thread; in android_thread_id_t_to_pthread()
/system/core/adb/
Dsysdeps.h70 static __inline__ int adb_thread_create( adb_thread_t *thread, adb_thread_func_t func, void* ar… in adb_thread_create() argument
72 thread->tid = _beginthread( (win_thread_func_t)func, 0, arg ); in adb_thread_create()
73 if (thread->tid == (unsigned)-1L) { in adb_thread_create()
Dprotocol.txt197 The core of the bridge program will use three threads. One thread
203 channel between the main select/epoll thread and the remote connection
216 a thread or subprocess to handle the io.
Dsysdeps_win32.c1472 HANDLE thread; member
1574 threads[chunk].thread = (HANDLE)_beginthreadex(NULL, 0, _in_waiter_thread, in _wait_for_all()
1576 if (threads[chunk].thread == NULL) { in _wait_for_all()
1591 WaitForSingleObject(threads[chunk].thread, INFINITE); in _wait_for_all()
1592 CloseHandle(threads[chunk].thread); in _wait_for_all()
DSERVICES.TXT116 jdwp:<pid> -> JDWP thread on VM process <pid>
229 Connects to the JDWP thread running in the VM of process <pid>.
/system/core/libnl_2/
DREADME43 * Not tested for thread safety
47 not tested for thread safety
/system/core/logcat/
Devent.logtags67 20003 dvm_lock_sample (process|3),(main|1|5),(thread|3),(time|1|3),(file|3),(line|1|5),(ownerfile|3…
97 # blocking_package: if this is on a main thread, the package name, otherwise ""
/system/core/sdcard/
Dsdcard.c1727 pthread_t thread; in ignite_fuse() local
1728 int res = pthread_create(&thread, NULL, start_handler, &handlers[i]); in ignite_fuse()