HomeSort by relevance Sort by last modified time
    Searched refs:thread_id (Results 276 - 300 of 338) sorted by null

<<11121314

  /external/chromium_org/v8/src/
isolate.h 407 PerIsolateThreadData(Isolate* isolate, ThreadId thread_id)
409 thread_id_(thread_id),
422 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);
525 PerIsolateThreadData* FindPerThreadDataForThread(ThreadId thread_id);
557 THREAD_LOCAL_TOP_ACCESSOR(ThreadId, thread_id)
    [all...]
v8threads.cc 358 void ThreadManager::TerminateExecution(ThreadId thread_id) {
362 if (thread_id.Equals(state->id())) {
  /external/webrtc/src/system_wrappers/source/
data_log.cc 361 unsigned int thread_id = 0; local
362 bool success = file_writer_thread_->Start(thread_id);
  /external/wpa_supplicant_8/src/l2_packet/
l2_packet_winpcap.c 205 DWORD thread_id; local
245 &thread_id);
  /external/ceres-solver/internal/ceres/
schur_eliminator_impl.h 225 int thread_id = omp_get_thread_num(); local
227 int thread_id = 0;
229 double* buffer = buffer_.get() + thread_id * buffer_size_;
512 int thread_id = omp_get_thread_num(); local
514 int thread_id = 0; local
517 chunk_outer_product_buffer_.get() + thread_id * buffer_size_;
  /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/chromium_org/sandbox/win/sandbox_poc/
main_ui_window.cc 536 DWORD thread_id; local
542 &thread_id);
567 &thread_id);
  /external/chromium_org/third_party/libxml/src/
threads.c 111 thread_id tid;
132 thread_id tid;
167 thread_id mainthread = 0;
  /external/libxml2/
threads.c 111 thread_id tid;
132 thread_id tid;
168 thread_id mainthread = 0;
  /external/protobuf/gtest/test/
gtest-port_test.cc 97 pthread_t thread_id; local
106 const int status = pthread_create(&thread_id, &attr, &ThreadFunc, &mutex);
113 ASSERT_EQ(0, pthread_join(thread_id, &dummy));
  /external/bluetooth/bluedroid/test/bluedroidtest/
bluedroidtest.c 383 pthread_t thread_id; local
389 if (pthread_create(&thread_id, NULL,
  /external/chromium_org/sandbox/win/src/
broker_services.cc 329 static DWORD thread_id = ::GetCurrentThreadId(); local
330 DCHECK(thread_id == ::GetCurrentThreadId());
  /external/chromium_org/third_party/webrtc/modules/audio_device/android/
opensles_output.cc 510 unsigned int thread_id = 0; local
511 if (!play_thread_->Start(thread_id)) {
  /external/chromium_org/chrome/browser/media_galleries/linux/
mtp_device_delegate_impl_linux.cc 193 content::BrowserThread::ID thread_id,
197 thread_id(thread_id),
629 content::BrowserThread::PostTask(task_info.thread_id,
    [all...]
  /external/chromium_org/chrome/browser/metrics/
thread_watcher_unittest.cc 73 CustomThreadWatcher(const BrowserThread::ID thread_id,
77 : ThreadWatcher(WatchingParams(thread_id, thread_name, sleep_time,
439 EXPECT_EQ(io_thread_id, io_watcher_->thread_id());
446 EXPECT_EQ(db_thread_id, db_watcher_->thread_id());
  /external/chromium_org/components/metrics/
metrics_service.cc 200 static base::PlatformThreadId thread_id = 0; local
201 if (!thread_id)
202 thread_id = base::PlatformThread::CurrentId();
203 return base::PlatformThread::CurrentId() == thread_id;
    [all...]
  /external/chromium_org/content/renderer/service_worker/
embedded_worker_context_client.cc 336 int thread_id,
  /external/chromium_org/sandbox/linux/services/
credentials.cc 150 base::Bind(&ChrootToThreadFdInfo, chrooter.thread_id(), &is_chrooted));
  /external/chromium_org/ui/gfx/win/
hwnd_util.cc 115 DWORD thread_id = GetWindowThreadProcessId(hwnd, &process_id); local
  /external/lldb/include/lldb/Interpreter/
ScriptInterpreter.h 327 lldb::tid_t thread_id)
ScriptInterpreterPython.h 94 lldb::tid_t thread_id);
  /external/valgrind/main/coregrind/m_gdbserver/
server.h 248 void add_thread (unsigned long thread_id, void *target_data, unsigned int);
  /external/chromium_org/build/android/pylib/
android_commands.py     [all...]
  /external/lldb/source/Plugins/Process/gdb-remote/
GDBRemoteCommunicationClient.cpp 447 uint64_t thread_id = threadIDHexExtractor.GetHexMaxU64(false, 0); local
471 std::map<uint64_t, uint32_t>::iterator iterator = m_thread_id_to_used_usec_map.find(thread_id);
474 prev_used_usec = m_thread_id_to_used_usec_map[thread_id];
481 ((real_used_usec > 0) || (process->HasAssignedIndexIDToThread(thread_id)));
489 int32_t index_id = process->AssignIndexIDToThread(thread_id);
502 new_thread_id_to_used_usec_map[thread_id] = curr_used_usec;
    [all...]
  /art/runtime/
stack.h 403 JavaFrameRootInfo(uint32_t thread_id, const StackVisitor* stack_visitor, size_t vreg)
404 : RootInfo(kRootJavaFrame, thread_id), stack_visitor_(stack_visitor), vreg_(vreg) {

Completed in 1538 milliseconds

<<11121314