HomeSort by relevance Sort by last modified time
    Searched defs:Callback (Results 26 - 50 of 153) sorted by null

12 3 4 5 6 7

  /device/asus/fugu/libaudio/
AudioHotplugThread.h 37 class Callback {
39 virtual ~Callback() {}
44 AudioHotplugThread(Callback& callback);
63 Callback& mCallback;
  /external/chromium_org/media/audio/
audio_device_thread.cc 29 Thread(AudioDeviceThread::Callback* callback,
54 AudioDeviceThread::Callback* callback_;
70 void AudioDeviceThread::Start(AudioDeviceThread::Callback* callback,
77 callback, socket, thread_name, synchronized_buffers);
95 AudioDeviceThread::Thread::Thread(AudioDeviceThread::Callback* callback,
100 callback_(callback),
145 // Singleton access is safe from this thread as long as callback is non-NULL
    [all...]
audio_device_thread.h 28 // audio thread via the AudioDeviceThread::Callback interface/class.
35 // This is the callback interface/base class that Audio[Output|Input]Device
38 class Callback {
40 Callback(const AudioParameters& audio_parameters,
44 virtual ~Callback();
46 // One time initialization for the callback object on the audio thread.
70 DISALLOW_COPY_AND_ASSIGN(Callback);
79 void Start(AudioDeviceThread::Callback* callback,
87 // returns, but the callback pointer is cleared so no further callbacks wil
    [all...]
  /art/runtime/base/
mutex_test.cc 104 static void* Callback(void* arg) {
123 int pthread_create_result = pthread_create(&pthread, NULL, RecursiveLockWait::Callback, &state);
  /external/chromium_org/base/
callback.h 2 // pump.py callback.h.pump
17 // NOTE: Header files that do not require the full definition of Callback or
24 // The templated Callback class is a generalized function object. Together
34 // A callback with no unbound input parameters (base::Callback<void(void)>)
41 // The Callback objects themselves should be passed by const-reference, and
56 // base::Callback<int(void)> func_cb = base::Bind(&Return5);
70 // base::Callback<void(void)> ref_cb = base::Bind(&Ref::Foo, ref);
78 // RUNNING A CALLBACK
81 // signature as the template argument to the callback
    [all...]
  /external/chromium_org/base/files/
file_path_watcher.h 12 #include "base/callback.h"
20 // The callback will get called whenever the file or directory referenced by the
30 // Callback type for Watch(). |path| points to the file that was updated,
32 // that case, the callback won't be invoked again.
33 typedef base::Callback<void(const FilePath& path, bool error)> Callback;
43 const Callback& callback) WARN_UNUSED_RESULT = 0;
86 // A callback that always cleans up the PlatformDelegate, either when executed
94 // Invokes |callback| whenever updates to |path| are detected. This should b
    [all...]
  /external/chromium_org/base/win/
event_trace_provider.cc 59 ULONG EtwTraceProvider::Callback(WMIDPREQUESTCODE request, void* buffer) {
75 return provider->Callback(request, buffer);
  /external/chromium_org/chrome/browser/chromeos/attestation/
attestation_policy_browsertest.cc 27 const chromeos::BoolDBusMethodCallback& callback) OVERRIDE {
30 base::Bind(callback, chromeos::DBUS_METHOD_CALL_FAILURE, false));
65 // A callback for PlatformVerificationFlow::ChallengePlatformKey.
66 void Callback(PlatformVerificationFlow::Result result,
84 base::Bind(&AttestationDevicePolicyTest::Callback, this));
  /external/chromium_org/chrome/browser/devtools/
devtools_targets_ui.h 11 #include "base/callback.h"
25 typedef base::Callback<void(const std::string&,
26 const base::ListValue&)> Callback;
27 typedef base::Callback<void(DevToolsTargetImpl*)> TargetCallback;
30 const Callback& callback);
36 const Callback& callback);
39 const Callback& callback, Profile* profile)
    [all...]
  /external/chromium_org/chrome/browser/ui/app_list/search/common/
json_response_fetcher.h 11 #include "base/callback.h"
36 // Callback to pass back the parsed json dictionary returned from the server.
38 typedef base::Callback<void(scoped_ptr<base::DictionaryValue>)> Callback;
40 JSONResponseFetcher(const Callback& callback,
56 Callback callback_;
  /external/chromium_org/chrome/browser/ui/sync/
one_click_signin_sync_starter_unittest.cc 46 void Callback(OneClickSigninSyncStarter::SyncSetupResult result) {
64 void CreateSyncStarter(OneClickSigninSyncStarter::Callback callback,
76 callback);
82 // Number of times that the callback is called with SYNC_SETUP_FAILURE.
85 // Number of times that the callback is called with SYNC_SETUP_SUCCESS.
96 // Verifies that the callback is invoked when sync setup fails.
98 CreateSyncStarter(base::Bind(&OneClickSigninSyncStarterTest::Callback,
107 // Verifies that there is no crash when the callback is NULL.
109 CreateSyncStarter(OneClickSigninSyncStarter::Callback(), GURL())
    [all...]
  /external/chromium_org/chromeos/cryptohome/
async_method_caller.h 35 // A callback type which is called back on the UI thread when the results of
37 typedef base::Callback<void(bool success, MountError return_code)> Callback;
38 typedef base::Callback<void(bool success, const std::string& data)>
45 // |callback| will be called with status info on completion.
48 Callback callback) = 0;
53 // |callback| will be called with status info on completion.
57 Callback callback) = 0
    [all...]
  /external/chromium_org/components/enhanced_bookmarks/
bookmark_image_service.h 39 typedef base::Callback<void(const gfx::Image&, const GURL& url)> Callback;
47 // sent via the callback. The callback may be called synchronously if it is
48 // possible. The callback is always triggered on the main thread.
49 void SalientImageForUrl(const GURL& page_url, Callback callback);
112 // Same as SalientImageForUrl(const GURL&, Callback) but can prevent the
116 Callback stack_callback);
131 Callback original_callback
    [all...]
  /external/chromium_org/components/nacl/renderer/
manifest_downloader.h 7 #include "base/callback.h"
21 // caller through a callback.
24 typedef base::Callback<void(PP_NaClError, const std::string&)> Callback;
34 Callback cb);
55 Callback cb_;
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_print_settings_manager.h 19 typedef base::Callback<void(Result)> Callback;
21 // The default print settings are obtained asynchronously and |callback|
22 // is called with the the print settings when they are available. |callback|
25 virtual void GetDefaultPrintSettings(Callback callback) = 0;
39 PepperPrintSettingsManager::Callback callback) OVERRIDE;
  /external/chromium_org/content/public/renderer/
resource_fetcher.h 10 #include "base/callback.h"
41 typedef base::Callback<void(const blink::WebURLResponse& response,
42 const std::string& data)> Callback;
46 // the request, and the callback will never be run.
56 // Starts the request using the specified frame. Calls |callback| when
62 const Callback& callback) = 0;
  /external/chromium_org/content/renderer/fetchers/
image_resource_fetcher.h 9 #include "base/callback.h"
26 // downloading is done the supplied callback is notified. ImageResourceFetcher
30 typedef base::Callback<void(ImageResourceFetcher*, const SkBitmap&)> Callback;
37 const Callback& callback);
48 // ResourceFetcher::Callback. Decodes the image and invokes callback_.
52 Callback callback_;
multi_resolution_image_resource_fetcher.h 12 #include "base/callback.h"
32 typedef base::Callback<void(MultiResolutionImageResourceFetcher*,
33 const std::vector<SkBitmap>&)> Callback;
40 const Callback& callback);
54 // ResourceFetcher::Callback. Decodes the image and invokes callback_.
58 Callback callback_;
  /external/chromium_org/jingle/glue/
