HomeSort by relevance Sort by last modified time
    Searched full:callback (Results 301 - 325 of 6179) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebCore/fileapi/
FileEntry.idl 38 void createWriter(in [Callback] FileWriterCallback successCallback, in [Optional, Callback] ErrorCallback errorCallback);
39 void file(in [Callback] FileCallback successCallback, in [Optional, Callback] ErrorCallback errorCallback);
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
SurfaceView.java 60 public void addCallback(Callback callback) {
64 public void removeCallback(Callback callback) {
  /frameworks/volley/src/com/android/volley/toolbox/
ClearCacheRequest.java 37 * @param callback Callback to make on the main thread once the cache is clear,
40 public ClearCacheRequest(Cache cache, Runnable callback) {
43 mCallback = callback;
  /system/core/libnl_2/
handlers.c 23 /* Allocate a new callback handle. */
38 /* Clone an existing callback handle */
56 /* Set up a callback. */
67 /* Set up an error callback. */
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/callback/serialization/
UnsupportedCallbackExceptionTest.java 22 package org.apache.harmony.auth.tests.javax.security.auth.callback.serialization;
24 import javax.security.auth.callback.LanguageCallback;
25 import javax.security.auth.callback.UnsupportedCallbackException;
  /external/chromium/chrome/browser/
browsing_data_local_storage_helper_browsertest.cc 8 #include "base/callback.h"
73 void Callback(
108 NewCallback(&stop_test_on_callback, &StopTestOnCallback::Callback));
109 // Blocks until StopTestOnCallback::Callback is notified.
151 TestCompletionCallback callback; local
153 NewCallback(&callback, &TestCompletionCallback::callback));
156 callback.result();
173 TestCompletionCallback callback; local
175 NewCallback(&callback, &TestCompletionCallback::callback))
    [all...]
mock_browsing_data_database_helper.h 12 #include "base/callback.h"
24 Callback1<const std::vector<DatabaseInfo>& >::Type* callback);
34 // Notifies the callback.
mock_browsing_data_indexed_db_helper.h 12 #include "base/callback.h"
27 // Notifies the callback.
39 Callback1<const std::vector<IndexedDBInfo>& >::Type* callback);
mock_browsing_data_local_storage_helper.h 12 #include "base/callback.h"
24 Callback1<const std::vector<LocalStorageInfo>& >::Type* callback);
33 // Notifies the callback.
  /external/chromium/chrome/browser/chromeos/cros/
speech_synthesis_library.cc 45 void InitTts(InitStatusCallback callback) {
46 chromeos::InitTts(callback);
61 void InitTts(InitStatusCallback callback) {}
  /external/chromium/chrome/browser/extensions/
file_reader.cc 12 FileReader::FileReader(const ExtensionResource& resource, Callback* callback)
14 callback_(callback),
  /external/chromium/chrome/browser/ui/gtk/
task_manager_gtk.h 109 // Page sorting callback.
116 // Shared memory sorting callback.
123 // Private memory sorting callback.
130 // Javascript memory sorting callback.
138 // CPU sorting callback.
145 // Network sorting callback.
152 // Process ID sorting callback.
159 // WebCore Image Cache sorting callback.
166 // WebCore Scripts Cache sorting callback.
174 // WebCore CSS Cache sorting callback
    [all...]
  /external/chromium/chrome/common/extensions/docs/static/
events.html 43 void addListener(function callback(...))
44 void removeListener(function callback(...))
45 bool hasListener(function callback(...))
  /external/chromium/net/base/
file_stream_unittest.cc 5 #include "base/callback.h"
148 TestCompletionCallback callback; local
155 rv = stream.Read(buf, arraysize(buf), &callback);
157 rv = callback.WaitForResult();
183 TestCompletionCallback callback; local
186 rv = stream.Read(buf, arraysize(buf), &callback);
190 // The callback should not be called if the request is cancelled.
192 EXPECT_FALSE(callback.have_result());
252 TestCompletionCallback callback; local
259 rv = stream.Read(buf, arraysize(buf), &callback);
329 TestCompletionCallback callback; local
361 TestCompletionCallback callback; local
421 TestCompletionCallback callback; local
543 TestCompletionCallback callback; local
601 TestCompletionCallback callback; local
697 TestCompletionCallback callback; local
    [all...]
test_completion_callback.h 9 #include "base/callback.h"
12 // completion callback helper
18 // NOTE: Since this runs a message loop to wait for the completion callback,
  /external/chromium/net/disk_cache/
file_win.cc 18 disk_cache::FileIOCallback* callback);
57 disk_cache::FileIOCallback* callback) {
62 callback_ = callback;
161 FileIOCallback* callback, bool* completed) {
163 if (!callback) {
172 MyOverlapped* data = new MyOverlapped(this, offset, callback);
193 FileIOCallback* callback, bool* completed) {
195 if (!callback) {
201 return AsyncWrite(buffer, buffer_len, offset, callback, completed);
205 FileIOCallback* callback, bool* completed)
    [all...]
  /external/chromium/net/spdy/
spdy_http_stream_unittest.cc 35 TestCompletionCallback callback; local
41 &callback,
44 EXPECT_EQ(OK, callback.WaitForResult());
76 TestCompletionCallback callback; local
87 http_stream->SendRequest(headers, NULL, &response, &callback));
91 callback.WaitForResult();
136 TestCompletionCallback callback; local
148 headers, upload_stream, &response, &callback));
152 callback.WaitForResult();
190 TestCompletionCallback callback; local
    [all...]
  /external/clang/test/Misc/
