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

1 2 3 4

  /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/qemu/distrib/sdl-1.2.12/src/thread/beos/
SDL_systhread_c.h 27 typedef thread_id SYS_ThreadHandle;
  /external/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/valgrind/tsan/
ts_race_verifier.h 43 bool RaceVerifierStartAccess(int thread_id, uintptr_t addr, uintptr_t pc,
45 void RaceVerifierEndAccess(int thread_id, uintptr_t addr, uintptr_t pc,
ts_race_verifier.cc 60 int thread_id; member in struct:CallSite
218 * @param thread_id Thread id.
226 bool RaceVerifierStartAccess(int thread_id, uintptr_t addr, uintptr_t pc,
229 callSite.thread_id = thread_id;
234 Printf("[%d] pc %p %s addr %p start\n", thread_id, pc,
250 if (writes[i].thread_id != writes[j].thread_id)
253 if (writes[i].thread_id != reads[j].thread_id)
    [all...]
  /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...]
owner_manager.cc 29 void OwnerManager::UpdateOwnerKey(const BrowserThread::ID thread_id,
37 thread_id, FROM_HERE,
81 void OwnerManager::Sign(const BrowserThread::ID thread_id,
90 thread_id, FROM_HERE,
106 thread_id, FROM_HERE,
113 void OwnerManager::Verify(const BrowserThread::ID thread_id,
122 thread_id, FROM_HERE,
136 thread_id, FROM_HERE,
owner_manager.h 55 void UpdateOwnerKey(const BrowserThread::ID thread_id,
70 // On success, calls d->OnKeyOpComplete() on |thread_id| with a
72 // On failure, calls d->OnKeyOpComplete() on |thread_id| with an appropriate
74 void Sign(const BrowserThread::ID thread_id,
82 // On success, calls d->OnKeyOpComplete() on |thread_id| with a
84 // On failure, calls d->OnKeyOpComplete() on |thread_id| with an appropriate
86 void Verify(const BrowserThread::ID thread_id,
ownership_service.h 121 const BrowserThread::ID thread_id,
126 const BrowserThread::ID thread_id,
130 const BrowserThread::ID thread_id,
  /bionic/libc/bionic/
pthread-rwlocks.c 167 static __inline__ int read_precondition(pthread_rwlock_t *rwlock, int thread_id)
177 if (rwlock->writerThreadId == 0 || rwlock->writerThreadId == thread_id)
185 static __inline__ int write_precondition(pthread_rwlock_t *rwlock, int thread_id)
192 if (rwlock->writerThreadId == thread_id)
234 int thread_id, ret = 0; local
240 thread_id = __get_thread_id();
241 if (__unlikely(!read_precondition(rwlock, thread_id))) {
245 } while (ret == 0 && !read_precondition(rwlock, thread_id));
264 int thread_id, ret = 0; local
270 thread_id = __get_thread_id()
283 int thread_id, ret = 0; local
    [all...]
ptrace.c 66 void ATTRIBUTES _thread_created_hook(pid_t 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...]
thread_watcher.cc 19 ThreadWatcher::ThreadWatcher(const BrowserThread::ID& thread_id,
23 : thread_id_(thread_id),
39 void ThreadWatcher::StartWatching(const BrowserThread::ID& thread_id,
53 thread_id, thread_name, sleep_time, unresponsive_time));
61 new ThreadWatcher(thread_id, thread_name, sleep_time, unresponsive_time);
65 if (!ThreadWatcherList::IsRegistered(thread_id))
115 thread_id(),
181 void ThreadWatcher::OnPingMessage(const BrowserThread::ID& thread_id,
184 DCHECK(BrowserThread::CurrentlyOn(thread_id));
215 DCHECK(!global_->PreLockedFind(watcher->thread_id()));
    [all...]
  /external/bluetooth/glib/tests/
slice-concurrent.c 30 int thread_id; member in struct:ThreadData
45 // g_print ("Thread %d starting\n", td->thread_id);
49 g_print ("%c", 'a' - 1 + td->thread_id);
98 tdata[t].thread_id = t + 1;
117 tdata[t].thread_id, tdata[t].n_freed, tdata[t].n_to_free);
threadpool-test.c 217 guint thread_id; local
222 thread_id = GPOINTER_TO_UINT (data);
227 thread_id, last_thread_id));
232 if (last_thread_id > thread_id) {
234 g_assert (last_thread_id <= thread_id);
247 last_thread_id = thread_id;
313 guint thread_id; local
315 thread_id = GPOINTER_TO_UINT (data);
317 DEBUG_MSG (("[idle] ---> entered thread:%2.2d", thread_id));
321 DEBUG_MSG (("[idle] <--- exiting thread:%2.2d", thread_id));
    [all...]
  /external/chromium/chrome/browser/importer/
profile_import_process_host.h 35 // |thread_id| gives the thread where the client lives. The
38 BrowserThread::ID thread_id);
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);
profile_import_process_host.cc 21 BrowserThread::ID thread_id)
24 thread_id_(thread_id) {
  /external/chromium/chrome/browser/prefs/
pref_member.h 52 void MoveToThread(BrowserThread::ID thread_id);
92 void MoveToThread(BrowserThread::ID thread_id);
158 void MoveToThread(BrowserThread::ID thread_id) {
159 subtle::PrefMemberBase::MoveToThread(thread_id);
pref_member.cc 46 void PrefMemberBase::MoveToThread(BrowserThread::ID thread_id) {
51 internal()->MoveToThread(thread_id);
106 void PrefMemberBase::Internal::MoveToThread(BrowserThread::ID thread_id) {
108 thread_id_ = thread_id;
  /external/chromium/base/threading/
platform_thread_unittest.cc 67 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/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/valgrind/main/coregrind/m_gdbserver/
inferiors.c 98 void add_thread (unsigned long thread_id, void *target_data, unsigned int gdb_id)
105 new_thread->entry.id = thread_id;
117 unsigned int thread_id_to_gdb_id (unsigned long thread_id)
123 if (inf->id == 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);

Completed in 510 milliseconds

1 2 3 4