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

1 2 34 5 6 7

  /external/chromium_org/chrome/browser/devtools/
devtools_target_impl.h 10 #include "base/callback.h"
85 typedef base::Callback<void(const List&)> Callback;
87 static void EnumerateAllTargets(Callback callback);
  /external/chromium_org/chrome/browser/extensions/
extension_install_checker.h 11 #include "base/callback.h"
30 typedef base::Callback<void(int)> Callback;
48 // If |fail_fast| is true, the callback will be invoked once any check fails.
49 // Otherwise it will be invoked when all checks have completed. |callback|
51 // This function must be called on the UI thread. The callback also occurs on
53 // If checks are currently running, the caller must wait for the callback to
55 void Start(int enabled_checks, bool fail_fast, const Callback& callback);
122 // If true, the callback is invoked when the first check fails
    [all...]
webstore_standalone_installer.h 10 #include "base/callback.h"
52 // A callback for when the install process completes, successfully or not. If
55 typedef base::Callback<void(bool success,
57 webstore_install::Result result)> Callback;
61 const Callback& callback);
67 // Runs the callback; primarily used for running a callback before it is
72 // Called when the install should be aborted. The callback is cleared.
226 Callback callback_
    [all...]
startup_helper.cc 51 WebstoreStandaloneInstaller::Callback callback) {
70 app_id, profile, app_window->GetNativeWindow(), callback);
241 // A callback for when the install process is done.
242 typedef base::Callback<void()> DoneCallback;
251 DoneCallback callback);
254 WebstoreStandaloneInstaller::Callback Callback();
272 WebstoreStandaloneInstaller::Callback AppInstallHelper::Callback() {
284 WebstoreStandaloneInstaller::Callback callback = local
    [all...]
  /external/chromium_org/chrome/browser/ui/sync/
one_click_signin_sync_starter.h 82 typedef base::Callback<void(SyncSetupResult)> Callback;
93 // |callback| is always executed before OneClickSigninSyncStarter is deleted.
104 Callback callback);
153 // Callback invoked once policy registration is complete. If registration
158 // Callback invoked when a policy fetch request has completed. |success| is
170 // Callback invoked once a profile is created, so we can complete the
181 // Callback invoked to check whether the user needs policy or if a
189 // Callback invoked once the user has responded to the signin confirmation UI
    [all...]
  /external/chromium_org/components/component_updater/
component_unpacker.h 12 #include "base/callback.h"
93 typedef base::Callback<void(Error, int)> Callback;
106 // package is a differential update. Calls |callback| with the result.
107 void Unpack(const Callback& callback);
140 // Finish is responsible for calling the callback provided in Start().
151 Callback callback_;
  /external/chromium_org/components/policy/core/common/cloud/
device_management_service.h 14 #include "base/callback.h"
48 typedef base::Callback<
50 const enterprise_management::DeviceManagementResponse&)> Callback;
52 typedef base::Callback<void(DeviceManagementRequestJob*)> RetryCallback;
72 // Starts the job. |callback| will be invoked on completion.
73 void Start(const Callback& callback);
94 Callback callback_;
168 // callback.
  /external/chromium_org/content/browser/appcache/
appcache_disk_cache.cc 19 // A callback shim that provides storage for the 'backend_ptr' value
33 void Callback(int rv) {
63 const net::CompletionCallback& callback) OVERRIDE {
69 index, static_cast<int>(offset), buf, buf_len, callback);
73 const net::CompletionCallback& callback) OVERRIDE {
80 index, static_cast<int>(offset), buf, buf_len, callback, kTruncate);
120 const net::CompletionCallback& callback) {
124 return HandleImmediateReturnValue(rv, entry, callback);
128 const net::CompletionCallback& callback) {
132 return HandleImmediateReturnValue(rv, entry, callback);
    [all...]
  /external/chromium_org/device/hid/
hid_connection_win.cc 31 typedef base::Callback<void(PendingHidTransfer*, bool)> Callback;
34 const Callback& callback);
49 Callback callback_;
64 const PendingHidTransfer::Callback& callback)
66 callback_(callback),
129 const HidConnection::ReadCallback& callback) {
136 base::Bind(&HidConnectionWin::OnReadComplete, this, buffer, callback)));
    [all...]
  /external/chromium_org/net/ssl/
default_channel_id_store_unittest.cc 32 ADD_FAILURE() << "Unexpected callback execution.";
39 void Callback(int err,
240 base::Bind(&AsyncGetChannelIDHelper::Callback,
392 base::Bind(&AsyncGetChannelIDHelper::Callback,
397 base::Bind(&AsyncGetChannelIDHelper::Callback,
  /external/chromium_org/ppapi/proxy/
file_system_resource_unittest.cc 43 static void Callback(void* user_data, int32_t result) {
64 void Callback(int64_t result) {
107 PP_MakeCompletionCallback(&MockCompletionCallback::Callback, &cb));
134 PP_MakeCompletionCallback(&MockCompletionCallback::Callback, &cb));
170 PP_MakeCompletionCallback(&MockCompletionCallback::Callback, &cb));
194 PP_MakeCompletionCallback(&MockCompletionCallback::Callback, &cb));
235 base::Bind(&MockRequestQuotaCallback::Callback, base::Unretained(&cb1)));
259 base::Bind(&MockRequestQuotaCallback::Callback, base::Unretained(&cb2)));
285 base::Bind(&MockRequestQuotaCallback::Callback, base::Unretained(&cb1)));
289 base::Bind(&MockRequestQuotaCallback::Callback, base::Unretained(&cb2)))
    [all...]
  /external/chromium_org/v8/src/heap/
