/external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/ |
delayed-permission-denied.js | 14 testFailed('Success callback invoked unexpectedly'); 24 testFailed('Error callback invoked unexpectedly');
|
error.js | 1 description("Tests Geolocation error callback using the mock service."); 14 testFailed('Success callback invoked unexpectedly');
|
success.js | 1 description("Tests Geolocation success callback using the mock service."); 23 testFailed('Error callback invoked unexpectedly');
|
timeout-clear-watch.js | 1 description("Tests that when a watch times out and is cleared from the error callback, there is no crash. This a regression test for https://bugs.webkit.org/show_bug.cgi?id=32111."); 8 testFailed('Success callback invoked unexpectedly');
|
timeout.js | 1 description("Tests that when timeout is non-zero, the success callback is called as expected."); 23 testFailed('Error callback invoked unexpectedly');
|
/external/webkit/LayoutTests/platform/android/fast/dom/Geolocation/ |
disconnected-frame-permission-denied-expected.txt | 1 Tests that when a request is made on a Geolocation object, permission is denied and its Frame is disconnected before a callback is made, the error callback is invoked with PERMISSION_DENIED.
|
/frameworks/base/core/java/android/widget/ |
DoubleDigitManager.java | 30 private final CallBack mCallBack; 37 * @param callBack The callback to indicate what's going on with the user. 39 public DoubleDigitManager(long timeoutInMillis, CallBack callBack) { 41 mCallBack = callBack; 75 * The callback to indicate what is going on with the digits pressed. 77 static interface CallBack {
|
/packages/apps/Email/src/com/android/email/activity/ |
DeleteMessageConfirmationDialog.java | 37 public interface Callback { 45 * @param callbackFragment fragment that implements {@link Callback}. Or null, in which case 46 * the parent activity must implement {@link Callback}. 84 private Callback getCallback() { 87 // If a target is set, it MUST implement Callback. 88 return (Callback) targetFragment; 90 // If not the parent activity MUST implement Callback. 91 return (Callback) getActivity();
|
/external/webkit/Source/WebCore/inspector/front-end/ |
DOMAgent.js | 103 setNodeName: function(name, callback) 105 DOMAgent.setNodeName(this.id, name, callback); 118 setNodeValue: function(value, callback) 120 DOMAgent.setNodeValue(this.id, value, callback); 129 setAttribute: function(name, value, callback) 141 if (callback) 142 callback(); 152 removeAttribute: function(name, callback) 166 if (callback) 167 callback(); [all...] |
/external/chromium/chrome/browser/download/ |
download_request_limiter.h | 29 // Invoking CanDownloadOnIOThread notifies the callback and may update the 57 // The callback from CanDownloadOnIOThread. This is invoked on the io thread. 58 class Callback { 64 virtual ~Callback() {} 106 // callback. 108 DownloadRequestLimiter::Callback* callback); 156 std::vector<DownloadRequestLimiter::Callback*> callbacks_; 173 // Updates the state of the page as necessary and notifies the callback. 174 // WARNING: both this call and the callback are invoked on the io thread [all...] |
/external/chromium/net/disk_cache/ |
file_posix.cc | 22 // |callback| that must be notified at the end), we need the controller that 24 // (we do NOT invoke the callback), in the worker thead that completed the 27 size_t offset, disk_cache::FileIOCallback* callback, 29 : disk_cache::BackgroundIO(controller), callback_(callback), file_(file), 33 disk_cache::FileIOCallback* callback() { function in class:__anon4980::FileBackgroundIO 73 size_t offset, disk_cache::FileIOCallback* callback); 75 size_t offset, disk_cache::FileIOCallback* callback); 78 // Invokes the users' completion callback at the end of the IO operation. 112 size_t offset, disk_cache::FileIOCallback *callback) { 114 new FileBackgroundIO(file, buf, buf_len, offset, callback, this)) 139 disk_cache::FileIOCallback* callback = op->callback(); local [all...] |
/external/chromium/chrome/browser/ |
browsing_data_database_helper_browsertest.cc | 66 void Callback(const std::vector<BrowsingDataDatabaseHelper::DatabaseInfo>& 85 NewCallback(&stop_test_on_callback, &StopTestOnCallback::Callback)); 86 // Blocks until StopTestOnCallback::Callback is notified. 105 TestCompletionCallback callback; local 107 NewCallback(&callback, &TestCompletionCallback::callback)); 110 callback.result(); 131 TestCompletionCallback callback; local 133 NewCallback(&callback, &TestCompletionCallback::callback)); [all...] |
/external/chromium/webkit/glue/ |
resource_fetcher.cc | 27 Callback* callback) 31 callback_(callback) { 64 // Take care to clear callback_ before running the callback as it may lead to 66 scoped_ptr<Callback> callback; 67 callback.swap(callback_); 68 callback->Run(response, data); 128 int timeout_secs, Callback* callback) [all...] |
/external/clang/include/clang/Lex/ |
CodeCompletionHandler.h | 22 /// \brief Callback handler that receives notifications when performing code 28 /// \brief Callback invoked when performing code completion for a preprocessor 31 /// This callback will be invoked when the preprocessor processes a '#' at the 38 /// \brief Callback invoked when performing code completion within a block of 42 /// \brief Callback invoked when performing code completion in a context 49 /// \brief Callback invoked when performing code completion in a preprocessor 53 /// \brief Callback invoked when performing code completion inside a 56 /// There will be another callback invocation after the macro arguments are 57 /// parsed, so this callback should generally be used to note that the next 58 /// callback is invoked inside a macro argument [all...] |
/external/dropbear/libtomcrypt/src/prngs/ |
rng_get_bytes.c | 21 void (*callback)(void)) 58 void (*callback)(void)) 71 if (callback != NULL) callback(); 100 void (*callback)(void)) 124 @param callback Pointer to void function to act as "callback" when RNG is slow. This can be NULL 128 void (*callback)(void)) 135 x = rng_nix(out, outlen, callback); if (x != 0) { return x; } 138 x = rng_win32(out, outlen, callback); if (x != 0) { return x; [all...] |
/external/chromium/net/socket/ |
ssl_client_socket_unittest.cc | 73 TestCompletionCallback callback; local 77 int rv = transport->Connect(&callback); 79 rv = callback.WaitForResult(); 89 rv = sock->Connect(&callback); 96 rv = callback.WaitForResult(); 115 TestCompletionCallback callback; local 119 int rv = transport->Connect(&callback); 121 rv = callback.WaitForResult(); 130 rv = sock->Connect(&callback); 137 rv = callback.WaitForResult() 158 TestCompletionCallback callback; local 203 TestCompletionCallback callback; local 263 TestCompletionCallback callback; local 314 TestCompletionCallback callback; local 367 TestCompletionCallback callback; \/\/ Used for everything except Write. local 424 TestCompletionCallback callback; local 474 TestCompletionCallback callback; local 520 TestCompletionCallback callback; local 581 TestCompletionCallback callback; local [all...] |
/external/webkit/Source/WebCore/loader/ |
PolicyChecker.cpp | 116 PolicyCallback callback = m_callback; local 118 callback.cancel(); 135 PolicyCallback callback = m_callback; local 142 callback.clearRequest(); 145 m_frame->loader()->client()->startDownload(callback.request()); 146 callback.clearRequest(); 149 ResourceRequest request(callback.request()); 152 handleUnimplementablePolicy(m_frame->loader()->cannotShowURLError(callback.request())); 153 callback.clearRequest(); 160 callback.call(shouldContinue) 165 PolicyCallback callback = m_callback; local 185 PolicyCallback callback = m_callback; local [all...] |
/hardware/libhardware/include/hardware/ |
bt_hf.h | 69 /** Callback for connection state change. 74 /** Callback for audio connection state change. 79 /** Callback for VR connection state change. 84 /** Callback for answer incoming call (ATA) 88 /** Callback for disconnect call (AT+CHUP) 92 /** Callback for disconnect call (AT+CHUP) 97 /** Callback for dialing an outgoing call 102 /** Callback for sending DTMF tones 107 /** Callback for enabling/disabling noise reduction/echo cancellation 112 /** Callback for call hold handling (AT+CHLD [all...] |
/packages/apps/Mms/src/com/android/mms/util/ |
BackgroundLoaderManager.java | 94 * Attempts to add a callback for a resource. 96 * @param uri the {@link Uri} of the resource for which a callback is 98 * @param callback the callback to register. 99 * @return {@code true} if the callback is guaranteed to be invoked with 101 * callback is not canceled), or {@code false} if the callback 107 public boolean addCallback(Uri uri, ItemLoadedCallback callback) { 109 Log.d(TAG, "Adding image callback " + callback); [all...] |
/device/generic/goldfish/camera/ |
EmulatedCamera.h | 78 * This is a notification callback that is invoked by the camera device when 118 * These methods are called from the camera API callback routines. 122 /* Actual handler for camera_device_ops_t::set_preview_window callback. 128 /* Actual handler for camera_device_ops_t::set_callbacks callback. 137 /* Actual handler for camera_device_ops_t::enable_msg_type callback. 142 /* Actual handler for camera_device_ops_t::disable_msg_type callback. 147 /* Actual handler for camera_device_ops_t::msg_type_enabled callback. 154 /* Actual handler for camera_device_ops_t::start_preview callback. 160 /* Actual handler for camera_device_ops_t::stop_preview callback. 165 /* Actual handler for camera_device_ops_t::preview_enabled callback [all...] |
/external/expat/xmlwf/ |
xmlwin32url.cxx | 18 class Callback : public IBindStatusCallback { 33 Callback(XML_Parser, IMoniker *, StopHandler, void *); 34 ~Callback(); 48 Callback::AddRef() 54 Callback::Release() 64 Callback::QueryInterface(REFIID riid, void** ppv) 77 Callback::OnStartBinding(DWORD, IBinding* pBinding) 85 Callback::GetPriority(LONG *) 91 Callback::OnLowResource(DWORD) 97 Callback::OnProgress(ULONG, ULONG, ULONG, LPCWSTR [all...] |
/external/libnfc-nxp/src/ |
phHal4Nfc_Internal.h | 20 * \brief HAL callback Function Prototypes 89 /*Upper layer's Transceive callback*/ 91 /*Upper layer's Send callback*/ 93 /*Upper layer's receive callback*/ 141 /*connect callback*/ 143 /*Disconnect callback*/ 151 /*Presence check callback*/ 176 /**Upper layer's Config discovery/Emulation callback registry*/ 183 /**Upper layer's Open Callback registry*/ 185 /**Upper layer's Close Callback registry * [all...] |
/external/chromium/chrome/browser/chromeos/cros/ |
syslogs_library.h | 26 // Request system logs. Read happens on the FILE thread and callback is 28 // Logs are owned by callback function (use delete when done with them). 30 // the request before the callback gets called. 34 ReadCompleteCallback* callback) = 0;
|
/external/chromium/chrome/browser/hang_monitor/ |
hung_plugin_action.h | 11 // HungWindowDetector::HungWindowNotification callback interface. 30 // The callback function for the SendMessageCallback API 31 static void CALLBACK HungWindowResponseCallback(HWND target_window, 36 static BOOL CALLBACK DismissMessageBox(HWND window, LPARAM ignore);
|
/external/chromium/chrome/browser/resources/sync_internals/ |
chrome_sync.js | 47 // Fires the event. Called by the actual event callback. Any 94 // Calls the function, assuming the last argument is a callback to be 105 // Remove the callback before we call it since the callback may 107 var callback = this.callbacks_.shift(); 108 callback.apply(null, args); 113 chrome.sync.getAboutInfo = function(callback) { 114 chrome.sync.getAboutInfo_.call(callback); 120 chrome.sync.getNotificationState = function(callback) { 121 chrome.sync.getNotificationState_.call(callback); [all...] |