OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Wait
(Results
1 - 25
of
748
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/chromium_org/third_party/libjingle/source/talk/base/
event_unittest.cc
35
ASSERT_TRUE(event.
Wait
(0));
40
ASSERT_FALSE(event.
Wait
(0));
43
ASSERT_TRUE(event.
Wait
(0));
44
ASSERT_TRUE(event.
Wait
(0));
47
ASSERT_FALSE(event.
Wait
(0));
52
ASSERT_FALSE(event.
Wait
(0));
55
ASSERT_TRUE(event.
Wait
(0));
56
ASSERT_FALSE(event.
Wait
(0));
socketserver.h
37
// Provides the ability to
wait
for activity on a set of sockets. The Thread
41
// notified of asynchronous I/O from this server's
Wait
method.
53
virtual bool
Wait
(int cms, bool process_io) = 0;
55
// Causes the current
wait
(if one is in progress) to wake up.
nullsocketserver.h
42
virtual bool
Wait
(int cms, bool process_io) {
43
event_.
Wait
(cms);
nullsocketserver_unittest.cc
53
EXPECT_TRUE_WAIT(ss_.
Wait
(talk_base::kForever, process_io), kTimeout);
58
ss_.
Wait
(200, true);
59
// The actual
wait
time is dependent on the resolution of the timer used by
event.h
51
bool
Wait
(int cms);
maccocoasocketserver.h
51
virtual bool
Wait
(int cms, bool process_io);
maccocoasocketserver_unittest.mm
49
// Test that MacCocoaSocketServer::
Wait
works as expected.
53
server.
Wait
(1000, true);
63
server.
Wait
(10000, true);
macsocketserver.h
32
virtual bool
Wait
(int cms, bool process_io) = 0;
65
virtual bool
Wait
(int cms, bool process_io);
83
// event loop until the next call to
Wait
. Other events are dispatched
91
virtual bool
Wait
(int cms, bool process_io);
106
// next call to
Wait
. Other events are automatically dispatched to
114
virtual bool
Wait
(int cms, bool process_io);
/external/chromium_org/chrome/browser/extensions/
lazy_background_page_test_util.h
12
// Helper class to
wait
for a lazy background page to load and close again.
27
void
Wait
() {
28
page_created_.
Wait
();
29
page_closed_.
Wait
();
33
page_created_.
Wait
();
36
page_closed_.
Wait
();
/external/chromium/third_party/libjingle/source/talk/base/
socketserver.h
37
// Provides the ability to
wait
for activity on a set of sockets. The Thread
41
// notified of asynchronous I/O from this server's
Wait
method.
53
virtual bool
Wait
(int cms, bool process_io) = 0;
55
// Causes the current
wait
(if one is in progress) to wake up.
/external/chromium_org/cc/base/
completion_event.h
17
// It is safe to destroy this object as soon as
Wait
() returns.
35
void
Wait
() {
41
event_.
Wait
();
55
// Used to assert that
Wait
() and Signal() are each called exactly once.
/external/v8/test/cctest/
test-lock.cc
48
ok = sem->
Wait
(0);
50
ok = sem->
Wait
(100);
52
ok = sem->
Wait
(1000);
57
ok = sem->
Wait
(0);
59
ok = sem->
Wait
(100);
61
ok = sem->
Wait
(1000);
/external/chromium_org/content/common/gpu/media/
video_accelerator_unittest_helpers.h
17
// Helper class allowing one thread to
wait
on a notification from another.
18
// If notifications come in faster than they are
Wait
()'d for, they are
19
// accumulated (so exactly as many
Wait
() calls will unblock as Notify() calls
29
// Used by waiters to
wait
for the next ClientState Notification.
30
StateEnum
Wait
();
52
StateEnum ClientStateNotification<StateEnum>::
Wait
() {
55
cv_.
Wait
();
/external/chromium/base/threading/
worker_pool_unittest.cc
40
signaled = test_event.
Wait
();
42
signaled = long_test_event.
Wait
();
/external/chromium_org/chrome/browser/chromeos/file_manager/
drive_test_util.cc
19
// Helper class used to
wait
for |OnFileSystemMounted| event from a drive file
41
void
Wait
() {
73
mount_point_waiter.
Wait
();
/external/webrtc/src/system_wrappers/source/
event_posix.h
35
virtual EventTypeWrapper
Wait
(unsigned long maxTime);
48
EventTypeWrapper
Wait
(timespec& tPulse);
event_win.h
27
virtual EventTypeWrapper
Wait
(unsigned long maxTime);
/external/chromium_org/mojo/system/
waiter.h
40
MojoResult
Wait
(MojoDeadline deadline);
/external/chromium_org/net/tools/quic/test_tools/
server_thread.cc
46
resume_.
Wait
();
63
listening_.
Wait
();
67
confirmed_.
Wait
();
73
paused_.
Wait
();
96
//
Wait
for a session to be created.
/external/webrtc/src/system_wrappers/interface/
event_wrapper.h
32
// Releases threads who are calling
Wait
() and has started waiting. Please
33
// note that a thread calling
Wait
() will not start waiting immediately.
40
// Prevents future
Wait
() calls from finishing without a new Set() call.
43
// Puts the calling thread into a
wait
state. The thread may be released
50
virtual EventTypeWrapper
Wait
(unsigned long maxTime) = 0;
/external/chromium_org/chrome/browser/apps/
app_window_interactive_uitest.cc
20
void
Wait
() {
103
fs_changed.
Wait
();
113
fs_changed.
Wait
();
137
fs_changed.
Wait
();
147
fs_changed.
Wait
();
166
fs_changed.
Wait
();
205
fs_changed.
Wait
();
/external/chromium_org/chrome/browser/infobars/
infobars_browsertest.cc
51
observer.
Wait
();
71
infobar_added_1.
Wait
();
83
infobar_added_2.
Wait
();
84
infobar_removed_1.
Wait
();
93
infobar_removed_2.
Wait
();
/external/chromium_org/chrome/browser/ui/login/
login_prompt_browsertest.cc
173
// LOAD_STOP observer is special since we want to be able to
wait
for
267
load_stop_waiter.
Wait
();
289
auth_needed_waiter.
Wait
();
300
auth_supplied_waiter.
Wait
();
305
auth_needed_waiter.
Wait
();
312
auth_supplied_waiter.
Wait
();
337
auth_needed_waiter.
Wait
();
348
auth_supplied_waiter.
Wait
();
353
auth_needed_waiter.
Wait
();
363
auth_supplied_waiter.
Wait
();
[
all
...]
/external/chromium_org/chrome/browser/chromeos/memory/
oom_priority_manager_browsertest.cc
39
load1.
Wait
();
48
load2.
Wait
();
57
load3.
Wait
();
70
load4.
Wait
();
80
load5.
Wait
();
122
reload1.
Wait
();
136
reload2.
Wait
();
150
back1.
Wait
();
157
back2.
Wait
();
/external/chromium_org/chrome/browser/extensions/api/extension_action/
browser_action_interactive_test.cc
61
// Setup extension message listener to
wait
for javascript to finish running.
64
// Setup the notification observer to
wait
for the popup to finish loading.
71
frame_observer.
Wait
();
93
frame_observer.
Wait
();
107
frame_observer.
Wait
();
126
frame_observer.
Wait
();
168
frame_observer.
Wait
();
189
frame_observer.
Wait
();
210
frame_observer.
Wait
();
234
frame_observer.
Wait
();
[
all
...]
Completed in 402 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>