HomeSort by relevance Sort by last modified time
    Searched defs:thread_id (Results 26 - 50 of 178) sorted by null

12 3 4 5 6 7 8

  /external/chromium/base/threading/
thread.h 126 PlatformThreadId thread_id() const { return thread_id_; } function in class:base::Thread
  /external/chromium/chrome/browser/chromeos/login/
ownership_service.cc 107 BrowserThread::ID thread_id; local
108 if (!BrowserThread::GetCurrentThreadIdentifier(&thread_id))
109 thread_id = BrowserThread::UI;
114 thread_id,
122 BrowserThread::ID thread_id; local
123 if (!BrowserThread::GetCurrentThreadIdentifier(&thread_id))
124 thread_id = BrowserThread::UI;
129 thread_id,
138 BrowserThread::ID thread_id; local
139 if (!BrowserThread::GetCurrentThreadIdentifier(&thread_id))
    [all...]
  /external/chromium/chrome/browser/importer/
external_process_importer_client.cc 44 BrowserThread::ID thread_id; local
45 CHECK(BrowserThread::GetCurrentThreadIdentifier(&thread_id));
51 thread_id));
78 BrowserThread::ID thread_id) {
80 new ProfileImportProcessHost(this, thread_id);
  /external/chromium_org/base/
observer_list_threadsafe.h 115 base::PlatformThreadId thread_id = base::PlatformThread::CurrentId(); local
118 if (observer_lists_.find(thread_id) == observer_lists_.end())
119 observer_lists_[thread_id] = new ObserverListContext(type_);
120 list = &(observer_lists_[thread_id]->list);
133 base::PlatformThreadId thread_id = base::PlatformThread::CurrentId(); local
136 typename ObserversListMap::iterator it = observer_lists_.find(thread_id);
  /external/chromium_org/chrome/browser/automation/
automation_provider_win.cc 137 unsigned long thread_id = 0; local
139 thread_id = GetWindowThreadProcessId(params.window, &process_id);
141 if (thread_id != GetCurrentThreadId()) {
142 DCHECK_EQ(thread_id, GetCurrentThreadId());
  /external/chromium_org/chrome/browser/
chrome_process_finder_win.cc 111 DWORD thread_id = GetWindowThreadProcessId(remote_window, &process_id); local
112 if (!thread_id || !process_id)
process_singleton_win.cc 302 DWORD thread_id = ::GetWindowThreadProcessId(remote_window_, &process_id); local
303 if (!thread_id || !process_id) {
310 ::EnumThreadWindows(thread_id,
  /external/chromium_org/sandbox/win/src/
policy_target_test.cc 111 DWORD thread_id = ::GetCurrentThreadId(); local
112 HANDLE thread = ::OpenThread(SYNCHRONIZE, FALSE, thread_id);
130 DWORD thread_id; local
132 &thread_id);
138 thread = ::OpenThread(SYNCHRONIZE, FALSE, thread_id);
252 EXPECT_NE(::GetThreadDesktop(target.thread_id()),
312 EXPECT_NE(::GetThreadDesktop(target.thread_id()),
process_thread_interception.cc 37 uint32 thread_id = 0; local
55 thread_id = static_cast<uint32>(
74 thread_id, &answer);
409 LPDWORD thread_id) {
415 parameter, creation_flags, thread_id);
433 if (thread_id)
434 *thread_id = HandleToUlong(client_id.UniqueThread);
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_blind.c 125 unsigned long thread_id; /* added in OpenSSL 0.9.6j and 0.9.7b; member in struct:bn_blinding_st
282 return b->thread_id;
287 b->thread_id = n;
  /external/chromium_org/v8/test/cctest/
test-threads.cc 159 i::ThreadId thread_id = i::ThreadId::Current(); local
161 CHECK(!(*refs_)[i].Equals(thread_id));
163 CHECK(thread_id.IsValid());
164 (*refs_)[thread_no_] = thread_id;
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_stoptheworld_test.cc 74 pthread_t thread_id; local
77 pthread_create_result = pthread_create(&thread_id, NULL, IncrementerThread,
86 ASSERT_EQ(0, pthread_join(thread_id, NULL));
  /external/openssl/crypto/bn/
bn_blind.c 125 unsigned long thread_id; /* added in OpenSSL 0.9.6j and 0.9.7b; member in struct:bn_blinding_st
282 return b->thread_id;
287 b->thread_id = n;
  /external/v8/test/cctest/
test-threads.cc 153 i::ThreadId thread_id = i::ThreadId::Current(); local
155 CHECK(!(*refs_)[i].Equals(thread_id));
157 CHECK(thread_id.IsValid());
158 (*refs_)[thread_no_] = thread_id;
  /external/chromium/base/
time_win_unittest.cc 88 unsigned thread_id; local
91 &thread_id));
  /external/chromium/chrome/browser/metrics/
thread_watcher.h 58 // This method starts performing health check on the given thread_id. It will
59 // create ThreadWatcher object for the given thread_id, thread_name,
64 // thread_id.
65 static void StartWatching(const BrowserThread::ID& thread_id,
70 // Return the thread_id of the thread being watched.
71 BrowserThread::ID thread_id() const { return thread_id_; } function in class:ThreadWatcher
92 // Construct a ThreadWatcher for the given thread_id. sleep_time_ is the
95 ThreadWatcher(const BrowserThread::ID& thread_id,
149 static void OnPingMessage(const BrowserThread::ID& thread_id,
156 // The thread_id of the thread being watched. Only one instance can exist fo
    [all...]
  /external/chromium/chrome/browser/
process_singleton_win.cc 104 DWORD thread_id = GetWindowThreadProcessId(remote_window_, &process_id); local
106 if (!thread_id || !process_id) {
141 EnumThreadWindows(thread_id,
  /external/chromium/chrome/browser/web_resource/
web_resource_service.cc 134 BrowserThread::ID thread_id; local
135 CHECK(BrowserThread::GetCurrentThreadIdentifier(&thread_id));
139 thread_id));
182 void StartProcessOnIOThread(BrowserThread::ID thread_id) {
183 UtilityProcessHost* host = new UtilityProcessHost(this, thread_id);
  /external/chromium_org/base/message_loop/
message_pump_glib.cc 175 static PlatformThreadId thread_id = PlatformThread::CurrentId(); local
176 DCHECK(thread_id == PlatformThread::CurrentId()) <<
  /external/chromium_org/base/threading/
thread.h 140 PlatformThreadId thread_id() const { return thread_id_; } function in class:base::Thread
  /external/chromium_org/base/time/
time_win_unittest.cc 88 unsigned thread_id; local
91 &thread_id));
  /external/chromium_org/chrome/browser/importer/
external_process_importer_client.cc 41 BrowserThread::ID thread_id; local
42 CHECK(BrowserThread::GetCurrentThreadIdentifier(&thread_id));
47 thread_id));
281 BrowserThread::ID thread_id) {
283 this, BrowserThread::GetMessageLoopProxyForThread(thread_id).get())
  /external/chromium_org/ui/base/win/
hwnd_util.cc 96 DWORD thread_id = GetWindowThreadProcessId(hwnd, &process_id); local
  /external/bluetooth/bluedroid/hci/src/
btsnoop.c 444 static pthread_t thread_id; variable
589 if (pthread_create(&thread_id, NULL,
615 pthread_kill(thread_id, SIGUSR2);
616 pthread_join(thread_id, NULL);
  /external/ceres-solver/internal/ceres/
program_evaluator.h 173 int thread_id = omp_get_thread_num(); local
175 int thread_id = 0; local
177 EvaluatePreparer* preparer = &evaluate_preparers_[thread_id];
178 EvaluateScratch* scratch = &evaluate_scratch_[thread_id];

Completed in 2384 milliseconds

12 3 4 5 6 7 8