OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PlatformThread
(Results
26 - 50
of
115
) sorted by null
1
2
3
4
5
/external/libchrome/base/process/
kill_posix.cc
117
PlatformThread
::Sleep(TimeDelta::FromMilliseconds(100));
154
class BackgroundReaper : public
PlatformThread
::Delegate {
161
// Overridden from
PlatformThread
::Delegate:
183
PlatformThread
::Sleep(TimeDelta::FromMilliseconds(500));
217
PlatformThread
::CreateNonJoinable(0, reaper);
226
PlatformThread
::CreateNonJoinable(0, reaper);
/external/libchrome/base/threading/
simple_thread.cc
34
success =
PlatformThread
::Create(options_.stack_size(), this, &thread_);
36
success =
PlatformThread
::CreateWithPriority(options_.stack_size(), this,
47
PlatformThread
::Join(thread_);
57
tid_ =
PlatformThread
::CurrentId();
61
PlatformThread
::SetName(name_);
thread.cc
113
if (!
PlatformThread
::CreateWithPriority(options.stack_size, this, &thread_,
157
PlatformThread
::Join(thread_);
169
DCHECK_NE(GetThreadId(),
PlatformThread
::CurrentId());
217
id_ =
PlatformThread
::CurrentId();
222
PlatformThread
::SetName(name_.c_str());
thread_collision_warner.cc
17
const PlatformThreadId current_thread_id =
PlatformThread
::CurrentId();
worker_pool_posix.cc
63
class WorkerThread : public
PlatformThread
::Delegate {
81
PlatformThread
::CurrentId());
83
PlatformThread
::SetName(name);
162
// The new
PlatformThread
will take ownership of the WorkerThread object,
165
PlatformThread
::CreateNonJoinable(0, worker);
platform_thread.h
5
// WARNING: You should *NOT* be using this class directly.
PlatformThread
is
37
// These are produced by
PlatformThread
::CurrentRef(), and used to later
114
class BASE_EXPORT
PlatformThread
{
194
DISALLOW_IMPLICIT_CONSTRUCTORS(
PlatformThread
);
simple_thread.h
59
class BASE_EXPORT SimpleThread : public
PlatformThread
::Delegate {
112
// Overridden from
PlatformThread
::Delegate:
119
PlatformThreadHandle thread_; //
PlatformThread
handle, invalid after Join!
thread.h
41
class BASE_EXPORT Thread :
PlatformThread
::Delegate {
214
//
PlatformThread
::Delegate methods:
/system/tpm/trunks/
trunks_dbus_proxy.cc
54
origin_thread_id_ = base::
PlatformThread
::CurrentId();
60
if (origin_thread_id_ != base::
PlatformThread
::CurrentId()) {
85
if (origin_thread_id_ != base::
PlatformThread
::CurrentId()) {
/external/libchrome/base/
observer_list_threadsafe.h
121
PlatformThreadId thread_id =
PlatformThread
::CurrentId();
139
PlatformThreadId thread_id =
PlatformThread
::CurrentId();
224
observer_lists_.find(
PlatformThread
::CurrentId());
249
observer_lists_.find(
PlatformThread
::CurrentId());
/external/webrtc/webrtc/modules/video_capture/linux/
video_capture_linux.h
43
rtc::scoped_ptr<rtc::
PlatformThread
> _captureThread;
/external/webrtc/webrtc/test/
direct_transport.h
58
rtc::
PlatformThread
thread_;
fake_audio_device.h
62
rtc::
PlatformThread
thread_;
frame_generator_capturer.h
67
rtc::
PlatformThread
thread_;
/external/libchrome/base/trace_event/
trace_sampling_thread.cc
32
PlatformThread
::SetName("Sampling Thread");
36
PlatformThread
::Sleep(
/external/webrtc/webrtc/system_wrappers/source/
critical_section_unittest.cc
81
rtc::
PlatformThread
thread(
108
rtc::
PlatformThread
thread(
/external/libchrome/dbus/
dbus_statistics.cc
67
origin_thread_id_(base::
PlatformThread
::CurrentId()) {
71
DCHECK_EQ(origin_thread_id_, base::
PlatformThread
::CurrentId());
87
if (base::
PlatformThread
::CurrentId() != origin_thread_id_) {
89
<< base::
PlatformThread
::CurrentId();
110
DCHECK_EQ(origin_thread_id_, base::
PlatformThread
::CurrentId());
/external/webrtc/webrtc/modules/utility/source/
process_thread_impl.h
74
rtc::scoped_ptr<rtc::
PlatformThread
> thread_;
/external/webrtc/webrtc/modules/video_render/ios/
video_render_ios_gles20.h
68
rtc::scoped_ptr<rtc::
PlatformThread
> screen_update_thread_;
/external/webrtc/webrtc/test/channel_transport/
udp_socket_manager_posix.h
78
rtc::
PlatformThread
_thread;
/external/webrtc/webrtc/video/
video_capture_input.h
79
rtc::
PlatformThread
encoder_thread_;
/system/tpm/tpm_manager/server/
tpm_connection.cc
95
base::
PlatformThread
::Sleep(
/external/libchrome/base/message_loop/
message_pump_glib.cc
148
thread_info->thread_id =
PlatformThread
::CurrentId();
150
DCHECK(thread_info->thread_id ==
PlatformThread
::CurrentId()) <<
/external/libchrome/base/timer/
timer.cc
168
thread_id_ = static_cast<int>(
PlatformThread
::CurrentId());
178
thread_id_ == static_cast<int>(
PlatformThread
::CurrentId()));
/external/webrtc/webrtc/modules/video_render/mac/
video_render_nsopengl.h
34
class
PlatformThread
;
172
// TODO(pbos): Remove scoped_ptr and use
PlatformThread
directly.
173
rtc::scoped_ptr<rtc::
PlatformThread
> _screenUpdateThread;
Completed in 327 milliseconds
1
2
3
4
5