channel_socket_adapter_unittest.cc 63 : callback_(base::Bind(&TransportChannelSocketAdapterTest::Callback,
73 void Callback(int result) {
  /external/chromium_org/media/midi/
usb_midi_device.h 11 #include "base/callback.h"
46 typedef base::Callback<void(bool result, Devices* devices)> Callback;
50 // When the operation succeeds, |callback| will be called with |true| and
52 // Otherwise |callback| will be called with |false| and empty devices.
54 // will be canceled silently (i.e. |callback| will not be called).
57 Callback callback) = 0;
usb_midi_device_factory_android.cc 24 typedef UsbMidiDevice::Factory::Callback Callback;
38 Callback callback) {
45 callback_ = callback;
54 callback.Run(true, &devices);
  /external/chromium_org/mojo/public/cpp/bindings/
callback.h 2 // pump.py callback.h.pump
21 class Callback;
24 class Callback<void()> {
31 Callback() {}
33 // The Callback assumes ownership of |runnable|.
34 explicit Callback(Runnable* runnable) : sink_(runnable) {}
37 // be adapted to a Callback using this constructor.
39 Callback(const Sink& sink) : sink_(new Adapter<Sink>(sink)) {}
64 class Callback<void(A1)> {
72 Callback() {}
    [all...]
  /external/chromium_org/mojo/public/java/system/src/org/chromium/mojo/system/
AsyncWaiter.java 21 * or the callback has already been called.
29 * Callback passed to {@link AsyncWaiter#asyncWait}.
31 public interface Callback {
44 * Asynchronously call wait on a background thread. The given {@link Callback} will be notified
48 * should only be used on the current thread, and becomes invalid once the callback has
51 Cancellable asyncWait(Handle handle, HandleSignals signals, long deadline, Callback callback);
  /external/chromium_org/ppapi/proxy/
printing_resource_unittest.cc 27 void Callback(void* user_data, int32_t result) {
56 res.get(), &output_settings, PP_MakeCompletionCallback(&Callback, NULL));
  /external/chromium_org/ppapi/tests/
test_printing.cc 50 callback_factory_.NewCallbackWithOutput(&TestPrinting::Callback);
77 void TestPrinting::Callback(int32_t result,

Completed in 1900 milliseconds

12 3 4 5 6 7