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
301
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/chromium/base/debug/
debugger.cc
21
PlatformThread
::Sleep(100);
/external/chromium/base/synchronization/
cancellation_flag.h
24
set_on_ =
PlatformThread
::CurrentId();
waitable_event_unittest.cc
72
class WaitableEventSignaler : public
PlatformThread
::Delegate {
80
PlatformThread
::Sleep(static_cast<int>(seconds_ * 1000));
96
PlatformThread
::Create(0, &signaler, &thread);
100
PlatformThread
::Join(thread);
/external/chromium/chrome/browser/
images_uitest.cc
20
base::
PlatformThread
::Sleep(TestTimeouts::action_timeout_ms());
/external/chromium_org/base/debug/
debugger.cc
27
PlatformThread
::Sleep(TimeDelta::FromMilliseconds(100));
/external/chromium_org/base/synchronization/
cancellation_flag.h
23
set_on_ =
PlatformThread
::CurrentId();
spin_wait.h
46
base::
PlatformThread
::Sleep(base::TimeDelta::FromMilliseconds(50)); \
/external/chromium_org/chrome/browser/usb/
usb_context.cc
17
class UsbContext::UsbEventHandler : public base::
PlatformThread
::Delegate {
22
// base::
PlatformThread
::Delegate
38
bool success = base::
PlatformThread
::Create(0, this, &thread_handle_);
48
base::
PlatformThread
::Join(thread_handle_);
52
base::
PlatformThread
::SetName("UsbEventHandler");
/external/chromium/base/threading/
thread.cc
74
if (!
PlatformThread
::Create(options.stack_size, this, &thread_)) {
102
PlatformThread
::Join(thread_);
118
DCHECK_NE(ANNOTATE_UNPROTECTED_READ(thread_id_),
PlatformThread
::CurrentId());
149
thread_id_ =
PlatformThread
::CurrentId();
150
PlatformThread
::SetName(name_.c_str());
platform_thread.h
5
// WARNING: You should *NOT* be using this class directly.
PlatformThread
is
51
class BASE_API
PlatformThread
{
95
DISALLOW_IMPLICIT_CONSTRUCTORS(
PlatformThread
);
watchdog_unittest.cc
102
PlatformThread
::Sleep(500);
112
PlatformThread
::Sleep(100); // Sleep a bit, but not past the alarm point.
127
PlatformThread
::Sleep(1000);
simple_thread.cc
31
bool success =
PlatformThread
::Create(options_.stack_size(), this, &thread_);
39
PlatformThread
::Join(thread_);
44
tid_ =
PlatformThread
::CurrentId();
48
PlatformThread
::SetName(name_.c_str());
worker_pool_posix.cc
53
class WorkerThread : public
PlatformThread
::Delegate {
73
"%s/%d", name_prefix_.c_str(),
PlatformThread
::CurrentId());
74
PlatformThread
::SetName(name.c_str());
134
// The new
PlatformThread
will take ownership of the WorkerThread object,
138
PlatformThread
::CreateNonJoinable(kWorkerThreadStackSize, worker);
/external/chromium_org/base/threading/
thread.cc
92
if (!
PlatformThread
::Create(options.stack_size, this, &thread_)) {
121
PlatformThread
::Join(thread_);
137
DCHECK_NE(ANNOTATE_UNPROTECTED_READ(thread_id_),
PlatformThread
::CurrentId());
154
PlatformThread
::SetThreadPriority(thread_, priority);
179
thread_id_ =
PlatformThread
::CurrentId();
180
PlatformThread
::SetName(name_.c_str());
platform_thread.h
5
// WARNING: You should *NOT* be using this class directly.
PlatformThread
is
69
friend class
PlatformThread
;
89
class BASE_EXPORT
PlatformThread
{
155
DISALLOW_IMPLICIT_CONSTRUCTORS(
PlatformThread
);
platform_thread_linux.cc
51
void
PlatformThread
::SetName(const char* name) {
60
if (
PlatformThread
::CurrentId() == getpid())
76
void
PlatformThread
::SetThreadPriority(PlatformThreadHandle handle,
/external/chromium_org/base/message_loop/
message_loop_proxy_impl.cc
18
valid_thread_id_(
PlatformThread
::CurrentId()) {
38
return valid_thread_id_ ==
PlatformThread
::CurrentId();
/external/chromium_org/cc/resources/
scoped_resource.cc
28
allocate_thread_id_ = base::
PlatformThread
::CurrentId();
37
DCHECK(allocate_thread_id_ == base::
PlatformThread
::CurrentId());
/external/chromium/base/
lazy_instance.cc
25
PlatformThread
::YieldCurrentThread();
spin_wait.h
47
base::
PlatformThread
::Sleep(50); \
/external/chromium_org/base/
lazy_instance.cc
35
PlatformThread
::YieldCurrentThread();
/external/chromium_org/cc/test/
cc_test_suite.cc
29
base::
PlatformThread
::CurrentId(),
/external/chromium_org/content/common/
gamepad_seqlock_unittest.cc
22
class BasicSeqLockTestThread : public
PlatformThread
::Delegate {
36
PlatformThread
::YieldCurrentThread();
76
ASSERT_TRUE(
PlatformThread
::Create(0, &threads[i], &handles[i]));
95
PlatformThread
::Join(handles[i]);
/external/chromium_org/chrome_frame/
bind_status_callback_impl.cc
80
<< base::StringPrintf(" tid=%i", base::
PlatformThread
::CurrentId());
89
<< base::StringPrintf(" tid=%i", base::
PlatformThread
::CurrentId());
98
<< base::StringPrintf(" tid=%i", base::
PlatformThread
::CurrentId());
109
base::
PlatformThread
::CurrentId(),
120
base::
PlatformThread
::CurrentId());
129
<< base::StringPrintf(" tid=%i", base::
PlatformThread
::CurrentId());
139
<< base::StringPrintf(" tid=%i", base::
PlatformThread
::CurrentId());
148
<< base::StringPrintf(" tid=%i", base::
PlatformThread
::CurrentId());
159
<< base::StringPrintf(" tid=%i", base::
PlatformThread
::CurrentId());
174
<< base::StringPrintf(" tid=%i", base::
PlatformThread
::CurrentId())
[
all
...]
/external/chromium_org/media/audio/
audio_device_thread.cc
18
using base::
PlatformThread
;
27
: public
PlatformThread
::Delegate,
46
// Overrides from
PlatformThread
::Delegate.
111
PlatformThread
::CreateWithPriority(0, this, &thread_,
130
base::Bind(&base::
PlatformThread
::Join, thread));
132
base::
PlatformThread
::Join(thread);
138
PlatformThread
::SetName(thread_name_);
Completed in 508 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>