HomeSort by relevance Sort by last modified time
    Searched defs:thread_id (Results 51 - 63 of 63) sorted by null

1 23

  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/libs/x86/include/bits/
gthr-default.h 407 objc_thread_t thread_id; local
414 thread_id = (objc_thread_t) new_thread_handle;
416 thread_id = NULL;
418 return thread_id;
431 pthread_t thread_id = __gthrw_(pthread_self) (); local
436 if (__gthrw_(pthread_getschedparam) (thread_id, &policy, &params) == 0)
455 if (__gthrw_(pthread_setschedparam) (thread_id, policy, &params) == 0)
gthr-posix.h 407 objc_thread_t thread_id; local
414 thread_id = (objc_thread_t) new_thread_handle;
416 thread_id = NULL;
418 return thread_id;
431 pthread_t thread_id = __gthrw_(pthread_self) (); local
436 if (__gthrw_(pthread_getschedparam) (thread_id, &policy, &params) == 0)
455 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/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
407 int thread_id = -1; 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 86 public static final String EXTRA_SMS_THREAD_ID = "android.mms.extra.THREAD_ID";
1621 long thread_id = conv.getThreadId(); local
    [all...]
  /external/valgrind/unittest/
racecheck_unittest.cc 6660 int thread_id; member in namespace:StressTests_ManyAccesses
    [all...]

Completed in 3619 milliseconds

1 23