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

1 2 3

  /external/chromium_org/chrome/browser/ui/panels/
panel_mouse_watcher_timer.cc 27 void DoWork();
55 this, &PanelMouseWatcherTimer::DoWork);
72 void PanelMouseWatcherTimer::DoWork() {
  /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();
  /external/chromium_org/base/message_loop/
message_pump.h 27 // work was done. DoDelayedWork will still be called if DoWork returns
29 virtual bool DoWork() = 0;
76 // did_work |= delegate_->DoWork();
103 // Notice that the run loop cycles between calling DoInternalWork, DoWork,
116 // the callouts (DoWork and DoDelayedWork) MUST still be provided even in
118 // pump. DoWork in particular must never be starved for time slices unless
127 // Schedule a DoWork callback to happen reasonably soon. Does nothing if a
128 // DoWork callback is already scheduled. This method may be called from any
129 // thread. Once this call is made, DoWork should not be "starved" at least
message_pump_default.cc 32 bool did_work = delegate->DoWork();
  /external/chromium_org/chrome/browser/extensions/api/bluetooth/
bluetooth_extension_function.h 23 // bluetooth adapter and calls DoWork() implemented by individual bluetooth
40 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) = 0;
bluetooth_api.h 98 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
110 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
123 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
140 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
157 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
225 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
242 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
254 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
269 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
bluetooth_extension_function.cc 58 DoWork(adapter);
  /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_org/chrome/browser/extensions/api/gcm/
gcm_api.h 32 virtual bool DoWork() = 0;
50 virtual bool DoWork() OVERRIDE FINAL;
70 virtual bool DoWork() OVERRIDE FINAL;
  /external/chromium_org/net/base/
test_completion_callback_unittest.cc 49 void DoWork();
64 void ExampleEmployer::ExampleWorker::DoWork() {
104 base::Bind(&ExampleWorker::DoWork, request_.get()),
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
default_logger.h 39 static inline string DoWork(const T& s) {
46 static inline string DoWork(int n) {
68 impl_->WriteMessage(ConvertToString<T>::DoWork(value));
  /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;
  /external/chromium_org/net/dns/
serial_worker.h 22 // On |WorkNow|, a call to |DoWork| is scheduled on the WorkerPool. Once it
24 // If |WorkNow| is called (1 or more times) while |DoWork| is already under way,
25 // |DoWork| will be called once: after current |DoWork| completes, before a
31 // Derived classes should store results of work done in |DoWork| in dedicated
36 // that |DoWork| and |OnWorkFinished| cannot execute in parallel.
44 // Unless already scheduled, post |DoWork| to WorkerPool.
59 virtual void DoWork() = 0;
75 // Called on the worker thread, executes |DoWork| and notifies the origin
79 // Called on the the origin thread after |DoWork| completes
    [all...]
  /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.
  /external/chromium_org/third_party/libjingle/source/talk/base/
nethelpers.h 65 virtual void DoWork();
  /external/chromium_org/chrome/browser/sync/glue/
browser_thread_model_worker_unittest.cc 41 // Schedule DoWork to be executed on the DB thread and have the test fail if
42 // DoWork hasn't executed within action_timeout().
46 base::Bind(&SyncBrowserThreadModelWorkerTest::DoWork,
57 syncer::SyncerError DoWork() {
67 // DoWork is called first.
ui_model_worker_unittest.cc 29 virtual syncer::SyncerError DoWork() {
51 syncer::WorkCallback c = base::Bind(&UIModelWorkerVisitor::DoWork,
  /external/chromium_org/tools/gn/
scheduler.cc 94 FROM_HERE, base::Bind(&Scheduler::DoWork,
136 void Scheduler::DoWork(const base::Closure& closure) {

Completed in 304 milliseconds

1 2 3