OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PlatformThreadId
(Results
1 - 25
of
77
) sorted by null
1
2
3
4
/external/chromium_org/base/threading/
thread_id_name_manager.h
27
void RegisterThread(PlatformThreadHandle::Handle handle,
PlatformThreadId
id);
30
void SetName(
PlatformThreadId
id, const char* name);
33
const char* GetName(
PlatformThreadId
id);
36
void RemoveName(PlatformThreadHandle::Handle handle,
PlatformThreadId
id);
41
typedef std::map<
PlatformThreadId
, PlatformThreadHandle::Handle>
60
PlatformThreadId
main_process_id_;
thread_checker_impl.h
38
mutable
PlatformThreadId
valid_thread_id_;
platform_thread.h
27
typedef DWORD
PlatformThreadId
;
29
typedef pid_t
PlatformThreadId
;
51
PlatformThreadId
id)
72
PlatformThreadId
id_;
75
const
PlatformThreadId
kInvalidThreadId(0);
102
static
PlatformThreadId
CurrentId();
platform_thread_unittest.cc
71
PlatformThreadId
thread_id() const { return thread_id_; }
74
PlatformThreadId
thread_id_;
80
PlatformThreadId
main_thread_id = PlatformThread::CurrentId();
96
PlatformThreadId
main_thread_id = PlatformThread::CurrentId();
thread_id_name_manager.cc
43
PlatformThreadId
id) {
50
void ThreadIdNameManager::SetName(
PlatformThreadId
id, const char* name) {
76
const char* ThreadIdNameManager::GetName(
PlatformThreadId
id) {
93
PlatformThreadId
id) {
thread.h
140
PlatformThreadId
thread_id() const { return thread_id_; }
204
PlatformThreadId
thread_id_;
thread_id_name_manager_unittest.cc
55
base::
PlatformThreadId
a_id = thread_a.thread_id();
68
base::
PlatformThreadId
a_id = base::PlatformThread::CurrentId();
80
base::
PlatformThreadId
a_id = base::PlatformThread::CurrentId();
thread_collision_warner.cc
17
const
PlatformThreadId
current_thread_id = PlatformThread::CurrentId();
simple_thread.h
96
PlatformThreadId
tid() { return tid_; }
119
PlatformThreadId
tid_; // The backing thread's id.
/external/chromium/base/threading/
platform_thread.h
35
typedef DWORD
PlatformThreadId
;
42
typedef mach_port_t
PlatformThreadId
;
44
typedef pid_t
PlatformThreadId
;
48
const
PlatformThreadId
kInvalidThreadId = 0;
62
static
PlatformThreadId
CurrentId();
thread_checker_impl.h
39
mutable
PlatformThreadId
valid_thread_id_;
platform_thread_unittest.cc
67
PlatformThreadId
thread_id() const { return thread_id_; }
70
PlatformThreadId
thread_id_;
76
PlatformThreadId
main_thread_id = PlatformThread::CurrentId();
89
PlatformThreadId
main_thread_id = PlatformThread::CurrentId();
thread.h
126
PlatformThreadId
thread_id() const { return thread_id_; }
183
PlatformThreadId
thread_id_;
thread_collision_warner.cc
17
const
PlatformThreadId
current_thread_id = PlatformThread::CurrentId();
simple_thread.h
96
PlatformThreadId
tid() { return tid_; }
113
PlatformThreadId
tid_; // The backing thread's id.
worker_pool_posix_unittest.cc
56
std::set<
PlatformThreadId
>* unique_threads)
76
std::set<
PlatformThreadId
>* unique_threads_;
89
std::set<
PlatformThreadId
>* unique_threads,
171
std::set<
PlatformThreadId
> unique_threads_;
/external/chromium/base/synchronization/
lock.cc
18
owning_thread_id_ = static_cast<
PlatformThreadId
>(0);
30
owning_thread_id_ = static_cast<
PlatformThreadId
>(0);
cancellation_flag.h
36
PlatformThreadId
set_on_;
lock.h
85
base::
PlatformThreadId
owning_thread_id_;
/external/chromium_org/base/synchronization/
lock.cc
16
const
PlatformThreadId
kNoThreadId = static_cast<
PlatformThreadId
>(0);
cancellation_flag.h
35
PlatformThreadId
set_on_;
/external/chromium_org/cc/resources/
scoped_resource.h
41
base::
PlatformThreadId
allocate_thread_id_;
/external/chromium_org/base/message_loop/
message_loop_proxy_impl.h
45
PlatformThreadId
valid_thread_id_;
/external/chromium_org/chrome_frame/
metrics_service.h
134
base::
PlatformThreadId
thread_;
/external/chromium_org/ui/base/clipboard/
clipboard.cc
82
typedef std::vector<base::
PlatformThreadId
> AllowedThreadsVector;
87
typedef std::map<base::
PlatformThreadId
, Clipboard*> ClipboardMap;
99
const std::vector<base::
PlatformThreadId
>& allowed_threads) {
111
base::
PlatformThreadId
id = base::PlatformThread::CurrentId();
141
base::
PlatformThreadId
id = base::PlatformThread::CurrentId();
Completed in 659 milliseconds
1
2
3
4