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

1 2 3 4 56 7 8 9

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/
gthr-default.h 120 DWORD thread_id = 0; local
124 arg, 0, &thread_id)))
125 thread_id = 0;
127 return (objc_thread_t) (INT_PTR) thread_id;
  /external/ceres-solver/internal/ceres/
coordinate_descent_minimizer.cc 156 int thread_id = omp_get_thread_num(); local
158 int thread_id = 0;
182 linear_solvers[thread_id],
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;
  /external/google-breakpad/src/google_breakpad/processor/
minidump.h 282 virtual bool GetThreadID(uint32_t *thread_id) const;
329 MinidumpThread* GetThreadByID(uint32_t thread_id);
607 bool GetThreadID(uint32_t *thread_id) const;
767 bool GetDumpThreadID(uint32_t *thread_id) const;
768 bool GetRequestingThreadID(uint32_t *thread_id) const;
    [all...]
  /art/runtime/
thread_list.cc 836 uint32_t thread_id) {
837 LOG(severity) << StringPrintf("%s: %d", message, thread_id);
840 Thread* ThreadList::SuspendThreadByThreadId(uint32_t thread_id,
848 CHECK_NE(thread_id, kInvalidThreadId);
    [all...]
monitor.cc 871 uint32_t thread_id = self->GetThreadId(); local
968 uint32_t thread_id = self->GetThreadId(); local
1024 uint32_t thread_id = self->GetThreadId(); local
1059 uint32_t thread_id = self->GetThreadId(); 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_);
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);
2522 JDWP::ObjectId thread_id = request->ReadThreadId(); local
2693 JDWP::ObjectId thread_id = request->ReadThreadId(); local
    [all...]
  /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/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/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);

Completed in 695 milliseconds

1 2 3 4 56 7 8 9