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

1 2 3 4 5 67 8

  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/libs/armeabi/include/bits/
gthr-default.h 379 objc_thread_t thread_id; local
387 thread_id = (objc_thread_t) new_thread_handle;
389 thread_id = NULL;
391 return thread_id;
404 pthread_t thread_id = __gthrw_(pthread_self) (); local
409 if (__gthrw_(pthread_getschedparam) (thread_id, &policy, &params) == 0)
428 if (__gthrw_(pthread_setschedparam) (thread_id, policy, &params) == 0)
gthr-posix.h 379 objc_thread_t thread_id; local
387 thread_id = (objc_thread_t) new_thread_handle;
389 thread_id = NULL;
391 return thread_id;
404 pthread_t thread_id = __gthrw_(pthread_self) (); local
409 if (__gthrw_(pthread_getschedparam) (thread_id, &policy, &params) == 0)
428 if (__gthrw_(pthread_setschedparam) (thread_id, policy, &params) == 0)
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/libs/armeabi-v7a/include/bits/
gthr-default.h 379 objc_thread_t thread_id; local
387 thread_id = (objc_thread_t) new_thread_handle;
389 thread_id = NULL;
391 return thread_id;
404 pthread_t thread_id = __gthrw_(pthread_self) (); local
409 if (__gthrw_(pthread_getschedparam) (thread_id, &policy, &params) == 0)
428 if (__gthrw_(pthread_setschedparam) (thread_id, policy, &params) == 0)
gthr-posix.h 379 objc_thread_t thread_id; local
387 thread_id = (objc_thread_t) new_thread_handle;
389 thread_id = NULL;
391 return thread_id;
404 pthread_t thread_id = __gthrw_(pthread_self) (); local
409 if (__gthrw_(pthread_getschedparam) (thread_id, &policy, &params) == 0)
428 if (__gthrw_(pthread_setschedparam) (thread_id, policy, &params) == 0)
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/libs/mips/include/bits/
gthr-default.h 379 objc_thread_t thread_id; local
387 thread_id = (objc_thread_t) new_thread_handle;
389 thread_id = NULL;
391 return thread_id;
404 pthread_t thread_id = __gthrw_(pthread_self) (); local
409 if (__gthrw_(pthread_getschedparam) (thread_id, &policy, &params) == 0)
428 if (__gthrw_(pthread_setschedparam) (thread_id, policy, &params) == 0)
gthr-posix.h 379 objc_thread_t thread_id; local
387 thread_id = (objc_thread_t) new_thread_handle;
389 thread_id = NULL;
391 return thread_id;
404 pthread_t thread_id = __gthrw_(pthread_self) (); local
409 if (__gthrw_(pthread_getschedparam) (thread_id, &policy, &params) == 0)
428 if (__gthrw_(pthread_setschedparam) (thread_id, policy, &params) == 0)
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/libs/x86/include/bits/
gthr-default.h 379 objc_thread_t thread_id; local
387 thread_id = (objc_thread_t) new_thread_handle;
389 thread_id = NULL;
391 return thread_id;
404 pthread_t thread_id = __gthrw_(pthread_self) (); local
409 if (__gthrw_(pthread_getschedparam) (thread_id, &policy, &params) == 0)
428 if (__gthrw_(pthread_setschedparam) (thread_id, policy, &params) == 0)
gthr-posix.h 379 objc_thread_t thread_id; local
387 thread_id = (objc_thread_t) new_thread_handle;
389 thread_id = NULL;
391 return thread_id;
404 pthread_t thread_id = __gthrw_(pthread_self) (); local
409 if (__gthrw_(pthread_getschedparam) (thread_id, &policy, &params) == 0)
428 if (__gthrw_(pthread_setschedparam) (thread_id, policy, &params) == 0)
  /external/chromium/chrome/browser/metrics/
metrics_service.cc 1765 static base::PlatformThreadId thread_id = 0; local
    [all...]
  /external/chromium_org/base/test/
