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

1 2 3

  /external/chromium_org/extensions/browser/api/bluetooth_low_energy/
bluetooth_low_energy_api.h 71 virtual bool DoWork() = 0;
87 virtual bool DoWork() OVERRIDE;
106 virtual bool DoWork() OVERRIDE;
125 virtual bool DoWork() OVERRIDE;
138 virtual bool DoWork() OVERRIDE;
151 virtual bool DoWork() OVERRIDE;
164 virtual bool DoWork() OVERRIDE;
177 virtual bool DoWork() OVERRIDE;
190 virtual bool DoWork() OVERRIDE;
203 virtual bool DoWork() OVERRIDE
    [all...]
bluetooth_low_energy_api.cc 135 base::Bind(&BluetoothLowEnergyExtensionFunction::DoWork, this)))) {
143 bool BluetoothLowEnergyConnectFunction::DoWork() {
186 bool BluetoothLowEnergyDisconnectFunction::DoWork() {
223 bool BluetoothLowEnergyGetServiceFunction::DoWork() {
256 bool BluetoothLowEnergyGetServicesFunction::DoWork() {
287 bool BluetoothLowEnergyGetCharacteristicFunction::DoWork() {
324 bool BluetoothLowEnergyGetCharacteristicsFunction::DoWork() {
368 bool BluetoothLowEnergyGetIncludedServicesFunction::DoWork() {
401 bool BluetoothLowEnergyGetDescriptorFunction::DoWork() {
437 bool BluetoothLowEnergyGetDescriptorsFunction::DoWork() {
    [all...]
  /external/chromium_org/extensions/browser/api/bluetooth/
bluetooth_api.h 78 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
89 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
97 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
112 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
127 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
bluetooth_extension_function.h 22 // bluetooth adapter and calls (on the UI thread) DoWork() implemented by
39 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) = 0;
bluetooth_private_api.h 68 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
86 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
bluetooth_api.cc 103 bool BluetoothGetAdapterStateFunction::DoWork(
114 bool BluetoothGetDevicesFunction::DoWork(
141 bool BluetoothGetDeviceFunction::DoWork(
171 bool BluetoothStartDiscoveryFunction::DoWork(
191 bool BluetoothStopDiscoveryFunction::DoWork(
bluetooth_extension_function.cc 65 DoWork(adapter);
  /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_org/base/message_loop/
message_pump.h 27 // work was done. DoDelayedWork will still be called if DoWork returns
29 virtual bool DoWork() = 0;
64 // did_work |= delegate_->DoWork();
91 // Notice that the run loop cycles between calling DoInternalWork, DoWork,
104 // the callouts (DoWork and DoDelayedWork) MUST still be provided even in
106 // pump. DoWork in particular must never be starved for time slices unless
115 // Schedule a DoWork callback to happen reasonably soon. Does nothing if a
116 // DoWork callback is already scheduled. This method may be called from any
117 // 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/gcm/
gcm_api.h 32 virtual bool DoWork() = 0;
50 virtual bool DoWork() OVERRIDE FINAL;
67 virtual bool DoWork() OVERRIDE FINAL;
83 virtual bool DoWork() OVERRIDE FINAL;
gcm_api.cc 91 return DoWork();
113 bool GcmRegisterFunction::DoWork() {
138 bool GcmUnregisterFunction::DoWork() {
158 bool GcmSendFunction::DoWork() {
  /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_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...]
serial_worker.cc 61 this->DoWork();
  /external/chromium_org/third_party/webrtc/base/
nethelpers.h 48 virtual void DoWork();
asynchttprequest.h 82 virtual void DoWork();
  /hardware/intel/common/wrs_omxil_core/utils/inc/
workqueue.h 98 void DoWork(WorkableInterface *wi);
  /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 504 milliseconds

1 2 3