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

1 2 3

  /bionic/libc/bionic/
pthread_accessor.h 28 for (thread_ = gThreadList; thread_ != NULL; thread_ = thread_->next) {
29 if (thread_ == reinterpret_cast<pthread_internal_t*>(desired_thread)) {
42 thread_ = NULL;
47 pthread_internal_t& operator*() const { return *thread_; }
48 pthread_internal_t* operator->() const { return thread_; }
49 pthread_internal_t* get() const { return thread_; }
52 pthread_internal_t* thread_; member in class:pthread_accessor
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
criticalsection.h 57 TRACK_OWNER(thread_ = 0);
64 TRACK_OWNER(thread_ = GetCurrentThreadId());
67 TRACK_OWNER(thread_ = 0);
72 bool CurrentThreadIsOwner() const { return thread_ == GetCurrentThreadId(); }
77 TRACK_OWNER(DWORD thread_); // The section's owning thread id
90 TRACK_OWNER(thread_ = 0);
97 TRACK_OWNER(thread_ = pthread_self());
100 TRACK_OWNER(thread_ = 0);
105 bool CurrentThreadIsOwner() const { return pthread_equal(thread_, pthread_self()); }
110 TRACK_OWNER(pthread_t thread_);
    [all...]
basicpacketsocketfactory.cc 40 : thread_(thread),
46 : thread_(NULL),
153 if (thread_)
154 return thread_->socketserver();
basicpacketsocketfactory.h 61 Thread* thread_; member in class:talk_base::BasicPacketSocketFactory
thread.cc 115 result->thread_ = OpenThread(SYNCHRONIZE, FALSE, GetCurrentThreadId());
116 if (!result->thread_)
119 result->thread_ = pthread_self();
136 if (!CloseHandle(t->thread_)) {
175 thread_(NULL),
239 thread_ = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)PreRun, init, flags,
241 if (thread_) {
244 ::SetThreadPriority(thread_, THREAD_PRIORITY_HIGHEST);
246 ::SetThreadPriority(thread_, THREAD_PRIORITY_ABOVE_NORMAL);
248 ::SetThreadPriority(thread_, THREAD_PRIORITY_IDLE)
    [all...]
thread.h 60 // Returns a thread object with its thread_ ivar set
179 return thread_;
183 return thread_;
199 pthread_t thread_; member in class:talk_base::Thread
203 HANDLE thread_; member in class:talk_base::Thread
  /external/webrtc/src/system_wrappers/source/
condition_variable_unittest.cc 163 thread_ = ThreadWrapper::CreateThread(&WaitingRunFunction,
166 ASSERT_TRUE(thread_->Start(id));
176 thread_->SetNotAlive();
178 ASSERT_TRUE(thread_->Stop());
179 delete thread_;
187 ThreadWrapper* thread_; member in class:webrtc::__anon18370::CondVarTest
  /external/compiler-rt/lib/asan/
asan_thread.h 41 thread_ = 0;
50 AsanThread *thread() { return thread_; }
51 void set_thread(AsanThread *thread) { thread_ = thread; }
63 AsanThread *thread_; member in class:__asan::AsanThreadSummary
  /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::__anon12919::OnceInitTest::TestThread
105 pthread_t thread_; member in class:google::protobuf::__anon12919::OnceInitTest::TestThread
  /external/chromium/base/threading/
thread.cc 52 thread_(0),
74 if (!PlatformThread::Create(options.stack_size, this, &thread_)) {
102 PlatformThread::Join(thread_);
simple_thread.cc 15 thread_(), event_(true, false), tid_(0), joined_(false) {
21 thread_(), event_(true, false), tid_(0), joined_(false) {
31 bool success = PlatformThread::Create(options_.stack_size(), this, &thread_);
39 PlatformThread::Join(thread_);
thread.h 123 PlatformThreadHandle thread_handle() { return thread_; }
172 PlatformThreadHandle thread_; member in class:base::Thread
  /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/src/org/chromium/
IRCProxyWebSocket.java 42 Thread thread_; field in class:IRCProxyWebSocket.ChatWebSocket
66 thread_ = new Thread(this);
67 thread_.start();
90 thread_.stop();
  /external/chromium/chrome/browser/sync/engine/
syncer_thread.cc 70 : thread_("SyncEngine_SyncerThread"),
83 DCHECK(!thread_.IsRunning());
113 if (!thread_.IsRunning()) {
116 if (!thread_.Start()) {
121 thread_.message_loop()->PostTask(FROM_HERE, NewRunnableMethod(
128 thread_.message_loop()->PostTask(FROM_HERE, NewRunnableMethod(
133 DCHECK_EQ(MessageLoop::current(), thread_.message_loop());
156 DCHECK_EQ(MessageLoop::current(), thread_.message_loop());
304 if (!thread_.IsRunning()) {
308 thread_.message_loop()->PostTask(FROM_HERE, NewRunnableMethod
    [all...]
  /external/chromium/net/base/
directory_lister.cc 49 thread_(base::kNullThreadHandle) {
62 thread_(base::kNullThreadHandle) {
75 if (!base::PlatformThread::Create(0, this, &thread_)) {
86 if (thread_) {
90 base::PlatformThread::Join(thread_);
91 thread_ = base::kNullThreadHandle;
153 if (thread_) {
157 base::PlatformThread::Join(thread_);
listen_socket_unittest.cc 23 : thread_(NULL),
33 thread_.reset(new base::Thread("socketio_test"));
34 thread_->StartWithOptions(options);
35 loop_ = reinterpret_cast<MessageLoopForIO*>(thread_->message_loop());
75 thread_.reset();
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
stunrequest.cc 43 : thread_(thread) {
63 thread_->PostDelayed(delay, request, MSG_STUN_SEND, NULL);
72 thread_->Clear(request);
145 manager_->thread_->Clear(this);
185 manager_->thread_->PostDelayed(delay, this, MSG_STUN_SEND, NULL);
  /external/stressapptest/src/
logger.h 126 pthread_t thread_; member in class:Logger
logger.cc 51 LOGGER_ASSERT(0 == pthread_create(&thread_, NULL, &StartRoutine, this));
64 LOGGER_ASSERT(0 == pthread_join(thread_, NULL));
  /external/webp/src/utils/
thread.h 59 pthread_t thread_; member in struct:__anon18253
  /external/chromium/chrome/browser/chromeos/
audio_mixer_alsa.cc 67 if (thread_ != NULL) {
71 thread_->message_loop()->PostTask(FROM_HERE,
81 thread_->message_loop()->AssertIdle();
83 thread_->Stop();
84 thread_.reset();
104 thread_->message_loop()->PostTask(FROM_HERE,
244 if (thread_ == NULL) {
246 thread_.reset(new base::Thread("AudioMixerAlsa"));
247 if (!thread_->Start()) {
248 thread_.reset()
    [all...]
audio_mixer_alsa.h 105 scoped_ptr<base::Thread> thread_; member in class:chromeos::AudioMixerAlsa
  /external/chromium/chrome/browser/history/
history.h 701 DCHECK(thread_) << "History service being called after cleanup";
717 DCHECK(thread_) << "History service being called after cleanup";
842 base::Thread* thread_; member in class:HistoryService
    [all...]
history.cc 126 : thread_(new base::Thread(kHistoryThreadName)),
135 : thread_(new base::Thread(kHistoryThreadName)),
196 if (!thread_) {
207 base::Thread* thread = thread_;
208 thread_ = NULL;
329 DCHECK(thread_) << "History service being called after cleanup";
625 if (!thread_)
664 if (!thread_->Start()) {
687 thread_->message_loop()->PostTask(FROM_HERE, task);
760 if (!thread_)
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
camera.h 149 base::Thread* thread_; member in class:chromeos::Camera

Completed in 2594 milliseconds

1 2 3