/external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
xmppsocket.cc | 57 rtc::Thread* pth = rtc::Thread::Current(); local 62 pth->socketserver()->CreateAsyncSocket(family, SOCK_STREAM);
|
/external/chromium_org/base/memory/ |
shared_memory_unittest.cc | 285 PlatformThreadHandle pth; local 287 EXPECT_TRUE(PlatformThread::Create(0, thread_delegates[index], &pth)); 288 thread_handles[index] = pth; 314 PlatformThreadHandle pth; local 316 EXPECT_TRUE(PlatformThread::Create(0, thread_delegates[index], &pth)); 317 thread_handles[index] = pth;
|
/external/lldb/tools/darwin-threads/ |
examine-threads.c | 255 get_proc_threadinfo (pid_t pid, uint64_t thread_handle, struct proc_threadinfo *pth) 257 pth->pth_name[0] = '\0'; 259 pth, sizeof (struct proc_threadinfo)); 430 struct proc_threadinfo pth; local 431 int proc_threadinfo_succeeded = get_proc_threadinfo (pid, identifier_info.thread_handle, &pth); 433 if (proc_threadinfo_succeeded && pth.pth_name[0] != '\0') 434 printf (" thread name '%s' ", pth.pth_name); 459 printf (", current pri %d, max pri %d", pth.pth_curpri, pth.pth_maxpriority);
|
/external/chromium_org/base/synchronization/ |
condition_variable_unittest.cc | 512 PlatformThreadHandle pth; local 513 EXPECT_TRUE(PlatformThread::Create(0, this, &pth)); 514 thread_handles_[i] = pth;
|
/external/bluetooth/bluedroid/btif/src/ |
btif_sock_rfc.c | 102 static volatile int pth = -1; //poll thread handle variable 108 #define is_init_done() (pth != -1) 141 pth = poll_thread_handle; 147 int curr_pth = pth; 148 pth = -1; 346 if (btsock_thread_add_fd(pth, rs->fd, BTSOCK_RFCOMM, SOCK_THREAD_FD_EXCEPTION, rs->id)) { 382 btsock_thread_add_fd(pth, rs->fd, BTSOCK_RFCOMM, 413 btsock_thread_add_fd(pth, rs->fd, BTSOCK_RFCOMM, SOCK_THREAD_FD_RD, rs->id); 613 btsock_thread_add_fd(pth, srv_rs->fd, BTSOCK_RFCOMM, SOCK_THREAD_FD_EXCEPTION, srv_rs->id); 614 btsock_thread_add_fd(pth, accept_rs->fd, BTSOCK_RFCOMM, SOCK_THREAD_FD_RD, accept_rs->id) [all...] |
btif_config.c | 91 static int pth = -1; //poll thread handle variable 143 pth = btsock_thread_create(NULL, cfg_cmd_callback); 152 return pth >= 0; 356 btsock_thread_post_cmd(pth, CFG_CMD_SAVE, NULL, 0, 0);
|