HomeSort by relevance Sort by last modified time
    Searched refs:thread_id (Results 126 - 150 of 201) sorted by null

1 2 3 4 56 7 8 9

  /external/valgrind/coregrind/m_gdbserver/
server.c 1202 unsigned long gdb_id, thread_id; local
1373 unsigned long gdb_id, thread_id; local
    [all...]
  /external/ceres-solver/internal/ceres/
covariance_impl.cc 534 int thread_id = omp_get_thread_num(); local
536 int thread_id = 0; local
539 double* solution = workspace.get() + thread_id * num_cols;
723 int thread_id = omp_get_thread_num(); local
725 int thread_id = 0; local
728 double* solution = workspace.get() + thread_id * num_cols;
  /art/runtime/
monitor.cc 860 uint32_t thread_id = self->GetThreadId(); local
950 uint32_t thread_id = self->GetThreadId(); local
1006 uint32_t thread_id = self->GetThreadId(); local
1041 uint32_t thread_id = self->GetThreadId(); local
    [all...]
debugger.cc 380 static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id,
384 mirror::Object* thread_peer = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id, error);
820 JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
857 Thread* thread = DecodeThread(soa, thread_id, &error);
870 JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
875 Thread* thread = DecodeThread(soa, thread_id, &error);
2503 JDWP::ObjectId thread_id = request->ReadThreadId(); local
2674 JDWP::ObjectId thread_id = request->ReadThreadId(); local
    [all...]
gc_root.h 61 explicit RootInfo(RootType type, uint32_t thread_id = 0)
62 : type_(type), thread_id_(thread_id) {
74 os << "Type=" << type_ << " thread_id=" << thread_id_;
thread_list.h 87 Thread* SuspendThreadByThreadId(uint32_t thread_id, bool debug_suspension, bool* timed_out)
93 Thread* FindThreadByThreadId(uint32_t thread_id) REQUIRES(Locks::thread_list_lock_);
  /external/libchrome/base/trace_event/
trace_log.h 227 int thread_id,
241 int thread_id,
305 void SetThreadSortIndex(PlatformThreadId thread_id, int sort_index);
  /system/core/base/
logging.cpp 72 typedef uint32_t thread_id; typedef
74 typedef pid_t thread_id; typedef
77 static thread_id GetThreadId() {
  /external/google-breakpad/src/processor/
synth_minidump.cc 235 uint32_t thread_id, const Memory &stack, const Context &context,
238 D32(thread_id);
299 uint32_t thread_id,
304 D32(thread_id);
minidump.cc 1623 uint32_t thread_id; local
    [all...]
  /prebuilts/gdb/darwin-x86/include/python2.7/
pystate.h 96 long thread_id; /* Thread id where this tstate was created */ member in struct:_ts
  /prebuilts/gdb/linux-x86/include/python2.7/
pystate.h 96 long thread_id; /* Thread id where this tstate was created */ member in struct:_ts
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pystate.h 96 long thread_id; /* Thread id where this tstate was created */ member in struct:_ts
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pystate.h 96 long thread_id; /* Thread id where this tstate was created */ member in struct:_ts
  /external/v8/src/
isolate.cc 55 int thread_id = base::Thread::GetThreadLocalInt(Isolate::thread_id_key_); local
56 if (thread_id == 0) {
57 thread_id = AllocateThreadId();
58 base::Thread::SetThreadLocalInt(Isolate::thread_id_key_, thread_id);
60 return thread_id;
123 ThreadId thread_id = ThreadId::Current(); local
127 per_thread = thread_data_table_->Lookup(this, thread_id);
129 per_thread = new PerIsolateThreadData(this, thread_id);
132 DCHECK(thread_data_table_->Lookup(this, thread_id) == per_thread);
141 ThreadId thread_id = ThreadId(thread_id_int) local
155 ThreadId thread_id = ThreadId::Current(); local
    [all...]
isolate.h 413 PerIsolateThreadData(Isolate* isolate, ThreadId thread_id)
415 thread_id_(thread_id),
425 ThreadId thread_id() const { return thread_id_; } function in class:v8::internal::Isolate::PerIsolateThreadData
434 bool Matches(Isolate* isolate, ThreadId thread_id) const {
435 return isolate_ == isolate && thread_id_.Equals(thread_id);
519 PerIsolateThreadData* FindPerThreadDataForThread(ThreadId thread_id);
552 THREAD_LOCAL_TOP_ACCESSOR(ThreadId, thread_id)
    [all...]
  /external/compiler-rt/lib/asan/
asan_interface_internal.h 124 u32 *thread_id);
128 u32 *thread_id);
  /external/google-breakpad/src/common/linux/tests/
crash_generator.cc 83 volatile pid_t thread_id = gettid(); local
84 *(thread_data->thread_id_ptr) = thread_id;
  /external/vulkan-validation-layers/tests/gtest-1.7.0/src/
gtest-port.cc 289 DWORD thread_id; local
297 &thread_id); // Need a valid pointer for the call to work under Win98.
413 static void OnThreadExit(DWORD thread_id) {
414 GTEST_CHECK_(thread_id != 0) << ::GetLastError();
423 thread_to_thread_locals->find(thread_id);
451 static void StartWatcherThreadFor(DWORD thread_id) {
456 thread_id);
465 reinterpret_cast<LPVOID>(new ThreadIdAndHandle(thread_id, thread)),
    [all...]
  /external/mesa3d/src/glx/apple/
apple_glx_context.c 151 ac->thread_id = pthread_self();
441 ac->thread_id = pthread_self();
538 if (caller == ac->thread_id) {
  /system/bt/btif/co/
bta_hh_co.c 178 pthread_t thread_id = -1; local
179 if ( pthread_create(&thread_id, &thread_attr, start_routine, arg)!=0 )
185 return thread_id;
  /bionic/tests/
time_test.cpp 464 pthread_t thread_id; member in struct:TimerDeleteData
471 tdd->thread_id = pthread_self();
503 while (pthread_detach(tdd.thread_id) != ESRCH && (time(NULL) - cur_time) < 5);
504 ASSERT_EQ(ESRCH, pthread_detach(tdd.thread_id));
  /external/google-breakpad/src/client/mac/handler/
minidump_generator.h 122 virtual bool WriteThreadStream(mach_port_t thread_id, MDRawThread *thread);
  /hardware/bsp/intel/peripheral/libmraa/src/iio/
iio.c 345 if (dev->thread_id != 0) {
356 pthread_create(&dev->thread_id, NULL, mraa_iio_trigger_handler, (void*) dev);
498 if (dev->thread_id != 0) {
516 pthread_create(&dev->thread_id, NULL, mraa_iio_event_handler, (void*) dev);
  /external/libmicrohttpd/src/platform/
w32functions.c 673 * @param thread_id ID of thread, -1 for current thread
676 void W32_SetThreadName(const DWORD thread_id, const char *thread_name)
694 thread_info.ID = thread_id;

Completed in 1573 milliseconds

1 2 3 4 56 7 8 9