diag-aka-types.cpp 41 typedef void (*callback)(struct data *); typedef
43 void helper(callback cb) {} // expected-note{{candidate function not viable: no known conversion from 'void (*)(struct data *)' (aka 'void (*)(ns::data *)') to 'callback' (aka 'void (*)(struct data *)') for 1st argument}}
  /external/javasqlite/src/main/java/SQLite/
Vm.java 23 * The result row is passed to the given callback interface.<BR><BR>
42 * @param cb the object implementing the callback methods.
47 public native boolean step(Callback cb) throws SQLite.Exception;
  /external/openssl/crypto/dso/
README 11 There is now a callback scheme in place where filename conversion can
15 (c) overriden per-DSO by setting the override callback
16 (d) a mix of (b) and (c) - eg. implement an override callback that;
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
permission-denied-already-clear-watch.js 1 description("Tests that when Geolocation permission has been denied prior to a call to watchPosition, and the watch is cleared in the error callback, there is no crash. This a regression test for https://bugs.webkit.org/show_bug.cgi?id=32111.");
12 testFailed('Success callback invoked unexpectedly');
26 testFailed('Success callback invoked unexpectedly');
permission-denied-already-error.js 1 description("Tests that when Geolocation permission has been denied prior to a call to a Geolocation method, the error callback is invoked with code PERMISSION_DENIED, when the Geolocation service encounters an error.");
12 testFailed('Success callback invoked unexpectedly');
29 testFailed('Success callback invoked unexpectedly');
permission-denied-stops-watches.js 14 testFailed('Success callback invoked unexpectedly');
18 testFailed('Error callback invoked unexpectedly : ' + error.message);
28 // yield to allow a chance for the success callback to be invoked.
  /external/webkit/Source/WebCore/inspector/front-end/
DebuggerModel.js 76 setBreakpoint: function(url, lineNumber, columnNumber, condition, callback)
89 if (callback)
90 callback(error ? null : breakpointId, locations);
95 setBreakpointBySourceId: function(location, condition, callback)
99 if (callback)
100 callback(error ? null : breakpointId, [actualLocation]);
105 removeBreakpoint: function(breakpointId, callback)
107 DebuggerAgent.removeBreakpoint(breakpointId, callback);
148 editScriptSource: function(sourceID, newSource, callback)
150 this._scripts[sourceID].editSource(newSource, this._didEditScriptSource.bind(this, sourceID, newSource, callback));
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/
WebDatabaseManagerProxy.cpp 118 RefPtr<ArrayCallback> callback = prpCallback; local
119 uint64_t callbackID = callback->callbackID();
120 m_arrayCallbacks.set(callbackID, callback.release());
128 RefPtr<ArrayCallback> callback = m_arrayCallbacks.take(callbackID); local
129 if (!callback) {
166 callback->performCallbackWithReturnValue(resultArray.get());
171 RefPtr<ArrayCallback> callback = prpCallback; local
172 uint64_t callbackID = callback->callbackID();
173 m_arrayCallbacks.set(callbackID, callback.release());
181 RefPtr<ArrayCallback> callback = m_arrayCallbacks.take(callbackID) local
    [all...]

Completed in 784 milliseconds

<<11121314151617181920>>