HomeSort by relevance Sort by last modified time
    Searched defs:thread_id (Results 1 - 25 of 212) sorted by null

1 2 3 4 5 6 7 8 9

  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_stoptheworld_testlib.cc 48 pthread_t thread_id; local
49 pthread_create(&thread_id, NULL, SuspenderThread, NULL);
  /external/compiler-rt/test/lsan/TestCases/
cleanup_in_tsd_destructor.cc 37 pthread_t thread_id; local
38 res = pthread_create(&thread_id, 0, thread_func, 0);
40 res = pthread_join(thread_id, 0);
use_registers.cc 41 pthread_t thread_id; local
42 int res = pthread_create(&thread_id, 0, registers_thread_func, &sync);
use_stacks_threaded.cc 26 pthread_t thread_id; local
27 int res = pthread_create(&thread_id, 0, stacks_thread_func, &sync);
disabler_in_tsd_destructor.cc 32 pthread_t thread_id; local
33 res = pthread_create(&thread_id, 0, thread_func, 0);
35 res = pthread_join(thread_id, 0);
  /external/valgrind/main/helgrind/tests/
tc03_re_excl.c 25 pthread_t thread_id; local
30 pthread_create(&thread_id, 0, worker_thread, (void*)x);
36 pthread_join(thread_id, 0);
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/unit/
pipe_barrier_test.c 52 int thread_id = *((int *) thread_data); local
54 printf("thread %d starting\n", thread_id);
55 os_time_sleep(thread_id * 1000 * 1000);
56 printf("thread %d before barrier\n", thread_id);
58 printf("thread %d exiting\n", thread_id);
  /external/mesa3d/src/gallium/tests/unit/
pipe_barrier_test.c 52 int thread_id = *((int *) thread_data); local
54 printf("thread %d starting\n", thread_id);
55 os_time_sleep(thread_id * 1000 * 1000);
56 printf("thread %d before barrier\n", thread_id);
58 printf("thread %d exiting\n", thread_id);
  /external/chromium_org/base/threading/
platform_thread_unittest.cc 71 PlatformThreadId thread_id() const { return thread_id_; } function in class:base::FunctionTestThread
89 EXPECT_NE(thread.thread_id(), main_thread_id);
109 EXPECT_NE(thread[n].thread_id(), main_thread_id);
113 EXPECT_NE(thread[i].thread_id(), thread[n].thread_id());
  /external/chromium_org/base/win/
scoped_process_information.h 48 // instance. Note that the related thread_id will also be cleared.
67 DWORD thread_id() const { function in class:base::win::ScopedProcessInformation
  /external/chromium_org/chrome/browser/web_resource/
json_asynchronous_unpacker.cc 35 BrowserThread::ID thread_id; variable
36 CHECK(BrowserThread::GetCurrentThreadIdentifier(&thread_id));
41 this, thread_id, json_data));
88 void StartProcessOnIOThread(BrowserThread::ID thread_id,
91 this, BrowserThread::GetMessageLoopProxyForThread(thread_id).get());
  /external/chromium_org/content/child/
quota_message_filter.cc 24 int QuotaMessageFilter::GenerateRequestID(int thread_id) {
26 request_id_map_[next_request_id_] = thread_id;
30 void QuotaMessageFilter::ClearThreadRequests(int thread_id) {
34 if (iter->second == thread_id)
46 int request_id = -1, thread_id = 0; local
54 thread_id = found->second;
59 if (!thread_id)
61 return new WorkerThreadTaskRunner(thread_id);
  /external/chromium_org/remoting/tools/
breakpad_tester_win.cc 72 DWORD thread_id; local
75 &thread_id));
  /external/chromium_org/sandbox/linux/services/
thread_helpers.cc 60 const base::PlatformThreadId thread_id = thread->thread_id(); local
61 const std::string thread_id_dir_str = base::IntToString(thread_id) + "/";
  /external/chromium_org/third_party/leveldatabase/
chromium_logger.h 26 const base::PlatformThreadId thread_id = local
57 static_cast<uint64>(thread_id));
  /external/chromium_org/third_party/webrtc/test/
direct_transport.cc 27 unsigned int thread_id; local
28 EXPECT_TRUE(thread_->Start(thread_id));
39 unsigned int thread_id; local
40 EXPECT_TRUE(thread_->Start(thread_id));
frame_generator_capturer.cc 98 unsigned int thread_id; local
99 if (!thread_->Start(thread_id)) {
  /external/protobuf/gtest/test/
gtest-port_test.cc 97 pthread_t thread_id; local
106 const int status = pthread_create(&thread_id, &attr, &ThreadFunc, &mutex);
113 ASSERT_EQ(0, pthread_join(thread_id, &dummy));
  /hardware/qcom/gps/loc_api/libloc_api_50001/
loc_eng_dmn_conn_thread_helper.h 43 pthread_t thread_id; member in struct:loc_eng_dmn_conn_thelper
  /hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
loc_eng_dmn_conn_thread_helper.h 43 pthread_t thread_id; member in struct:loc_eng_dmn_conn_thelper
  /external/bluetooth/bluedroid/gki/ulinux/
gki_int.h 59 pthread_t thread_id[GKI_MAX_TASKS]; member in struct:__anon5755
  /external/chromium_org/content/browser/service_worker/
service_worker_handle.h 36 // |sender| and |thread_id| will be used to send messages to the
37 // corresponding WebServiceWorkerImpl (which should live on |thread_id|
42 int thread_id,
48 int thread_id,
72 int thread_id() const { return thread_id_; } function in class:content::ServiceWorkerHandle
service_worker_info.h 24 int thread_id,
34 int thread_id; member in class:content::ServiceWorkerVersionInfo
  /external/chromium_org/extensions/browser/api/bluetooth_socket/
bluetooth_socket_event_dispatcher.h 69 content::BrowserThread::ID thread_id; member in struct:extensions::core_api::BluetoothSocketEventDispatcher::SocketParams
  /external/chromium_org/extensions/browser/api/serial/
serial_event_dispatcher.h 52 content::BrowserThread::ID thread_id; member in struct:extensions::core_api::SerialEventDispatcher::ReceiveParams

Completed in 862 milliseconds

1 2 3 4 5 6 7 8 9