/external/chromium/base/ |
callback_old.h | 17 // Callbacks are designed to work with Tuples. A set of helper functions and 29 // Note that callbacks currently have no facility for cancelling or abandoning 55 // Base for all Callbacks that handles storage of the pointers.
|
/external/chromium/chrome/browser/download/ |
download_request_limiter.h | 137 // Notifies the callbacks as to whether the download is allowed or not. 152 // Callbacks we need to notify. This is only non-empty if we're showing a 155 // callbacks.
|
/external/chromium/chrome/browser/search_engines/ |
template_url_fetcher_unittest.cc | 23 // Handles callbacks from TemplateURLFetcher. 67 void DestroyedCallback(TemplateURLFetcherTestCallbacks* callbacks); 137 TemplateURLFetcherTestCallbacks* callbacks) {
|
/external/chromium_org/base/ |
cancelable_callback.h | 86 // be null. Outstanding and any previously wrapped callbacks are cancelled. 156 // be null. Outstanding and any previously wrapped callbacks are cancelled. 226 // be null. Outstanding and any previously wrapped callbacks are cancelled.
|
/external/chromium_org/chrome/browser/search_engines/ |
template_url_fetcher_unittest.cc | 25 // Handles callbacks from TemplateURLFetcher. 64 void DestroyedCallback(TemplateURLFetcherTestCallbacks* callbacks); 121 TemplateURLFetcherTestCallbacks* callbacks) {
|
/external/chromium_org/chrome/browser/speech/ |
tts_linux.cc | 118 // Register callbacks for all events. 305 // We run Speech Dispatcher in threaded mode, so these callbacks should always 326 // We run Speech Dispatcher in threaded mode, so these callbacks should always
|
/external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/ |
CallbackHelper.java | 13 * A helper class that encapsulates listening and blocking for callbacks. 79 * // trigger the callback. There can't be any callbacks 'in flight' at this moment, otherwise 142 * is intended to 'catch' callbacks that occur after X but before waitForCallback()
|
/external/chromium_org/device/bluetooth/ |
bluetooth_device_chromeos.h | 169 // Run any outstanding pairing callbacks passing |status| as the result of 170 // pairing. Returns true if any callbacks were run, false if not. 207 // During pairing these callbacks are set to those provided by method calls
|
/external/chromium_org/ppapi/native_client/src/trusted/plugin/ |
file_downloader.h | 85 // caller without writing to a temporary file. The callbacks provided by 167 // Each step is done asynchronously using callbacks. We create callbacks
|
/external/chromium_org/ppapi/thunk/ |
enter.cc | 130 // Blocking callbacks are never allowed on the main thread. 136 "Blocking callbacks are not allowed on the main thread."); 144 // blocking callbacks, or we will have no place to run them.
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
Resource.js | 349 var callbacks = this._pendingContentCallbacks.slice(); 350 for (var i = 0; i < callbacks.length; ++i) 351 callbacks[i](this._content);
|
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/ |
DOMFileSystemSync.cpp | 230 OwnPtr<AsyncFileSystemCallbacks> callbacks = FileWriterBaseCallbacks::create(fileWriter, successCallback.release(), errorCallback.release()); local 231 callbacks->setShouldBlockUntilCompletion(true); 233 fileSystem()->createFileWriter(createFileSystemURL(fileEntry), fileWriter.get(), callbacks.release());
|
/external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/display/ |
Display.java | 80 * with it. Callbacks from this object will all be executed on the 89 * Callbacks from this object will all be executed on the thread 92 * with it, which will then be used to execute callbacks. Connection
|
/external/chromium_org/third_party/libxml/src/ |
DOCBparser.c | 129 * @user_data: The user data returned on SAX callbacks 166 * @userData: if using SAX, this pointer will be provided on callbacks. 250 * @userData: if using SAX, this pointer will be provided on callbacks.
|
/external/chromium_org/third_party/libxml/src/include/libxml/ |
xmlIO.h | 306 * Default 'file://' protocol callbacks 320 * Default 'http://' protocol callbacks 341 * Default 'ftp://' protocol callbacks
|
/external/flac/libFLAC/ |
ogg_encoder_aspect.c | 109 * callbacks for each metadata block and audio frame. 143 * If we get here, our assumption about the way write callbacks happen 217 * If we get here, our assumption about the way write callbacks happen
|
/external/libxml2/ |
DOCBparser.c | 129 * @user_data: The user data returned on SAX callbacks 166 * @userData: if using SAX, this pointer will be provided on callbacks. 250 * @userData: if using SAX, this pointer will be provided on callbacks.
|
/external/libxml2/include/libxml/ |
xmlIO.h | 306 * Default 'file://' protocol callbacks 320 * Default 'http://' protocol callbacks 341 * Default 'ftp://' protocol callbacks
|
/frameworks/base/core/java/android/service/wallpaper/ |
WallpaperService.java | 668 SurfaceHolder.Callback callbacks[] = mSurfaceHolder.getCallbacks(); local 669 if (callbacks != null) { 670 for (SurfaceHolder.Callback c : callbacks) { 695 SurfaceHolder.Callback callbacks[] = mSurfaceHolder.getCallbacks(); local 696 if (callbacks != null) { 697 for (SurfaceHolder.Callback c : callbacks) { 706 SurfaceHolder.Callback callbacks[] = mSurfaceHolder.getCallbacks(); local 707 if (callbacks != null) { 708 for (SurfaceHolder.Callback c : callbacks) { 889 SurfaceHolder.Callback callbacks[] = mSurfaceHolder.getCallbacks(); local [all...] |
/frameworks/wilhelm/src/desktop/ |
SndFile.c | 59 // make a good faith effort for the mean time between "head at new position" callbacks to 66 // update period so that it appears to the application as one or more lost callbacks, 90 // callbacks are called with mutex unlocked
|
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/ |
ContextMap.java | 33 * This class manages application callbacks and keeps track of GATT connections. 55 * Application entry mapping UUIDs to appIDs and callbacks. 64 /** Application callbacks */
|
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
EmlMessageViewFragment.java | 115 final ContactLoaderCallbacks callbacks = getContactInfoSource(); local 116 callbacks.setSenders(emailAddresses); 117 getLoaderManager().restartLoader(CONTACT_LOADER, Bundle.EMPTY, callbacks);
|
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/ |
CameraTestThread.java | 27 * Camera test thread wrapper for handling camera callbacks
|
/developers/build/prebuilts/gradle/BasicContactables/BasicContactablesSample/src/main/java/com/example/android/basiccontactables/ |
MainActivity.java | 72 // Start the loader with the new query, and an object that will handle all callbacks.
|
/developers/samples/android/content/contacts/BasicContactables/BasicContactablesSample/src/main/java/com/example/android/basiccontactables/ |
MainActivity.java | 72 // Start the loader with the new query, and an object that will handle all callbacks.
|