HomeSort by relevance Sort by last modified time
    Searched defs:RunLoop (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/base/
run_loop.cc 16 RunLoop::RunLoop()
31 RunLoop::RunLoop(MessagePumpDispatcher* dispatcher)
44 RunLoop::~RunLoop() {
47 void RunLoop::Run() {
60 void RunLoop::RunUntilIdle() {
65 void RunLoop::Quit() {
68 // This is the inner-most RunLoop, so quit now
    [all...]
run_loop.h 28 // calling MessageLoop::Run/Quit directly. RunLoop::Run can only be called once
29 // per RunLoop lifetime. Create a RunLoop on the stack and call Run/Quit to run
31 class BASE_EXPORT RunLoop {
33 RunLoop();
35 explicit RunLoop(MessagePumpDispatcher* dispatcher);
37 ~RunLoop();
53 // the same task queue (MessageLoop); Quitting one RunLoop has no bearing on
56 // RunLoop has already finished running has no effect.
65 // if the RunLoop instance is gone)
    [all...]
  /external/chromium_org/chrome/browser/profile_resetter/
profile_resetter_test_base.cc 15 void ProfileResetterMockObject::RunLoop() {
41 mock_object_.RunLoop();
54 mock_object_.RunLoop();
  /external/libvpx/libvpx/test/
decode_test_driver.cc 28 void DecoderTest::RunLoop(CompressedVideoSource *video) {
encode_test_driver.cc 138 void EncoderTest::RunLoop(VideoSource *video) {
  /external/chromium_org/mojo/android/javatests/
mojo_test_case.cc 48 static void RunLoop(JNIEnv* env, jobject jcaller, jlong timeout_ms) {
53 base::RunLoop run_loop;
  /external/chromium_org/sync/internal_api/attachments/
task_queue_unittest.cc 35 void RunLoop() {
36 base::RunLoop run_loop;
52 RunLoop();
57 RunLoop();
64 RunLoop();
70 RunLoop();
82 RunLoop();
88 RunLoop();
94 RunLoop();
111 RunLoop();
    [all...]
attachment_service_impl_unittest.cc 221 void RunLoop() {
222 base::RunLoop run_loop;
227 RunLoop();
231 RunLoop();
285 RunLoop();
299 RunLoop();
322 RunLoop();
329 RunLoop();
336 RunLoop();
364 RunLoop();
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
decode_test_driver.cc 66 void DecoderTest::RunLoop(CompressedVideoSource *video,
108 void DecoderTest::RunLoop(CompressedVideoSource *video) {
110 RunLoop(video, dec_cfg);
encode_test_driver.cc 141 void EncoderTest::RunLoop(VideoSource *video) {
  /external/chromium_org/chrome/browser/invalidation/
gcm_invalidation_bridge_unittest.cc 74 RunLoop();
77 void RunLoop() {
78 base::RunLoop run_loop;
118 RunLoop();
133 RunLoop();
149 RunLoop();
157 RunLoop();
160 RunLoop();
  /external/chromium_org/mojo/public/cpp/utility/
run_loop.h 18 class RunLoop {
20 RunLoop();
21 ~RunLoop();
23 // Sets up state needed for RunLoop. This must be invoked before creating a
24 // RunLoop.
30 // Returns the RunLoop for the current thread. Returns NULL if not yet
32 static RunLoop* current();
55 // current thread's RunLoop.
73 // See description of |RunLoop::next_handler_id_| for details.
150 MOJO_DISALLOW_COPY_AND_ASSIGN(RunLoop);
    [all...]
  /external/chromium_org/mojo/public/cpp/utility/lib/
run_loop.cc 18 internal::ThreadLocalPointer<RunLoop> current_run_loop;
25 struct RunLoop::WaitState {
33 struct RunLoop::RunState {
39 RunLoop::RunLoop()
45 RunLoop::~RunLoop() {
52 void RunLoop::SetUp() {
57 void RunLoop::TearDown() {
63 RunLoop* RunLoop::current()
    [all...]
  /external/chromium_org/base/message_loop/
message_pump_glib_unittest.cc 190 RunLoop().RunUntilIdle();
418 void RunLoop() {
503 runner->RunLoop();
  /external/chromium_org/components/sync_driver/
generic_change_processor_unittest.cc 193 void RunLoop() {
194 base::RunLoop run_loop;
387 RunLoop();
409 RunLoop();
  /external/chromium_org/sync/engine/
sync_scheduler_unittest.cc 70 void RunLoop() {
79 RunLoop();
86 RunLoop();
206 RunLoop();
214 RunLoop();
312 RunLoop();
324 RunLoop();
378 RunLoop();
382 // RunLoop() will trigger TryCanaryJob which will retry configuration.
384 RunLoop();
    [all...]
  /external/chromium_org/mojo/public/python/mojo/
system.pyx 714 cdef class RunLoop(object):
715 """RunLoop to use when using asynchronous operations on handles."""
720 """Run the runloop until Quit is called."""
724 """Run the runloop until Quit is called or no operation is waiting."""
728 """Quit the runloop."""
733 Post a task on the runloop. This must be called from the thread owning the
734 runloop.
  /external/chromium_org/net/http/
http_stream_factory_impl_job.cc 154 return RunLoop(OK);
440 RunLoop(result);
443 int HttpStreamFactoryImpl::Job::RunLoop(int result) {
614 int rv = RunLoop(OK);
    [all...]

Completed in 736 milliseconds