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

<<31323334353637383940>>

  /frameworks/volley/src/com/android/volley/
Response.java 26 /** Callback interface for delivering parsed responses. */
32 /** Callback interface for delivering error responses. */
35 * Callback method that an error has been occurred with the
  /frameworks/wilhelm/src/itf/
IDynamicInterfaceManagement.c 91 // Make a copy of these, so we can call the callback with mutex unlocked
92 slDynamicInterfaceManagementCallback callback = thiz->mCallback; local
96 // Note that the mutex is unlocked during the callback
97 if (NULL != callback) {
99 (*callback)(&thiz->mItf, context, SL_DYNAMIC_ITF_EVENT_ASYNC_TERMINATION, result, iid);
340 // Make a copy of these, so we can call the callback with mutex unlocked
341 slDynamicInterfaceManagementCallback callback = thiz->mCallback; local
345 // Note that the mutex is unlocked during the callback
346 if (NULL != callback) {
348 (*callback)(&thiz->mItf, context, SL_DYNAMIC_ITF_EVENT_ASYNC_TERMINATION, result, iid)
    [all...]
  /hardware/qcom/media/mm-core/inc/
OMX_CoreExt.h 52 /** Enable or disable a callback event. */
57 OMX_INDEXTYPE nIndex; /**< the index the callback is requested for */
58 OMX_BOOL bEnable; /**< enable (OMX_TRUE) or disable (OMX_FALSE) the callback */
  /hardware/ti/omap4xxx/domx/omx_core/inc/
OMX_CoreExt.h 59 /** Enable or disable a callback event. */
64 OMX_INDEXTYPE nIndex; /**< the index the callback is requested for */
65 OMX_BOOL bEnable; /**< enable (OMX_TRUE) or disable (OMX_FALSE) the callback */
  /packages/apps/Browser/src/com/android/browser/addbookmark/
FolderSpinner.java 26 * Special Spinner class with its own callback for when the selection is set, which
35 * Callback for knowing when the selection has been manually set. Does not
59 * Call setSelection, without firing the callback
  /packages/apps/Calendar/src/com/android/calendar/
CalendarUtils.java 132 for (Runnable callback : mTZCallbacks) {
133 if (callback != null) {
134 callback.run();
260 * query to verify that the data in preferences is correct. The callback supplied
266 * @param callback The runnable that should execute if a query returns new values
269 public String getTimeZone(Context context, Runnable callback) {
290 mTZCallbacks.add(callback);
299 * query is already in progress the callback will be added to the list
303 * @param callback The runnable that should execute if a query returns
306 public void forceDBRequery(Context context, Runnable callback) {
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
PanoramaMetadataSupport.java 44 public void getPanoramaSupport(GalleryApp app, PanoramaSupportCallback callback) {
47 callback.panoramaInfoAvailable(mMediaObject, mPanoramaMetadata.mUsePanoramaViewer,
57 mCallbacksWaiting.add(callback);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/
thread-mainloop.h 100 * The easiest way to turn the callback based operations into synchronous
101 * ones, is to simply wait for the callback to be called and continue from
106 * For the basic case, where all that is required is to wait for the callback
138 * The main function, my_drain_stream_func(), will wait for the callback to
144 * therefore verify that it was its callback that was invoked.
146 * The callback, my_drain_callback(), indicates to the main function that it
151 * but as the lock is held before the callback is invoked, you do not have to
162 * insufficient. The callback also receives some data that is desired. To
207 * The difference here compared to the basic callback is the 1 sent to
211 * The main function is then free to use the data in the callback unti
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/pulse/
thread-mainloop.h 100 * The easiest way to turn the callback based operations into synchronous
101 * ones, is to simply wait for the callback to be called and continue from
106 * For the basic case, where all that is required is to wait for the callback
138 * The main function, my_drain_stream_func(), will wait for the callback to
144 * therefore verify that it was its callback that was invoked.
146 * The callback, my_drain_callback(), indicates to the main function that it
151 * but as the lock is held before the callback is invoked, you do not have to
162 * insufficient. The callback also receives some data that is desired. To
207 * The difference here compared to the basic callback is the 1 sent to
211 * The main function is then free to use the data in the callback unti
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/pulse/
thread-mainloop.h 100 * The easiest way to turn the callback based operations into synchronous
101 * ones, is to simply wait for the callback to be called and continue from
106 * For the basic case, where all that is required is to wait for the callback
138 * The main function, my_drain_stream_func(), will wait for the callback to
144 * therefore verify that it was its callback that was invoked.
146 * The callback, my_drain_callback(), indicates to the main function that it
151 * but as the lock is held before the callback is invoked, you do not have to
162 * insufficient. The callback also receives some data that is desired. To
207 * The difference here compared to the basic callback is the 1 sent to
211 * The main function is then free to use the data in the callback unti
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
Drawable.java 81 * through the {@link Callback} interface. All clients should support this
124 private WeakReference<Callback> mCallback = null;
263 * {@link Drawable#setCallback(android.graphics.drawable.Drawable.Callback)}
267 public static interface Callback {
305 * Bind a {@link Callback} object to this Drawable. Required for clients
308 * @param cb The client's Callback implementation.
312 public final void setCallback(Callback cb) {
313 mCallback = new WeakReference<Callback>(cb);
317 * Return the current {@link Callback} implementation attached to this
320 * @return A {@link Callback} instance or null if no callback was set
341 final Callback callback = getCallback(); local
358 final Callback callback = getCallback(); local
374 final Callback callback = getCallback(); local
    [all...]
  /external/chromium/chrome/browser/automation/
automation_resource_message_filter.cc 108 // Ensure that an instance of the callback map is created.
432 const GURL& url, net::CompletionCallback* callback) {
434 static_cast<GetCookiesCompletion*>(callback);
453 cookie_info.completion_callback = callback;
475 net::CompletionCallback* callback = index->second.completion_callback; local
479 DCHECK(callback != NULL);
485 callback, cookie_store.get());
487 NOTREACHED() << "Received invalid completion callback id:"
494 net::CompletionCallback* callback, net::CookieStore* cookie_store) {
495 DCHECK(callback);
    [all...]
  /external/chromium/net/http/
http_auth_handler_negotiate_unittest.cc 225 TestCompletionCallback callback; local
230 &callback, &token));
244 TestCompletionCallback callback; local
249 &callback, &token));
263 TestCompletionCallback callback; local
268 &callback, &token));
282 TestCompletionCallback callback; local
287 &callback, &token));
301 TestCompletionCallback callback; local
305 NULL, NULL, &request_info, &callback, &token))
325 TestCompletionCallback callback; local
339 TestCompletionCallback callback; local
    [all...]
  /external/skia/legacy/src/animator/
