HomeSort by relevance Sort by last modified time
    Searched refs:thread_ (Results 1 - 21 of 21) sorted by null

  /dalvik/vm/alloc/
GC.h 146 #define HPROF_SET_GC_SCAN_STATE(tag_, thread_) \
147 dvmHeapSetHprofGcScanState((tag_), (thread_))
151 #define HPROF_SET_GC_SCAN_STATE(tag_, thread_) do {} while (false)
  /external/chromium/net/proxy/
single_threaded_proxy_resolver.h 57 base::Thread* thread() { return thread_.get(); }
83 // Note that declaration ordering is important here. |thread_| needs to be
85 // executing on |thread_|.
86 scoped_ptr<base::Thread> thread_; member in class:net::SingleThreadedProxyResolver
single_threaded_proxy_resolver.cc 226 // Note that |thread_| is destroyed before |resolver_|. This is important
227 // since |resolver_| could be running on |thread_|.
282 if (thread_.get()) {
284 thread_->message_loop()->PostTask(FROM_HERE,
304 if (!thread_.get()) {
305 thread_.reset(new base::Thread("pac-thread"));
306 thread_->Start();
  /external/chromium/net/base/
directory_lister.cc 63 thread_(kNullThreadHandle) {
68 if (thread_) {
69 PlatformThread::Join(thread_);
82 if (!PlatformThread::Create(0, this, &thread_)) {
93 if (thread_) {
94 PlatformThread::Join(thread_);
95 thread_ = kNullThreadHandle;
directory_lister.h 71 PlatformThreadHandle thread_; member in class:net::DirectoryLister
listen_socket_unittest.h 78 : thread_(NULL),
115 scoped_ptr<base::Thread> thread_; member in class:ListenSocketTester
listen_socket_unittest.cc 43 thread_.reset(new base::Thread("socketio_test"));
44 thread_->StartWithOptions(options);
45 loop_ = reinterpret_cast<MessageLoopForIO*>(thread_->message_loop());
99 thread_.reset();
  /external/protobuf/src/google/protobuf/stubs/
once_unittest.cc 78 thread_ = CreateThread(NULL, 0, &Start, this, 0, NULL);
80 pthread_create(&thread_, NULL, &Start, this);
94 WaitForSingleObject(thread_, INFINITE);
95 CloseHandle(thread_);
97 pthread_join(thread_, NULL);
103 HANDLE thread_; member in class:google::protobuf::__anon5630::OnceInitTest::TestThread
105 pthread_t thread_; member in class:google::protobuf::__anon5630::OnceInitTest::TestThread
  /external/chromium/base/
simple_thread.h 78 thread_(), event_(true, false), tid_(0), joined_(false) { }
81 thread_(), event_(true, false), tid_(0), joined_(false) { }
113 PlatformThreadHandle thread_; // PlatformThread handle, invalid after Join! member in class:base::SimpleThread
thread.cc 41 thread_(0),
86 if (!PlatformThread::Create(options.stack_size, this, &thread_)) {
110 PlatformThread::Join(thread_);
thread.h 104 PlatformThreadHandle thread_handle() { return thread_; }
147 PlatformThreadHandle thread_; member in class:base::Thread
simple_thread.cc 16 bool success = PlatformThread::Create(options_.stack_size(), this, &thread_);
24 PlatformThread::Join(thread_);
directory_watcher_inotify.cc 70 base::Thread thread_; member in class:__anon2139::InotifyReader
259 : thread_("inotify_reader"),
264 if (inotify_fd_ >= 0 && pipe(shutdown_pipe_) == 0 && thread_.Start()) {
265 thread_.message_loop()->PostTask(
278 thread_.Stop();
  /external/v8/src/
platform-macos.cc 372 case ThreadHandle::SELF: thread_ = pthread_self(); break;
373 case ThreadHandle::INVALID: thread_ = kNoThread; break;
376 pthread_t thread_; // Thread handle for pthread. member in class:v8::internal::ThreadHandle::PlatformData
397 return pthread_equal(data_->thread_, pthread_self());
402 return data_->thread_ != kNoThread;
419 thread->thread_handle_data()->thread_ = pthread_self();
427 pthread_create(&thread_handle_data()->thread_, NULL, ThreadEntry, this);
432 pthread_join(thread_handle_data()->thread_, NULL);
platform-openbsd.cc 344 case ThreadHandle::SELF: thread_ = pthread_self(); break;
345 case ThreadHandle::INVALID: thread_ = kNoThread; break;
348 pthread_t thread_; // Thread handle for pthread. member in class:v8::internal::ThreadHandle::PlatformData
368 return pthread_equal(data_->thread_, pthread_self());
373 return data_->thread_ != kNoThread;
390 thread->thread_handle_data()->thread_ = pthread_self();
398 pthread_create(&thread_handle_data()->thread_, NULL, ThreadEntry, this);
404 pthread_join(thread_handle_data()->thread_, NULL);
platform-solaris.cc 318 case ThreadHandle::SELF: thread_ = pthread_self(); break;
319 case ThreadHandle::INVALID: thread_ = kNoThread; break;
323 pthread_t thread_; // Thread handle for pthread. member in class:v8::internal::ThreadHandle::PlatformData
343 return pthread_equal(data_->thread_, pthread_self());
348 return data_->thread_ != kNoThread;
365 thread->thread_handle_data()->thread_ = pthread_self();
373 pthread_create(&thread_handle_data()->thread_, NULL, ThreadEntry, this);
379 pthread_join(thread_handle_data()->thread_, NULL);
platform-freebsd.cc 371 case ThreadHandle::SELF: thread_ = pthread_self(); break;
372 case ThreadHandle::INVALID: thread_ = kNoThread; break;
375 pthread_t thread_; // Thread handle for pthread. member in class:v8::internal::ThreadHandle::PlatformData
395 return pthread_equal(data_->thread_, pthread_self());
400 return data_->thread_ != kNoThread;
417 thread->thread_handle_data()->thread_ = pthread_self();
425 pthread_create(&thread_handle_data()->thread_, NULL, ThreadEntry, this);
431 pthread_join(thread_handle_data()->thread_, NULL);
platform-linux.cc 464 case ThreadHandle::SELF: thread_ = pthread_self(); break;
465 case ThreadHandle::INVALID: thread_ = kNoThread; break;
469 pthread_t thread_; // Thread handle for pthread. member in class:v8::internal::ThreadHandle::PlatformData
489 return pthread_equal(data_->thread_, pthread_self());
494 return data_->thread_ != kNoThread;
511 thread->thread_handle_data()->thread_ = pthread_self();
519 pthread_create(&thread_handle_data()->thread_, NULL, ThreadEntry, this);
525 pthread_join(thread_handle_data()->thread_, NULL);
frames.cc 72 frame_(NULL), handler_(NULL), thread_(Top::GetCurrentThread()),
78 frame_(NULL), handler_(NULL), thread_(t),
85 thread_(use_top ? Top::GetCurrentThread() : NULL),
133 if (thread_ != NULL) {
134 type = ExitFrame::GetStateForFramePointer(Top::c_entry_fp(thread_), &state);
135 handler_ = StackHandler::FromAddress(Top::handler(thread_));
platform-win32.cc 1450 HANDLE thread_; member in class:v8::internal::Thread::PlatformData
    [all...]
frames.h 519 ThreadLocalTop* thread_; member in class:v8::internal::BASE_EMBEDDED

Completed in 185 milliseconds