OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PlatformThreadHandle
(Results
1 - 25
of
53
) sorted by null
1
2
3
/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/chromium_org/base/threading/
platform_thread.h
32
class
PlatformThreadHandle
{
40
PlatformThreadHandle
()
45
explicit
PlatformThreadHandle
(Handle handle)
50
PlatformThreadHandle
(Handle handle,
56
bool is_equal(const
PlatformThreadHandle
& other) {
105
static
PlatformThreadHandle
CurrentHandle();
130
PlatformThreadHandle
* thread_handle);
138
PlatformThreadHandle
* thread_handle,
143
//
PlatformThreadHandle
.
149
static void Join(
PlatformThreadHandle
thread_handle)
[
all
...]
thread_id_name_manager.h
27
void RegisterThread(
PlatformThreadHandle
::Handle handle, PlatformThreadId id);
36
void RemoveName(
PlatformThreadHandle
::Handle handle, PlatformThreadId id);
41
typedef std::map<PlatformThreadId,
PlatformThreadHandle
::Handle>
43
typedef std::map<
PlatformThreadHandle
::Handle, std::string*>
58
// Treat the main process specially as there is no
PlatformThreadHandle
.
platform_thread_posix.cc
53
PlatformThreadHandle
* handle;
72
*(thread_params->handle) =
PlatformThreadHandle
(pthread_self(),
92
PlatformThreadHandle
* thread_handle,
166
PlatformThreadHandle
PlatformThread::CurrentHandle() {
167
return
PlatformThreadHandle
(pthread_self(), CurrentId());
197
PlatformThreadHandle
* thread_handle) {
205
PlatformThreadHandle
* thread_handle,
214
PlatformThreadHandle
unused;
223
void PlatformThread::Join(
PlatformThreadHandle
thread_handle) {
platform_thread_win.cc
59
PlatformThreadHandle
::Handle platform_handle;
87
PlatformThreadHandle
* out_thread_handle) {
112
*out_thread_handle =
PlatformThreadHandle
(thread_handle);
126
PlatformThreadHandle
PlatformThread::CurrentHandle() {
128
return
PlatformThreadHandle
();
171
PlatformThreadHandle
* thread_handle) {
178
PlatformThreadHandle
* thread_handle,
192
void PlatformThread::Join(
PlatformThreadHandle
thread_handle) {
219
void PlatformThread::SetThreadPriority(
PlatformThreadHandle
handle,
platform_thread_unittest.cc
32
PlatformThreadHandle
handle;
42
PlatformThreadHandle
handle[arraysize(thread)];
83
PlatformThreadHandle
handle;
99
PlatformThreadHandle
handle[arraysize(thread)];
thread.h
137
PlatformThreadHandle
thread_handle() { return thread_; }
197
PlatformThreadHandle
thread_;
watchdog.h
84
PlatformThreadHandle
handle_;
thread_id_name_manager.cc
42
void ThreadIdNameManager::RegisterThread(
PlatformThreadHandle
::Handle handle,
92
void ThreadIdNameManager::RemoveName(
PlatformThreadHandle
::Handle handle,
platform_thread_android.cc
57
void PlatformThread::SetThreadPriority(
PlatformThreadHandle
handle,
platform_thread_linux.cc
76
void PlatformThread::SetThreadPriority(
PlatformThreadHandle
handle,
/external/chromium/base/threading/
platform_thread.h
30
//
PlatformThreadHandle
should not be assumed to be a numeric type, since the
36
typedef void*
PlatformThreadHandle
; // HANDLE
37
const
PlatformThreadHandle
kNullThreadHandle = NULL;
39
typedef pthread_t
PlatformThreadHandle
;
40
const
PlatformThreadHandle
kNullThreadHandle = 0;
82
PlatformThreadHandle
* thread_handle);
86
//
PlatformThreadHandle
.
92
static void Join(
PlatformThreadHandle
thread_handle);
platform_thread_unittest.cc
31
PlatformThreadHandle
handle = kNullThreadHandle;
41
PlatformThreadHandle
handle[arraysize(thread)];
79
PlatformThreadHandle
handle = kNullThreadHandle;
92
PlatformThreadHandle
handle[arraysize(thread)];
platform_thread_win.cc
46
PlatformThreadHandle
* out_thread_handle) {
47
PlatformThreadHandle
thread_handle;
117
PlatformThreadHandle
* thread_handle) {
128
void PlatformThread::Join(
PlatformThreadHandle
thread_handle) {
thread.h
123
PlatformThreadHandle
thread_handle() { return thread_; }
172
PlatformThreadHandle
thread_;
platform_thread_posix.cc
57
PlatformThreadHandle
* thread_handle) {
202
PlatformThreadHandle
* thread_handle) {
209
PlatformThreadHandle
unused;
217
void PlatformThread::Join(
PlatformThreadHandle
thread_handle) {
watchdog.h
77
PlatformThreadHandle
handle_;
/external/chromium/base/synchronization/
lock_unittest.cc
52
PlatformThreadHandle
handle = kNullThreadHandle;
118
PlatformThreadHandle
handle = kNullThreadHandle;
132
PlatformThreadHandle
handle = kNullThreadHandle;
179
PlatformThreadHandle
handle = kNullThreadHandle;
197
PlatformThreadHandle
handle1 = kNullThreadHandle;
198
PlatformThreadHandle
handle2 = kNullThreadHandle;
199
PlatformThreadHandle
handle3 = kNullThreadHandle;
/external/chromium_org/base/synchronization/
lock_unittest.cc
54
PlatformThreadHandle
handle;
120
PlatformThreadHandle
handle;
134
PlatformThreadHandle
handle;
181
PlatformThreadHandle
handle;
199
PlatformThreadHandle
handle1;
200
PlatformThreadHandle
handle2;
201
PlatformThreadHandle
handle3;
/external/chromium_org/content/renderer/gpu/
compositor_output_surface.cc
66
main_thread_handle_(base::
PlatformThreadHandle
())
174
void SetThreadPriorityToIdle(base::
PlatformThreadHandle
handle) {
178
void SetThreadPriorityToDefault(base::
PlatformThreadHandle
handle) {
183
void SetThreadPriorityToIdle(base::
PlatformThreadHandle
handle) {}
184
void SetThreadPriorityToDefault(base::
PlatformThreadHandle
handle) {}
/external/chromium/base/
tools_sanity_unittest.cc
118
PlatformThreadHandle
a;
119
PlatformThreadHandle
b;
/external/chromium_org/media/audio/
audio_device_thread.cc
53
base::
PlatformThreadHandle
thread_;
119
base::
PlatformThreadHandle
thread = base::
PlatformThreadHandle
();
/external/chromium/net/base/
directory_lister.h
109
base::
PlatformThreadHandle
thread_;
Completed in 933 milliseconds
1
2
3