SkScript.cpp 319 UserCallBack callBack;
320 callBack.fBoxCallBack = func;
321 commonCallBack(kBox, callBack, userStorage);
324 void SkScriptEngine::commonCallBack(CallBackType type, UserCallBack& callBack, void* userStorage) {
325 callBack.fCallBackType = type;
326 callBack.fUserStorage = userStorage;
327 *fUserCallBacks.prepend() = callBack;
483 UserCallBack callBack;
484 callBack.fFunctionCallBack = func;
485 commonCallBack(kFunction, callBack, userStorage)
    [all...]
  /external/skia/src/animator/
SkScript.cpp 319 UserCallBack callBack;
320 callBack.fBoxCallBack = func;
321 commonCallBack(kBox, callBack, userStorage);
324 void SkScriptEngine::commonCallBack(CallBackType type, UserCallBack& callBack, void* userStorage) {
325 callBack.fCallBackType = type;
326 callBack.fUserStorage = userStorage;
327 *fUserCallBacks.prepend() = callBack;
483 UserCallBack callBack;
484 callBack.fFunctionCallBack = func;
485 commonCallBack(kFunction, callBack, userStorage)
    [all...]
  /external/webkit/Source/WebCore/dom/
XMLDocumentParserLibxml2.cpp 91 PendingStartElementNSCallback* callback = new PendingStartElementNSCallback; local
93 callback->xmlLocalName = xmlStrdup(xmlLocalName);
94 callback->xmlPrefix = xmlStrdup(xmlPrefix);
95 callback->xmlURI = xmlStrdup(xmlURI);
96 callback->nb_namespaces = nb_namespaces;
97 callback->namespaces = static_cast<xmlChar**>(xmlMalloc(sizeof(xmlChar*) * nb_namespaces * 2));
99 callback->namespaces[i] = xmlStrdup(namespaces[i]);
100 callback->nb_attributes = nb_attributes;
101 callback->nb_defaulted = nb_defaulted;
102 callback->attributes = static_cast<xmlChar**>(xmlMalloc(sizeof(xmlChar*) * nb_attributes * 5))
121 PendingEndElementNSCallback* callback = new PendingEndElementNSCallback; local
128 PendingCharactersCallback* callback = new PendingCharactersCallback; local
138 PendingProcessingInstructionCallback* callback = new PendingProcessingInstructionCallback; local
148 PendingCDATABlockCallback* callback = new PendingCDATABlockCallback; local
158 PendingCommentCallback* callback = new PendingCommentCallback; local
167 PendingInternalSubsetCallback* callback = new PendingInternalSubsetCallback; local
178 PendingErrorCallback* callback = new PendingErrorCallback; local
    [all...]
  /external/chromium/third_party/libevent/
evdns.h 91 * void callback(int result, char type, int count, int ttl,
94 * evdns_resolve("www.hostname.com", 0, callback, NULL);
96 * When the lookup is complete the callback function is called. The
205 * The callback that contains the results from a lookup.
316 @param callback a callback function to invoke when the request is completed
317 @param ptr an argument to pass to the callback function
321 int evdns_resolve_ipv4(const char *name, int flags, evdns_callback_type callback, void *ptr);
329 @param callback a callback function to invoke when the request is complete
    [all...]
  /external/wpa_supplicant_8/src/p2p/
p2p.h 392 * cb_ctx - Context to use with callback functions
401 * @ctx: Callback context from cb_ctx
410 * This callback function is used to request a P2P scan or search
434 * @ctx: Callback context from cb_ctx
448 * start_listen() callback. It should be noted that the received Probe
456 * @ctx: Callback context from cb_ctx
478 * @ctx: Callback context from cb_ctx
488 * @ctx: Callback context from cb_ctx
511 * @ctx: Callback context from cb_ctx
513 * This callback can be used to stop a Listen state operation that wa
    [all...]
  /frameworks/base/core/java/android/nfc/
NfcAdapter.java 249 * A callback to be invoked when the system successfully delivers your {@link NdefMessage}
257 * <p>This callback is usually made on a binder thread (not the UI thread).
266 * A callback to be invoked when another NFC device capable of NDEF push (Android Beam)
271 * callback allows you to create a message with data that might vary based on the
280 * <p>This callback is usually made on a binder thread (not the UI thread).
291 * input from the user to complete the callback, or provide custom NDEF
610 * and/or {@link #setBeamPushUrisCallback} is called with a null callback,
626 * then set a callback using {@link #setBeamPushUrisCallback} instead
661 * Set a callback that will dynamically generate one or more {@link Uri}s
662 * to send using Android Beam (TM). Every Uri the callback provide
    [all...]
  /external/chromium/base/threading/
worker_pool_win.cc 14 DWORD CALLBACK WorkItemCallback(void* param) {
  /external/chromium/chrome/browser/
browsing_data_appcache_helper.cc 21 void BrowsingDataAppCacheHelper::StartFetching(Callback0::Type* callback) {
24 DCHECK(callback);
27 completion_callback_.reset(callback);
29 this, &BrowsingDataAppCacheHelper::StartFetching, callback));
browsing_data_helper_browsertest.h 33 void callback(const std::vector<T>& info) { function in class:BrowsingDataHelperCallback
  /external/chromium/chrome/browser/download/
download_safe_browsing_client.h 9 #include "base/callback.h"
46 void CheckDownloadUrl(DownloadCreateInfo* info, UrlDoneCallback* callback);
47 void CheckDownloadHash(const std::string& hash, HashDoneCallback* callback);
55 // Callback interfaces for SafeBrowsingService::Client.
  /external/chromium/chrome/browser/extensions/
extension_history_api.h 103 // Callback for the history function to provide results.
115 // Callback for the history function to provide results.
131 // Callback for the history service to acknowledge deletion.
147 // Callback for the history service to acknowledge deletion.
  /external/chromium/chrome/browser/geolocation/
access_token_store_browsertest.cc 45 AccessTokenStore::LoadAccessTokensCallbackType* callback) {
49 (*store)->LoadAccessTokens(consumer, callback);
54 NOTREACHED() << "This request should have been canceled before callback";
107 << "Callback from token factory should be from the same thread as the "

Completed in 1195 milliseconds

<<31323334353637383940>>