trace_event_analyzer.h 96 ProcessThreadID() : process_id(0), thread_id(0) {}
97 ProcessThreadID(int process_id, int thread_id)
98 : process_id(process_id), thread_id(thread_id) {}
102 return thread_id < rhs.thread_id;
105 int thread_id; member in struct:trace_analyzer::TraceEvent::ProcessThreadID
222 static Query EventTidIs(int thread_id) {
223 return Query(EVENT_TID) == Query::Int(thread_id);
227 return EventPidIs(thread.process_id) && EventTidIs(thread.thread_id);
    [all...]
  /external/chromium_org/chrome/browser/metrics/
metrics_service.cc 240 static base::PlatformThreadId thread_id = 0; local
241 if (!thread_id)
242 thread_id = base::PlatformThread::CurrentId();
243 return base::PlatformThread::CurrentId() == thread_id;
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/xray/
xray.c 102 int32_t thread_id; member in struct:XRayTraceCapture
379 return capture->thread_id;
752 capture->thread_id = (int32_t)(&g_xray_thread_id_placeholder);
  /external/chromium_org/third_party/leveldatabase/src/util/
env_posix.cc 561 uint64_t thread_id = 0; local
562 memcpy(&thread_id, &tid, std::min(sizeof(thread_id), sizeof(tid)));
563 return thread_id;
  /external/oprofile/libpp/
xml_utils.cpp 453 string const get_tid() { return thread_id; }
459 string thread_id; member in class:thread_info
850 thread_id = tid;
892 out << init_attr(THREAD_ID, thread_id) << close_element(NONE, true);
926 cverb << vxml << "tid=" << thread_id << endl;
  /external/v8/src/
platform-freebsd.cc 662 pthread_t thread_id = pthread_self(); local
663 return thread_id;
isolate.cc 68 int thread_id = Thread::GetThreadLocalInt(Isolate::thread_id_key_); local
69 if (thread_id == 0) {
70 thread_id = AllocateThreadId();
71 Thread::SetThreadLocalInt(Isolate::thread_id_key_, thread_id);
73 return thread_id;
324 ThreadId thread_id) {
325 ASSERT(!thread_id.Equals(ThreadId::Invalid()));
326 PerIsolateThreadData* per_thread = new PerIsolateThreadData(this, thread_id);
329 ASSERT(thread_data_table_->Lookup(this, thread_id) == NULL);
331 ASSERT(thread_data_table_->Lookup(this, thread_id) == per_thread)
339 ThreadId thread_id = ThreadId::Current(); local
353 ThreadId thread_id = ThreadId::Current(); local
    [all...]
isolate.h 370 PerIsolateThreadData(Isolate* isolate, ThreadId thread_id)
372 thread_id_(thread_id),
382 ThreadId thread_id() const { return thread_id_; } function in class:v8::internal::Isolate::PerIsolateThreadData
396 bool Matches(Isolate* isolate, ThreadId thread_id) const {
397 return isolate_ == isolate && thread_id_.Equals(thread_id);
531 ThreadId thread_id() { return thread_local_top_.thread_id_; } function in class:v8::internal::Isolate
    [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
MmsSmsDatabaseHelper.java 58 " AND " + Sms.THREAD_ID + " = threads._id)" +
62 " WHERE threads._id = new." + Sms.THREAD_ID + "; ";
67 " ON threads._id = " + Sms.THREAD_ID +
68 " WHERE " + Sms.THREAD_ID + " = new.thread_id" +
71 " ON threads._id = " + Mms.THREAD_ID +
72 " WHERE " + Mms.THREAD_ID + " = new.thread_id" +
75 " WHERE threads._id = new.thread_id; ";
80 " ON threads._id = " + Sms.THREAD_ID
424 int thread_id = -1; local
    [all...]
  /external/bluetooth/bluedroid/btif/src/
btif_hl.c 5199 pthread_t thread_id = -1; local
    [all...]
  /external/chromium_org/base/debug/
trace_event.h 380 name, id, thread_id, timestamp) \
382 TRACE_EVENT_PHASE_ASYNC_BEGIN, category_group, name, id, thread_id, \
385 category_group, name, id, thread_id, timestamp) \
387 TRACE_EVENT_PHASE_ASYNC_BEGIN, category_group, name, id, thread_id, \
424 name, id, thread_id, timestamp) \
426 TRACE_EVENT_PHASE_ASYNC_END, category_group, name, id, thread_id, \
429 category_group, name, id, thread_id, timestamp) \
431 TRACE_EVENT_PHASE_ASYNC_END, category_group, name, id, thread_id, \
1155 int thread_id = static_cast<int>(base::PlatformThread::CurrentId()); local
1202 int thread_id = static_cast<int>(base::PlatformThread::CurrentId()); local
1251 int thread_id = static_cast<int>(base::PlatformThread::CurrentId()); local
1294 int thread_id = static_cast<int>(base::PlatformThread::CurrentId()); local
1320 int thread_id = static_cast<int>(base::PlatformThread::CurrentId()); local
1354 int thread_id = static_cast<int>(base::PlatformThread::CurrentId()); local
1395 int thread_id = static_cast<int>(base::PlatformThread::CurrentId()); local
    [all...]
  /external/chromium_org/v8/src/
isolate.cc 73 int thread_id = Thread::GetThreadLocalInt(Isolate::thread_id_key_); local
74 if (thread_id == 0) {
75 thread_id = AllocateThreadId();
76 Thread::SetThreadLocalInt(Isolate::thread_id_key_, thread_id);
78 return thread_id;
351 ThreadId thread_id) {
352 ASSERT(!thread_id.Equals(ThreadId::Invalid()));
353 PerIsolateThreadData* per_thread = new PerIsolateThreadData(this, thread_id);
356 ASSERT(thread_data_table_->Lookup(this, thread_id) == NULL);
358 ASSERT(thread_data_table_->Lookup(this, thread_id) == per_thread)
366 ThreadId thread_id = ThreadId::Current(); local
380 ThreadId thread_id = ThreadId::Current(); local
    [all...]
  /external/opencv/cv/src/
mycvHaarDetectObjects.cpp 1221 int thread_id = cvGetThreadNum(); local
    [all...]
cvhaar.cpp 1010 int thread_id = cvGetThreadNum(); local
1189 int thread_id = cvGetThreadNum(); local
    [all...]
  /external/netperf/
netlib.c 919 DWORD thread_id ;
947 &thread_id ) ;
911 DWORD thread_id ; local
    [all...]
  /packages/apps/Mms/src/com/android/mms/data/
WorkingMessage.java 92 public static final String EXTRA_SMS_THREAD_ID = "android.mms.extra.THREAD_ID";
1676 long thread_id = conv.getThreadId(); local
    [all...]

Completed in 1549 milliseconds

1 2 3 4 5 67 8