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

1 2 3 4 5 6 7 8 9

  /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/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);
quota_message_filter.h 26 // Generates a new request_id, registers { request_id, thread_id } map to
29 int GenerateRequestID(int thread_id);
31 // Clears all requests from the thread_id.
32 void ClearThreadRequests(int thread_id);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
stack_utils.py 35 def log_thread_state(logger, name, thread_id, msg=''):
37 stack = _find_thread_stack(thread_id)
40 logger("%s (tid %d) %s" % (name, thread_id, msg))
45 def _find_thread_stack(thread_id):
49 if tid == thread_id:
stack_utils_unittest.py 37 thread_id, _ = sys._current_frames().items()[0]
38 return thread_id
43 thread_id = current_thread_id()
44 found_stack = stack_utils._find_thread_stack(thread_id)
57 thread_id = current_thread_id()
58 stack_utils.log_thread_state(logger, "test-thread", thread_id,
  /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);
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);
use_stacks_threaded.cc 26 pthread_t thread_id; local
27 int res = pthread_create(&thread_id, 0, stacks_thread_func, &sync);
use_registers.cc 41 pthread_t thread_id; local
42 int res = pthread_create(&thread_id, 0, registers_thread_func, &sync);
  /external/chromium_org/content/browser/service_worker/
service_worker_info.cc 18 thread_id(-1),
28 int thread_id,
36 thread_id(thread_id),
service_worker_dispatcher_host.h 75 void OnRegisterServiceWorker(int thread_id,
80 void OnUnregisterServiceWorker(int thread_id,
84 void OnGetRegistration(int thread_id,
92 void OnWorkerScriptLoaded(int embedded_worker_id, int thread_id);
128 void RegistrationComplete(int thread_id,
135 void UnregistrationComplete(int thread_id,
140 int thread_id,
146 void SendRegistrationError(int thread_id,
150 void SendUnregistrationError(int thread_id,
154 void SendGetRegistrationError(int thread_id,
    [all...]
service_worker_context_observer.h 48 int thread_id) {}
51 int thread_id) {}
55 int thread_id,
59 int thread_id,
service_worker_info.h 24 int thread_id,
34 int thread_id; member in class:content::ServiceWorkerVersionInfo
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
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stoptheworld.h 37 bool Contains(SuspendedThreadID thread_id) const {
39 if (thread_ids_[i] == thread_id)
44 void Append(SuspendedThreadID thread_id) {
45 thread_ids_.push_back(thread_id);
  /external/chromium_org/components/keyed_service/content/
refcounted_browser_context_keyed_service.cc 27 const content::BrowserThread::ID thread_id)
28 : requires_destruction_on_thread_(true), thread_id_(thread_id) {}
refcounted_browser_context_keyed_service.h 57 const content::BrowserThread::ID thread_id);
  /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/chromium_org/content/child/service_worker/
service_worker_dispatcher.h 152 void OnAssociateRegistration(int thread_id,
156 void OnDisassociateRegistration(int thread_id,
158 void OnRegistered(int thread_id,
162 void OnUnregistered(int thread_id,
165 void OnDidGetRegistration(int thread_id,
169 void OnRegistrationError(int thread_id,
173 void OnUnregistrationError(int thread_id,
178 int thread_id,
182 void OnServiceWorkerStateChanged(int thread_id,
185 void OnSetVersionAttributes(int thread_id,
    [all...]
service_worker_message_filter.h 39 int thread_id,
44 int thread_id,
50 int thread_id,
  /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/base/threading/
thread_id_name_manager_unittest.cc 27 EXPECT_STREQ(kAThread, manager->GetName(thread_a.thread_id()));
28 EXPECT_STREQ(kBThread, manager->GetName(thread_b.thread_id()));
44 EXPECT_STREQ(kAThread, manager->GetName(thread_a.thread_id()));
47 EXPECT_STREQ("", manager->GetName(thread_a.thread_id()));
55 base::PlatformThreadId a_id = thread_a.thread_id();
61 EXPECT_STREQ(kAThread, manager->GetName(thread_a.thread_id()));
  /external/chromium_org/sandbox/win/tests/validation_tests/
commands.h 20 // Tries to open thread_id. Returns a SboxTestResult.
21 int TestOpenThread(DWORD 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));

Completed in 1284 milliseconds

1 2 3 4 5 6 7 8 9