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

<<21222324252627282930>>

  /external/chromium/net/http/
http_cache_transaction.h 72 // the provided |callback| when the operatiopn finishes.
82 int WriteMetadata(IOBuffer* buf, int buf_len, CompletionCallback* callback);
102 virtual int RestartIgnoringLastError(CompletionCallback* callback);
104 CompletionCallback* callback);
107 CompletionCallback* callback);
109 virtual int Read(IOBuffer* buf, int buf_len, CompletionCallback* callback);
171 // This is a helper function used to trigger a completion callback. It may
175 // This will trigger the completion callback if appropriate.
183 // corresponding callback.
295 CompletionCallback* callback);
    [all...]
http_network_layer_unittest.cc 89 TestCompletionCallback callback; local
102 rv = trans->Start(&request_info, &callback, BoundNetLog());
104 rv = callback.WaitForResult();
  /external/chromium/net/socket/
ssl_server_socket_nss.h 40 virtual int Accept(CompletionCallback* callback);
42 CompletionCallback* callback);
44 CompletionCallback* callback);
  /external/chromium/third_party/libjingle/source/talk/base/
ssladapter.cc 72 bool InitializeSSL(VerificationCallback callback) {
73 return OpenSSLAdapter::InitializeSSL(callback);
86 bool InitializeSSL(VerificationCallback callback) {
  /external/javasqlite/src/main/java/SQLite/
Callback.java 4 * Callback interface for SQLite's query results.
9 * class TableFmt implements SQLite.Callback {
36 public interface Callback {
  /external/libxml2/include/libxml/
list.h 30 * Callback function used to free data from a list.
38 * Callback function used to compare 2 data.
48 * Callback function used when walking a list with xmlListWalk().
  /external/oprofile/daemon/liblegacy/
opd_image.h 51 /** callback function passed to opd_for_each_image() */
55 * @param imagecb callback to apply onto each existing image struct
57 * the callback receive a struct opd_image * (not a const struct) and is
  /external/qemu/android/
adb-qemud.c 79 /* A callback that is invoked when the host is connected.
106 /* A callback that is invoked when the host gets disconnected.
121 /* A callback that is invoked when the host sends data.
145 /* A callback that is invoked when the host is connected. */
147 /* A callback that is invoked when the host gets disconnected. */
149 /* A callback that is invoked when the host sends data. */
177 /* A callback that is invoked when ADB guest sends data to the service.
254 /* A callback that is invoked when ADB guest disconnects from the service. */
270 /* A callback that is invoked when ADB daemon running inside the guest connects
321 /* A callback that is invoked when ADB debugging guest sends data to the service
    [all...]
async-socket-connector.c 56 /* Callback to invoke on connection events. */
58 /* An opaque parameter to pass to the connection callback. */
70 /* Asynchronous I/O looper callback invoked by the connector.
73 * fd, events - Standard I/O callback parameters.
170 * callback is called, the caller has referenced passed connector object,
185 /* Invoke "on connected" callback */
194 /* Invoke "on connected" callback */
240 /* Retry connection timer callback.
253 /* Reference the connector while we're in callback. */
256 /* Invoke the callback to notify about a connection retry attempt. *
    [all...]
  /external/smack/src/org/jivesoftware/smackx/filetransfer/
OutgoingFileTransfer.java 38 private NegotiationProgress callback; field in class:OutgoingFileTransfer
135 * {@link NegotiationProgress} callback.
146 * A callback to monitor the progress of the file transfer
155 throw new IllegalArgumentException("Callback progress cannot be null.");
164 this.callback = progress;
399 if(callback != null && isUpdated) {
400 callback.statusUpdated(oldStatus, newStatus);
409 if(callback != null) {
410 callback.statusUpdated(oldStatus, status);
417 if(callback != null) {
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSCallbackData.h 49 JSCallbackData(JSC::JSObject* callback, JSDOMGlobalObject* globalObject)
50 : m_callback(globalObject->globalData(), callback)
63 JSC::JSObject* callback() { return m_callback.get(); } function in class:WebCore::JSCallbackData
JSCustomSQLStatementErrorCallback.cpp 61 // "If the error callback returns false, then move on to the next statement..."
62 // "Otherwise, the error callback did not return false, or there was no error callback"
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8CustomApplicationInstalledCallback.cpp 36 V8CustomApplicationInstalledCallback::V8CustomApplicationInstalledCallback(v8::Local<v8::Object> callback, Frame* frame)
37 : m_callback(v8::Persistent<v8::Object>::New(callback))
61 // Protect the frame until the callback returns.
V8CustomPositionCallback.cpp 38 V8CustomPositionCallback::V8CustomPositionCallback(v8::Local<v8::Object> callback, ScriptExecutionContext* context)
40 , m_callback(v8::Persistent<v8::Object>::New(callback))
73 // Protect the script context until the callback returns.
V8CustomPositionErrorCallback.cpp 38 V8CustomPositionErrorCallback::V8CustomPositionErrorCallback(v8::Local<v8::Object> callback, ScriptExecutionContext* context)
40 , m_callback(v8::Persistent<v8::Object>::New(callback))
73 // Protect the script context until the callback returns.
V8CustomSQLStatementErrorCallback.cpp 72 // Step 6: If the error callback returns false, then move on to the next
74 // the error callback did not return false, or there was no error callback.
  /external/webkit/Source/WebCore/platform/android/
PackageNotifier.cpp 39 void PackageNotifier::setOnResultAvailable(Callback callback)
41 m_onResultAvailable = callback;
  /external/webkit/Source/WebCore/storage/
Database.cpp 78 DatabaseCreationCallbackTask(PassRefPtr<Database> database, PassRefPtr<DatabaseCallback> callback)
80 , m_creationCallback(callback)
112 // If it's a new database and a creation callback was provided, reset the expected
113 // version to "" and schedule the creation callback. Because of some subtle String
258 PassRefPtr<SQLTransactionCallback> callback, PassRefPtr<SQLTransactionErrorCallback> errorCallback,
262 SQLTransaction::create(this, callback, errorCallback, successCallback, ChangeVersionWrapper::create(oldVersion, newVersion));
269 void Database::transaction(PassRefPtr<SQLTransactionCallback> callback, PassRefPtr<SQLTransactionErrorCallback> errorCallback, PassRefPtr<VoidCallback> successCallback)
271 runTransaction(callback, errorCallback, successCallback, false);
274 void Database::readTransaction(PassRefPtr<SQLTransactionCallback> callback, PassRefPtr<SQLTransactionErrorCallback> errorCallback, PassRefPtr<VoidCallback> successCallback)
276 runTransaction(callback, errorCallback, successCallback, true)
    [all...]
  /external/webkit/Source/WebKit2/Shared/
SecurityOriginData.cpp 48 void performAPICallbackWithSecurityOriginDataVector(const Vector<SecurityOriginData>& originDatas, ArrayCallback* callback)
50 if (!callback) {
67 callback->performCallbackWithReturnValue(ImmutableArray::adopt(securityOrigins).get());
  /frameworks/base/core/java/android/text/
TextWatcher.java 29 * this callback.
38 * this callback.
46 * this callback, but be careful not to get yourself into an infinite
  /frameworks/base/core/java/com/android/internal/view/menu/
SubMenuBuilder.java 70 public void setCallback(Callback callback) {
71 mParentMenu.setCallback(callback);
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardUpdateMonitor.java 77 // Callback messages
    [all...]
  /frameworks/base/telephony/java/android/telephony/
PhoneStateListener.java 172 * Callback invoked when device service state changes.
184 * Callback invoked when network signal strength changes.
198 * Callback invoked when the message-waiting indicator changes.
205 * Callback invoked when the call-forwarding indicator changes.
212 * Callback invoked when device cell location changes.
219 * Callback invoked when device call state changes.
230 * Callback invoked when connection state changes.
248 * Callback invoked when data activity state changes.
261 * Callback invoked when network signal strengths changes.
288 * Callback invoked when a observed cell info has changed
299 IPhoneStateListener callback = new IPhoneStateListener.Stub() { field in class:PhoneStateListener
    [all...]
  /frameworks/native/libs/utils/
misc.cpp 92 sysprop_change_callback callback; member in struct:android::sysprop_change_callback_info
108 info.callback = cb;
136 listeners[i].callback();
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
SubMenuBuilder.java 73 public void setCallback(Callback callback) {
74 mParentMenu.setCallback(callback);

Completed in 1489 milliseconds

<<21222324252627282930>>