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

<<21222324252627282930>>

  /frameworks/support/v7/mediarouter/jellybean-mr1/android/support/v7/media/
MediaRouterJellybeanMr1.java 33 public static Object createCallback(Callback callback) {
34 return new CallbackProxy<Callback>(callback);
47 public static interface Callback extends MediaRouterJellybean.Callback {
164 static class CallbackProxy<T extends Callback>
166 public CallbackProxy(T callback) {
167 super(callback);
  /frameworks/wilhelm/src/itf/
IMIDIMessage.c 39 slMetaEventCallback callback, void *pContext)
45 thiz->mMetaEventCallback = callback;
55 slMIDIMessageCallback callback, void *pContext)
61 thiz->mMessageCallback = callback;
  /hardware/invensense/libsensors_iio/software/core/mllite/
start_manager.c 45 /** Removes a callback from start notification
68 /** Register a callback to receive when inv_start_mpl() is called.
69 * @param[in] start_cb Function callback that will be called when inv_start_mpl() is
83 /** Callback all the functions that want to be notified when inv_start_mpl() was
  /hardware/libhardware/include/hardware/
bt_hl.h 72 /** Callback for application registration status.
77 /** Callback for channel connection state change.
83 /** BT-HL callback structure. */
115 /** Close the Bthl callback **/
  /packages/apps/Phone/src/com/android/phone/
NetworkQueryService.java 51 // error statuses that will be retured in the callback.
74 * Local handler to receive the network query compete callback
92 * List of callback objects, also used to synchronize access to
107 * callback object in the queue to be notified upon request
112 // register the callback to the list of callbacks.
115 if (DBG) log("registering callback " + cb.getClass().toString());
142 // currently we just unregister the callback, since there is
150 if (DBG) log("unregistering callback " + cb.getClass().toString());
183 * Broadcast the results from the query to all registered callback
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothEventManager.java 112 void registerCallback(BluetoothCallback callback) {
114 mCallbacks.add(callback);
119 void unregisterCallback(BluetoothCallback callback) {
121 mCallbacks.remove(callback);
162 // send callback to update UI and possibly start scanning
164 for (BluetoothCallback callback : mCallbacks) {
165 callback.onBluetoothStateChanged(state);
182 for (BluetoothCallback callback : mCallbacks) {
183 callback.onScanningStateChanged(mStarted);
204 // callback to UI to create Preference for new devic
    [all...]
  /external/bluetooth/bluedroid/stack/include/
avrc_api.h 132 /* This callback function returns service discovery information to the
134 * implementation of this callback function must copy the p_service_name
136 * to remain after the callback function exits. */
140 /* This is the control callback function. This function passes events
146 /* This is the message callback function. It is executed when AVCTP has
148 * callback function must copy the tAVRC_MSG structure passed to it as it
149 * is not guaranteed to remain after the callback function exits. */
155 tAVRC_CTRL_CBACK *p_ctrl_cback; /* pointer to application control callback */
156 tAVRC_MSG_CBACK *p_msg_cback; /* pointer to application message callback */
214 ** The callback function will be executed when service discover
    [all...]
l2c_api.h 178 ** Callback Functions Prototypes
181 /* Connection indication callback prototype. Parameters are
190 /* Connection confirmation callback prototype. Parameters are
197 /* Connection pending callback prototype. Parameters are
203 /* Configuration indication callback prototype. Parameters are
210 /* Configuration confirm callback prototype. Parameters are
217 /* Disconnect indication callback prototype. Parameters are
224 /* Disconnect confirm callback prototype. Parameters are
231 /* QOS Violation indication callback prototype. Parameters are
237 /* Data received indication callback prototype. Parameters ar
    [all...]
  /external/chromium/base/win/
pe_image.cc 23 PEImage::EnumImportsFunction callback; member in struct:base::win::EnumAllImportsStorage
46 // Callback used to enumerate imports. See EnumImportChunksFunction.
53 return image.EnumOneImportChunk(storage.callback, module, name_table, iat,
57 // Callback used to enumerate delay imports. See EnumDelayImportChunksFunction.
66 return image.EnumOneDelayImportChunk(storage.callback, delay_descriptor,
239 bool PEImage::EnumSections(EnumSectionsFunction callback, PVOID cookie) const {
248 if (!callback(*this, section, section_start, size, cookie))
255 bool PEImage::EnumExports(EnumExportsFunction callback, PVOID cookie) const {
301 if (!callback(*this, ordinal_base + count, hint, name, func, forward,
309 bool PEImage::EnumRelocs(EnumRelocsFunction callback, PVOID cookie) const
    [all...]
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
MediaRouter.java 73 * Flag for {@link #addCallback}: Actively scan for routes while this callback
98 * When this flag is specified, the callback will be invoked for events that affect any
99 * route event if they do not match the callback's associated media route selector.
106 * callback is registered.
115 * Applications should typically add a callback using this flag in the
322 * Registers a callback to discover routes that match the selector and to receive
326 * {@link #addCallback(MediaRouteSelector, Callback, int)} without flags.
330 * callback would like to discover.
331 * @param callback The callback to add
1464 CallbackRecord callback = router.mCallbackRecords.get(j); local
1882 final MediaRouter.Callback callback = record.mCallback; local
    [all...]
  /external/mdnsresponder/mDNSShared/
dnssd_clientshim.c 20 * function, and when mDNSCore calls the shim's callback, we call through to the client's callback.
54 DNSServiceRegisterReply callback; member in struct:__anon12251
66 DNSServiceBrowseReply callback; member in struct:__anon12252
74 DNSServiceResolveReply callback; member in struct:__anon12253
85 DNSServiceQueryRecordReply callback; member in struct:__anon12254
122 DNSServiceDomainEnumReply callback,
129 (void)callback; // Unused
185 if (x->callback)
186 x->callback((DNSServiceRef)x, 0, result, namestr, typestr, domstr, x->context)
    [all...]
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/
Sasl3Test.java 29 import javax.security.auth.callback.Callback;
30 import javax.security.auth.callback.CallbackHandler;
31 import javax.security.auth.callback.NameCallback;
32 import javax.security.auth.callback.PasswordCallback;
33 import javax.security.auth.callback.TextOutputCallback;
34 import javax.security.auth.callback.UnsupportedCallbackException;
320 throw new SaslException("Incorrect callback handlere", e);
322 throw new SaslException("Incorrect callback handlere", e);
388 public void handle(Callback[] callbacks) throws IOException
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
client_side_detection_service.h 26 #include "base/callback.h"
73 // on disk. If there was an error the callback is called and the
75 // ClientSideDetectionService takes ownership of the |callback|.
76 // The callback is always called after GetModelFile() returns and on the
78 void GetModelFile(OpenModelDoneCallback* callback);
82 // takes ownership of the |verdict| as well as the |callback| and calls the
83 // the callback once the result has come back from the server or if an error
85 // always be false. The callback is always called after
90 ClientReportPhishingRequestCallback* callback);
163 // Callback that is invoked once the attempt to create the mode
    [all...]
  /external/chromium/net/udp/
udp_socket_unittest.cc 32 TestCompletionCallback callback; local
35 &callback);
37 rv = callback.WaitForResult();
55 TestCompletionCallback callback; local
65 address, &callback);
67 rv = callback.WaitForResult();
77 TestCompletionCallback callback; local
79 int rv = socket->Read(buffer_, kMaxRead, &callback);
81 rv = callback.WaitForResult();
90 TestCompletionCallback callback; local
307 TestCompletionCallback callback; local
    [all...]
  /external/protobuf/java/src/test/java/com/google/protobuf/
ServiceTest.java 178 RpcCallback<Message> callback = new RpcCallback<Message>() { local
185 RpcUtil.specializeCallback(callback);
193 service.callMethod(fooMethod, controller, request, callback);
208 RpcCallback<Message> callback = new RpcCallback<Message>() { local
274 * matches a callback if calling that callback causes c to be called.
275 * In other words, c wraps the given callback.
278 MockCallback<?> callback) {
279 EasyMock.reportMatcher(new WrapsCallback(callback));
296 private MockCallback<?> callback; field in class:ServiceTest.WrapsCallback
    [all...]
  /external/chromium/chrome/browser/automation/
automation_resource_message_filter.h 110 // callback passed in is notified on success or failure asynchronously.
113 net::CompletionCallback* callback);
117 net::CompletionCallback* callback);
122 // callback which reads the cookie from the store. The cookie value is reset
123 // after the callback finishes executing.
142 // Helper function to execute the GetCookies completion callback with the
146 const std::string& cookies, net::CompletionCallback* callback,
203 // Map of completion callback id to CookieCompletionInfo, which contains the
204 // actual callback which is invoked on successful retrieval of cookies from
211 // Contains the id of the next completion callback. This is passed to the th
    [all...]
  /external/flac/include/FLAC/
callback.h 38 /** \file include/FLAC/callback.h
48 /** \defgroup flac_callbacks FLAC/callback.h: I/O callback structures
55 * The purpose of the I/O callback functions is to create a common way
66 * The callback function prototypes are similar (but not identical) to the
90 /** Signature for the read callback.
103 /** Signature for the write callback.
116 /** Signature for the seek callback.
129 /** Signature for the tell callback.
140 /** Signature for the EOF callback
    [all...]
  /external/libnfc-nxp/src/
phOsalNfc_Timer.h 50 // nfc_osal_def_call_t pDeferedCall;/**< pointer to Deferred callback */
72 * \brief Timer callback interface which will be called once registered timer
74 * \param[in] TimerId Timer Id for which callback is called.
84 * and timer callback.
90 ppCallBck_t pCallBck;/**< pointer to Timer Callback*/
91 void* pContext; /**< Timer Callback context*/
125 * timer stops and restarts with the new timeout value and new callback function
128 * \note The old timeout and callback reference are not valid any more if timer
136 * \param[in] Application_callback Application Callback interface to be called
158 * This API allows to stop running timers. In case the timer is stopped, its callback will not b
    [all...]
phLibNfc.h 392 *\brief Response callback for connect request.
394 * Callback type used to indicate a Connect request Successful or Failure indication to
404 * \param[in] status Status of the response callback.
421 *\brief Response callback for disconnect request.
423 * Callback type used to provide a disconnect Success or Failure indication to
428 * \param[in] status Status of the response callback.
441 *\brief Response callback for IOCTL request.
443 * Callback type to inform success or failure of the Ioctl request
449 * \param[in] status Status of the response callback.
472 *\brief Response callback for Transceive request
    [all...]
  /external/chromium/chrome/browser/
favicon_helper.cc 11 #include "base/callback.h"
53 : callback(NULL),
59 ImageDownloadCallback* callback,
63 callback(callback),
82 if (i->second.callback) {
83 i->second.callback->Run(i->first, true, empty_image);
109 ImageDownloadCallback* callback) {
110 DCHECK(callback); // Must provide a callback
    [all...]
  /frameworks/av/include/media/
AudioRecord.h 42 /* Events used by AudioRecord callback function (callback_t).
73 /* As a convenience, if a callback is supplied, a handler thread
75 * invokes the callback when a new buffer becomes ready or various conditions occur.
79 * user: Pointer to context for use by the callback receiver.
81 * - EVENT_MORE_DATA: pointer to AudioRecord::Buffer struct. The callback must not read
126 * cbf: Callback function. If not null, this function is called periodically
128 * user: Context for use by the callback receiver.
129 * notificationFrames: The callback function is called each time notificationFrames PCM
194 * make it active. If set, the callback will start being called.
201 /* Stop a track. If set, the callback will cease being called an
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
AuditRules.js 72 doRun: function(resources, result, callback)
96 return callback(null);
98 callback(result);
128 doRun: function(resources, result, callback)
144 return callback(null);
147 callback(result);
174 doRun: function(resources, result, callback)
190 return callback(null);
193 callback(result);
210 doRun: function(resources, result, callback)
    [all...]
  /cts/tests/tests/nativeopengl/src/com/android/opengl/cts/
GLTestActivity.java 31 private SurfaceHolder.Callback mHolderCallback = new SurfaceHolder.Callback() {
  /dalvik/libdex/
DexDebugInfo.h 27 * Callback for "new position table entry".
33 * Callback for "new locals table entry". "signature" is an empty string
  /development/samples/ApiDemos/src/com/example/android/apis/app/
IRemoteService.aidl 28 * This shows how to do so, by registering a callback interface with
34 * Remove a previously registered callback interface.

Completed in 792 milliseconds

<<21222324252627282930>>