OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PlatformThreadHandle
(Results
1 - 17
of
17
) 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
70
class
PlatformThreadHandle
{
78
PlatformThreadHandle
() : handle_(0) {}
80
explicit
PlatformThreadHandle
(Handle handle) : handle_(handle) {}
82
bool is_equal(const
PlatformThreadHandle
& other) const {
137
static
PlatformThreadHandle
CurrentHandle();
162
PlatformThreadHandle
* thread_handle) {
170
PlatformThreadHandle
* thread_handle,
175
//
PlatformThreadHandle
.
181
static void Join(
PlatformThreadHandle
thread_handle);
platform_thread_posix.cc
80
PlatformThreadHandle
* thread_handle,
117
*thread_handle =
PlatformThreadHandle
(handle);
154
PlatformThreadHandle
PlatformThread::CurrentHandle() {
155
return
PlatformThreadHandle
(pthread_self());
185
PlatformThreadHandle
* thread_handle,
193
PlatformThreadHandle
unused;
201
void PlatformThread::Join(
PlatformThreadHandle
thread_handle) {
thread.h
175
PlatformThreadHandle
thread_handle() { return thread_; }
233
PlatformThreadHandle
thread_;
platform_thread_unittest.cc
45
PlatformThreadHandle
handle;
55
PlatformThreadHandle
handle[arraysize(thread)];
139
PlatformThreadHandle
handle;
159
PlatformThreadHandle
handle[arraysize(thread)];
263
PlatformThreadHandle
handle;
thread_id_name_manager.cc
43
void ThreadIdNameManager::RegisterThread(
PlatformThreadHandle
::Handle handle,
92
void ThreadIdNameManager::RemoveName(
PlatformThreadHandle
::Handle handle,
simple_thread.h
119
PlatformThreadHandle
thread_; // PlatformThread handle, invalid after Join!
thread.cc
158
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
100
PlatformThreadHandle
thread;
117
PlatformThreadHandle
thread;
142
PlatformThreadHandle
thread;
condition_variable_unittest.cc
136
scoped_ptr<
PlatformThreadHandle
[]> thread_handles_;
501
thread_handles_(new
PlatformThreadHandle
[thread_count]),
515
PlatformThreadHandle
pth;
/external/libchrome/base/trace_event/
trace_log.h
471
PlatformThreadHandle
sampling_thread_handle_;
trace_log.cc
697
sampling_thread_handle_ =
PlatformThreadHandle
();
[
all
...]
/external/libchrome/base/
observer_list_unittest.cc
385
base::
PlatformThreadHandle
threads[kMaxThreads];
Completed in 246 milliseconds