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

  /external/sfntly/cpp/src/test/
platform_thread.h 36 typedef HANDLE PlatformThreadHandle;
37 const PlatformThreadHandle kNullThreadHandle = NULL;
39 typedef pthread_t PlatformThreadHandle;
40 const PlatformThreadHandle kNullThreadHandle = 0;
61 static bool Create(Delegate* delegate, PlatformThreadHandle* thread_handle);
66 static void Join(PlatformThreadHandle thread_handle);
platform_thread.cc 32 PlatformThreadHandle* thread_handle) {
43 void PlatformThread::Join(PlatformThreadHandle thread_handle) {
66 PlatformThreadHandle* thread_handle) {
79 void PlatformThread::Join(PlatformThreadHandle thread_handle) {
lock_test.cc 64 PlatformThreadHandle handle = kNullThreadHandle;
132 PlatformThreadHandle handle = kNullThreadHandle;
146 PlatformThreadHandle handle = kNullThreadHandle;
194 PlatformThreadHandle handle = kNullThreadHandle;
213 PlatformThreadHandle handle1 = kNullThreadHandle;
214 PlatformThreadHandle handle2 = kNullThreadHandle;
215 PlatformThreadHandle handle3 = kNullThreadHandle;
  /external/libchrome/base/threading/
thread_id_name_manager.h 28 void RegisterThread(PlatformThreadHandle::Handle handle, PlatformThreadId id);
37 void RemoveName(PlatformThreadHandle::Handle handle, PlatformThreadId id);
42 typedef std::map<PlatformThreadId, PlatformThreadHandle::Handle>
44 typedef std::map<PlatformThreadHandle::Handle, std::string*>
59 // Treat the main process specially as there is no PlatformThreadHandle.
platform_thread.h 76 class PlatformThreadHandle {
84 PlatformThreadHandle() : handle_(0) {}
86 explicit PlatformThreadHandle(Handle handle) : handle_(handle) {}
88 bool is_equal(const PlatformThreadHandle& other) const {
143 static PlatformThreadHandle CurrentHandle();
168 PlatformThreadHandle* thread_handle) {
176 PlatformThreadHandle* thread_handle,
181 // PlatformThreadHandle.
193 static void Join(PlatformThreadHandle thread_handle);
197 static void Detach(PlatformThreadHandle thread_handle)
    [all...]
platform_thread_posix.cc 84 PlatformThreadHandle* thread_handle,
121 *thread_handle = PlatformThreadHandle(handle);
158 PlatformThreadHandle PlatformThread::CurrentHandle() {
159 return PlatformThreadHandle(pthread_self());
189 PlatformThreadHandle* thread_handle,
205 PlatformThreadHandle unused;
213 void PlatformThread::Join(PlatformThreadHandle thread_handle) {
225 void PlatformThread::Detach(PlatformThreadHandle thread_handle) {
platform_thread_unittest.cc 45 PlatformThreadHandle handle;
55 PlatformThreadHandle handle[arraysize(thread)];
72 PlatformThreadHandle handle;
82 PlatformThreadHandle handle[arraysize(thread)];
168 PlatformThreadHandle handle;
188 PlatformThreadHandle handle[arraysize(thread)];
280 PlatformThreadHandle handle;
thread_id_name_manager.cc 44 void ThreadIdNameManager::RegisterThread(PlatformThreadHandle::Handle handle,
103 void ThreadIdNameManager::RemoveName(PlatformThreadHandle::Handle handle,
simple_thread.h 77 // If false, the underlying thread's PlatformThreadHandle will not be kept
115 PlatformThreadHandle thread_; // PlatformThread handle, reset after Join.
thread.h 302 PlatformThreadHandle thread_;
simple_thread.cc 48 thread_ = PlatformThreadHandle();
thread.cc 184 thread_ = base::PlatformThreadHandle();
  /external/libchrome/base/synchronization/
lock_unittest.cc 55 PlatformThreadHandle handle;
121 PlatformThreadHandle handle;
135 PlatformThreadHandle handle;
180 PlatformThreadHandle handle;
198 PlatformThreadHandle handle1;
199 PlatformThreadHandle handle2;
200 PlatformThreadHandle handle3;
waitable_event_unittest.cc 144 PlatformThreadHandle thread;
163 PlatformThreadHandle thread;
184 PlatformThreadHandle thread;
232 PlatformThreadHandle thread;
condition_variable_unittest.cc 138 std::unique_ptr<PlatformThreadHandle[]> thread_handles_;
503 thread_handles_(new PlatformThreadHandle[thread_count]),
517 PlatformThreadHandle pth;
  /external/libchrome/base/memory/
shared_memory_unittest.cc 251 std::unique_ptr<PlatformThreadHandle[]> thread_handles;
254 thread_handles.reset(new PlatformThreadHandle[numthreads]);
259 PlatformThreadHandle pth;
  /external/libchrome/base/debug/
activity_tracker.h 45 class PlatformThreadHandle;
159 static ActivityData ForThread(const PlatformThreadHandle& handle);
    [all...]
activity_tracker.cc 66 PlatformThreadHandle::Handle as_handle;
159 ActivityData ActivityData::ForThread(const PlatformThreadHandle& handle) {
712 "PlatformThreadHandle::Handle is too big to hold in 64-bit ID");
    [all...]
  /external/libchrome/base/time/
time.h 86 class PlatformThreadHandle;
832 static ThreadTicks GetForThread(const PlatformThreadHandle& thread_handle);
  /external/libchrome/base/
observer_list_unittest.cc 447 base::PlatformThreadHandle threads[kMaxThreads];

Completed in 205 milliseconds