objects-visiting.h 131 template <typename Callback>
143 inline Callback GetVisitorById(StaticVisitorBase::VisitorId id) {
144 return reinterpret_cast<Callback>(callbacks_[id]);
147 inline Callback GetVisitor(Map* map) {
148 return reinterpret_cast<Callback>(callbacks_[map->visitor_id()]);
151 void Register(StaticVisitorBase::VisitorId id, Callback callback) {
153 callbacks_[id] = reinterpret_cast<base::AtomicWord>(callback);
330 typedef int (*Callback)(Map* map, HeapObject* object);
332 static VisitorDispatchTable<Callback> table_
    [all...]
  /external/clang/lib/Format/
UnwrappedLineParser.h 63 UnwrappedLineConsumer &Callback);
161 UnwrappedLineConsumer &Callback;
  /external/guava/guava-tests/test/com/google/common/testing/
TearDownStackTest.java 57 final Callback callback = new Callback() { local
65 final SimpleTearDown tearDownTwo = new SimpleTearDown(callback);
154 Callback callback = null; field in class:TearDownStackTest.SimpleTearDown
158 public SimpleTearDown(Callback callback) {
159 this.callback = callback;
    [all...]
  /art/runtime/
thread_pool.cc 40 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, &attr, &Callback, this), reason);
58 void* ThreadPoolWorker::Callback(void* arg) {
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
Player.java 47 protected Callback mCallback;
77 public void setCallback(Callback callback) {
78 mCallback = callback;
147 public interface Callback {
  /external/chromium_org/chrome/browser/chromeos/
chrome_browser_main_chromeos.cc 13 #include "base/callback.h"
454 static void Callback(const scoped_ptr<GuestLanguageSetCallbackData>& self,
463 void GuestLanguageSetCallbackData::Callback(
501 scoped_ptr<locale_util::SwitchLanguageCallback> callback(
503 &GuestLanguageSetCallbackData::Callback, base::Passed(data.Pass()))));
507 profile, user, callback.Pass());
  /external/chromium_org/chrome/browser/chromeos/policy/
user_cloud_policy_store_chromeos.cc 9 #include "base/callback.h"
63 typedef base::Callback<void(const std::string&,
66 scoped_ptr<em::PolicyFetchResponse>)> Callback;
74 // Starts loading, and reports the result to |callback| when done.
75 void Load(const Callback& callback);
104 Callback callback_;
128 void LegacyPolicyCacheLoader::Load(const Callback& callback) {
129 callback_ = callback;
    [all...]
  /external/chromium_org/device/bluetooth/
bluetooth_chromeos_unittest.cc 275 base::Bind(&BluetoothChromeOSTest::Callback,
288 void Callback() {
338 base::Bind(&BluetoothChromeOSTest::Callback,
362 base::Bind(&BluetoothChromeOSTest::Callback,
532 base::Bind(&BluetoothChromeOSTest::Callback,
549 base::Bind(&BluetoothChromeOSTest::Callback,
565 base::Bind(&BluetoothChromeOSTest::Callback,
585 base::Bind(&BluetoothChromeOSTest::Callback,
605 base::Bind(&BluetoothChromeOSTest::Callback,
621 base::Bind(&BluetoothChromeOSTest::Callback,
    [all...]
  /external/chromium_org/mojo/public/python/mojo/bindings/
messaging.py 354 def __init__(self, callback):
356 self._callback = callback
362 def _WeakCallback(callback):
363 func = callback.im_func
364 self = callback.im_self
366 return callback
368 def Callback(*args, **kwargs):
372 return Callback
  /external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
HostListLoader.java 36 /** Callback for receiving the host list, or getting notified of an error. */
37 public interface Callback {
46 /** Callback handler to be used for network operations. */
69 * callback.onHostListReceived() will be called, otherwise callback.onError() will be called
72 public void retrieveHostList(String authToken, Callback callback) {
75 final Callback callbackFinal = callback;
84 private void doRetrieveHostList(String authToken, Callback callback)
    [all...]
ThirdPartyTokenFetcher.java 29 /** Callback for receiving the token. */
30 public interface Callback {
62 * An opaque value used by the client to maintain state between the request and callback. The
69 private final Callback mCallback;
80 Callback callback) {
83 this.mCallback = callback;
  /external/chromium_org/third_party/webrtc/base/
dbus.cc 96 return static_cast<DBusSigFilter *>(instance)->Callback(message);
102 DBusHandlerResult DBusSigFilter::Callback(DBusMessage *message) {
283 // Handles callback on Idle. We only add this source when ready to stop.
  /external/chromium_org/third_party/webrtc/video/
bitrate_estimator_tests.cc 64 class Callback : public TraceCallback {
66 Callback()
112 Callback callback_;
  /external/chromium_org/tools/grit/grit/
clique.py 198 '''Creates a callback function as required by grit.xtb_reader.Parse().
199 This callback will create Translation objects for each message from
201 the relevant cliques. The callback will add translations to the language
208 def Callback(id, structure):
236 return Callback

Completed in 729 milliseconds

1 2 34 5 6 7