Searched defs:thread_id (Results 1 - 25 of 147) sorted by relevance

123456

/external/chromium_org/components/browser_context_keyed_service/
H A Drefcounted_browser_context_keyed_service.cc28 const content::BrowserThread::ID thread_id)
30 thread_id_(thread_id) {
27 RefcountedBrowserContextKeyedService( const content::BrowserThread::ID thread_id) argument
/external/compiler-rt/lib/lsan/lit_tests/TestCases/
H A Duse_registers.cc41 pthread_t thread_id; local
42 int res = pthread_create(&thread_id, 0, registers_thread_func, &sync);
H A Duse_stacks_threaded.cc26 pthread_t thread_id; local
27 int res = pthread_create(&thread_id, 0, stacks_thread_func, &sync);
H A Ddisabler_in_tsd_destructor.cc32 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/
H A Dtc03_re_excl.c25 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/
H A Dpipe_barrier_test.c52 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/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_stoptheworld_testlib.cc48 pthread_t thread_id; local
49 pthread_create(&thread_id, NULL, SuspenderThread, NULL);
/external/mesa3d/src/gallium/tests/unit/
H A Dpipe_barrier_test.c52 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/base/threading/
H A Dplatform_thread_unittest.cc67 PlatformThreadId thread_id() const { return thread_id_; } function in class:base::FunctionTestThread
85 EXPECT_NE(thread.thread_id(), main_thread_id);
102 EXPECT_NE(thread[n].thread_id(), main_thread_id);
/external/chromium_org/base/threading/
H A Dplatform_thread_unittest.cc71 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/
H A Dscoped_process_information.h48 // instance. Note that the related thread_id will also be cleared.
67 DWORD thread_id() const { function in class:base::win::ScopedProcessInformation
H A Dscoped_handle.cc20 DWORD thread_id; member in struct:__anon4093::Info
36 DWORD thread_id = GetCurrentThreadId(); local
40 Info handle_info = { owner, pc1, pc2, thread_id };
/external/chromium_org/content/child/
H A Dquota_message_filter.cc24 int QuotaMessageFilter::GenerateRequestID(int thread_id) { argument
26 request_id_map_[next_request_id_] = thread_id;
30 void QuotaMessageFilter::ClearThreadRequests(int thread_id) { argument
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/sandbox/linux/services/
H A Dthread_helpers.cc42 const base::PlatformThreadId thread_id = thread->thread_id(); local
43 const std::string thread_id_dir_str = base::IntToString(thread_id) + "/";
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stoptheworld.h37 bool Contains(SuspendedThreadID thread_id) const {
39 if (thread_ids_[i] == thread_id)
44 void Append(SuspendedThreadID thread_id) { argument
45 thread_ids_.push_back(thread_id);
/external/chromium/chrome/browser/chromeos/login/
H A Downer_manager.cc29 void OwnerManager::UpdateOwnerKey(const BrowserThread::ID thread_id, argument
37 thread_id, FROM_HERE,
81 void OwnerManager::Sign(const BrowserThread::ID thread_id, argument
90 thread_id, FROM_HERE,
106 thread_id, FROM_HERE,
113 void OwnerManager::Verify(const BrowserThread::ID thread_id, argument
122 thread_id, FROM_HERE,
136 thread_id, FROM_HERE,
/external/chromium_org/chrome/browser/extensions/api/serial/
H A Dserial_event_dispatcher.h47 content::BrowserThread::ID thread_id; member in struct:extensions::api::SerialEventDispatcher::ReceiveParams
/external/chromium_org/chrome/browser/extensions/api/sockets_tcp/
H A Dtcp_socket_event_dispatcher.h56 content::BrowserThread::ID thread_id; member in struct:extensions::api::TCPSocketEventDispatcher::ReadParams
/external/chromium_org/chrome/browser/extensions/api/sockets_tcp_server/
H A Dtcp_server_socket_event_dispatcher.h61 content::BrowserThread::ID thread_id; member in struct:extensions::api::TCPServerSocketEventDispatcher::AcceptParams
80 // Post an extension event from |thread_id| to UI thread
/external/chromium_org/chrome/browser/extensions/api/sockets_udp/
H A Dudp_socket_event_dispatcher.h56 content::BrowserThread::ID thread_id; member in struct:extensions::api::UDPSocketEventDispatcher::ReceiveParams
/external/chromium_org/chrome/browser/web_resource/
H A Djson_asynchronous_unpacker.cc35 BrowserThread::ID thread_id; variable
36 CHECK(BrowserThread::GetCurrentThreadIdentifier(&thread_id));
41 this, thread_id, json_data));
88 void StartProcessOnIOThread(BrowserThread::ID thread_id, argument
91 this, BrowserThread::GetMessageLoopProxyForThread(thread_id).get());
/external/chromium_org/chrome_frame/
H A Dbho_loader.cc42 DWORD thread_id = GetWindowThreadProcessId(window, NULL); local
43 _ASSERTE(thread_id == GetCurrentThreadId());
/external/chromium_org/content/browser/service_worker/
H A Dembedded_worker_instance.cc70 void EmbeddedWorkerInstance::OnStarted(int thread_id) { argument
73 thread_id_ = thread_id;
H A Dembedded_worker_instance.h58 int thread_id() const { return thread_id_; } function in class:content::EmbeddedWorkerInstance
72 // its WorkerGlobalScope is actually started on |thread_id| in the
75 void OnStarted(int thread_id);
H A Dembedded_worker_instance_unittest.cc75 const int thread_id = 33; local
92 worker->OnStarted(thread_id);
95 EXPECT_EQ(thread_id, worker->thread_id());

Completed in 841 milliseconds

123456