Searched defs:timer_thread (Results 1 - 5 of 5) sorted by relevance

/external/libnfc-nci/halimpl/bcm2079x/gki/ulinux/
H A Dgki_ulinux.c438 ** Function timer_thread
448 void timer_thread(signed long id) function
538 timer_thread,
541 GKI_TRACE_1("%s: pthread_create failed to create timer_thread!", __func__);
/external/libnfc-nci/src/gki/ulinux/
H A Dgki_ulinux.c438 ** Function timer_thread
448 void timer_thread(signed long id) function
513 timer_thread,
516 GKI_TRACE_0("GKI_run: pthread_create failed to create timer_thread!");
/external/chromium_org/third_party/libusb/src/libusb/os/
H A Dwince_usb.c45 HANDLE timer_thread = NULL; variable
232 timer_thread = CreateThread(NULL, 0, wince_clock_gettime_threaded, NULL, 0, NULL);
233 if (timer_thread == NULL) {
253 if (timer_thread) {
255 if (WAIT_OBJECT_0 != WaitForSingleObject(timer_thread, INFINITE)) {
257 TerminateThread(timer_thread, 1); // shouldn't happen, but we're destroying
260 CloseHandle(timer_thread);
261 timer_thread = NULL;
310 if (timer_thread) {
312 if (WAIT_OBJECT_0 != WaitForSingleObject(timer_thread, INFINIT
[all...]
H A Dwindows_usb.c109 HANDLE timer_thread = NULL; variable
882 timer_thread = (HANDLE)_beginthreadex(NULL, 0, windows_clock_gettime_threaded, NULL, 0, NULL);
883 if (timer_thread == NULL) {
887 SetThreadAffinityMask(timer_thread, 0);
903 if (timer_thread) {
905 if (WAIT_OBJECT_0 != WaitForSingleObject(timer_thread, INFINITE)) {
907 TerminateThread(timer_thread, 1); // shouldn't happen, but we're destroying
910 CloseHandle(timer_thread);
911 timer_thread = NULL;
1709 if (timer_thread) {
[all...]
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_pcb.h311 userland_thread_t timer_thread; member in struct:sctp_base_info

Completed in 70 milliseconds