HomeSort by relevance Sort by last modified time
    Searched refs:DoWork (Results 1 - 25 of 26) sorted by null

1 2

  /external/webrtc/src/system_wrappers/source/
cpu_measurement_harness.h 28 virtual bool DoWork() = 0;
52 bool DoWork();
cpu_measurement_harness.cc 67 // will be longer if calling DoWork() is not negligable and/or called many
79 if (!DoWork()) {
118 bool CpuMeasurementHarness::DoWork() {
120 if (!cpu_target_->DoWork()) {
trace_unittest.cc 35 virtual bool DoWork() {
  /external/chromium/base/
message_pump.h 26 // work was done. DoDelayedWork will still be called if DoWork returns
28 virtual bool DoWork() = 0;
62 // did_work |= delegate_->DoWork();
89 // Notice that the run loop cycles between calling DoInternalWork, DoWork,
102 // the callouts (DoWork and DoDelayedWork) MUST still be provided even in
104 // pump. DoWork in particular must never be starved for time slices unless
113 // Schedule a DoWork callback to happen reasonably soon. Does nothing if a
114 // DoWork callback is already scheduled. This method may be called from any
115 // thread. Once this call is made, DoWork should not be "starved" at least
message_pump_default.cc 23 bool did_work = delegate->DoWork();
message_pump_win.cc 203 more_work_is_plausible |= state_->delegate->DoWork();
298 if (state_->delegate->DoWork())
454 bool more_work_is_plausible = state_->delegate->DoWork();
message_pump_glib.cc 82 // we run DoWork and/or DoDelayedWork. That part will also run in the other
84 // - We also run DoWork, DoDelayedWork, and possibly DoIdleWork in the main
214 more_work_is_plausible |= state_->delegate->DoWork();
284 if (state_->delegate->DoWork()) {
message_pump_libevent.cc 222 bool did_work = delegate->DoWork();
message_loop.h 443 virtual bool DoWork();
message_loop.cc 557 bool MessageLoop::DoWork() {
  /external/chromium/net/base/
test_completion_callback_unittest.cc 50 void DoWork();
65 void ExampleEmployer::ExampleWorker::DoWork() {
109 NewRunnableMethod(request_.get(), &ExampleWorker::DoWork), true)) {
  /external/chromium/third_party/libjingle/source/talk/base/
nethelpers.h 59 virtual void DoWork();
autodetectproxy.h 70 virtual void DoWork();
asynchttprequest.h 93 virtual void DoWork();
signalthread.h 47 // call Release. DoWork, OnWorkStart and OnWorkStop are called again,
49 // The subclass should override DoWork() to perform the background task. By
94 virtual void DoWork() = 0;
asynchttprequest.cc 104 void AsyncHttpRequest::DoWork() {
signalthread.cc 131 // thread actually is done. We got here because DoWork() finished and
150 DoWork();
autodetectproxy.cc 48 void AutoDetectProxy::DoWork() {
nethelpers.cc 49 void AsyncResolver::DoWork() {
  /external/chromium/chrome/browser/sync/glue/
database_model_worker_unittest.cc 36 // Schedule DoWork to be executed on the DB thread and have the test fail if
37 // DoWork hasn't executed within 10 seconds.
40 &DatabaseModelWorkerTest::DoWork));
47 void DoWork() {
56 // DoWork is called first.
ui_model_worker_unittest.cc 28 virtual void DoWork() {
49 &UIModelWorkerVisitor::DoWork));
  /external/chromium/chrome/browser/policy/
cloud_policy_controller.h 117 // Called back from the delayed work task. Calls |DoWork()|.
122 void DoWork();
cloud_policy_controller.cc 97 DoWork();
270 DoWork();
273 void CloudPolicyController::DoWork() {
  /external/stressapptest/src/
worker.h 718 virtual bool DoWork(int fd);
774 virtual bool DoWork(int fd);
  /external/valgrind/unittest/
posix_tests.cc 1169 void DoWork(int index) {
1177 void Worker0() { DoWork(0); }
1178 void Worker1() { DoWork(1); }

Completed in 318 milliseconds

1 2