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

<<31323334353637383940>>

  /external/mdnsresponder/mDNSShared/
dns_sd.h 158 * regardless of the function or callback being used. For any given function or callback,
161 * and callback. In some cases, for a particular call, it may be that no flags are currently
174 /* MoreComing indicates to a callback that at least one more result is
192 * conjunction with "Add". An enumeration callback with the "Add"
201 * flag set, name conflicts will result in a callback. The NoAutorename flag
297 * but not necessarily more results for this particular callback function.
298 * The implication of this for client programmers is that when a callback
301 * that its UI needs to be updated. Then, later when a callback is eventually
304 * updating, not just the UI elements related to the particular callback
    [all...]
  /external/bluetooth/bluedroid/stack/avct/
avct_l2c.c 37 /* callback function declarations */
47 /* L2CAP callback function structure */
97 ** Description This is the L2CAP connect indication callback function.
170 ** Description This is the L2CAP connect confirm callback function.
231 ** Description This is the L2CAP config confirm callback function.
281 ** Description This is the L2CAP config indication callback function.
331 ** Description This is the L2CAP disconnect indication callback function.
361 ** Description This is the L2CAP disconnect confirm callback function.
390 ** Description This is the L2CAP congestion indication callback function.
412 ** Description This is the L2CAP data indication callback function
    [all...]
  /external/bluetooth/bluedroid/stack/avdt/
avdt_l2c.c 37 /* callback function declarations */
47 /* L2CAP callback function structure */
164 ** Description This is the L2CAP connect indication callback function.
268 ** Description This is the L2CAP connect confirm callback function.
340 ** Description This is the L2CAP config confirm callback function.
382 ** Description This is the L2CAP config indication callback function.
430 ** Description This is the L2CAP disconnect indication callback function.
459 ** Description This is the L2CAP disconnect confirm callback function.
482 ** Description This is the L2CAP congestion indication callback function.
503 ** Description This is the L2CAP data indication callback function
    [all...]
  /external/bluetooth/bluedroid/stack/mcap/
mca_l2c.c 34 /* L2CAP callback function structure */
143 ** Description This is the L2CAP connect indication callback function.
218 ** Description This is the L2CAP connect indication callback function.
285 ** Description This is the L2CAP connect confirm callback function.
355 ** Description This is the L2CAP config confirm callback function.
397 ** Description This is the L2CAP config indication callback function.
450 ** Description This is the L2CAP disconnect indication callback function.
483 ** Description This is the L2CAP disconnect confirm callback function.
508 ** Description This is the L2CAP congestion indication callback function.
529 ** Description This is the L2CAP data indication callback function
    [all...]
  /external/libnfc-nxp/src/
phFriNfc_LlcpTransport_Connectionless.c 97 /* call the recv callback */
137 /* Call the send callback */
228 * \param[in] pSend_RspCb The callback to be called when the
231 * the callback.
252 /* Store send callback and context*/
289 * This function is the same as phLibNfc_Llcp_Recv, except that the callback includes
295 * \param[in] pRecv_RspCb The callback to be called when the
298 * the callback.
344 /* call the recv callback */
352 /* Store the callback and context*
    [all...]
phLibNfc_discovery.c 63 /*Remote device Presence check callback*/
100 /* Application has called discovery before receiving this callback,
189 /* Copy discovery callback and its context */
294 /* Mark General callback pending status as TRUE*/
309 * Response Callback for Remote device Presence Check.
324 /* Mark general callback pending status as FALSE*/
354 /* call the upper layer callback */
  /external/protobuf/python/google/protobuf/
service.py 104 service.CallMethod(method, request, callback)
160 canceled, the "done" callback will still be called and the RpcController
183 final "done" callback.
187 def NotifyOnCancel(self, callback):
188 """Sets a callback to invoke on cancel.
190 Asks that the given callback be called when the RPC is canceled. The
191 callback will always be called exactly once. If the RPC completes without
192 being canceled, the callback will be called after completion. If the RPC
193 has already been canceled when NotifyOnCancel() is called, the callback
214 service.MyMethod(controller, request, callback)
    [all...]
  /external/qemu/android/
looper-generic.c 38 LoopTimerFunc callback; member in struct:GLoopTimer
120 LoopTimerFunc callback,
128 tt->callback = callback;
148 LoopIoFunc callback; member in struct:GLoopIo
234 glooper_io_init(Looper* looper, LoopIo* user, int fd, LoopIoFunc callback, void* opaque)
241 io->callback = callback;
445 timer->callback(timer->opaque);
453 io->callback(io->opaque,io->fd,io->ready)
    [all...]
async-socket.c 79 /* I/O callback for this I/O. */
118 * io_cb - Callback for this reader / writer.
226 * io_cb - Reader's callback.
249 * io_cb - Writer's callback.
280 /* Reference while in callback. */
360 /* Connection callback for this socket. */
637 /* We ignore action returned from the cancellation callback, since we're
653 /* We ignore action returned from the cancellation callback, since we're
739 /* A callback that is invoked when socket gets disconnected.
746 /* Save error to restore it for the client's callback. *
    [all...]
  /external/qemu/distrib/sdl-1.2.15/docs/html/
sdlopenaudio.html 141 data passed to the callback function will be guaranteed to be in the
226 >callback</I
243 > in your code. The callback prototype is:
246 >void callback(void *userdata, Uint8 *stream, int len);</PRE
287 >callback</TT
412 >callback</I
430 >/* Prototype of our callback function */
455 /* Our callback function */
456 desired-&#62;callback=my_audio_callback;
470 /* Prepare callback for playing *
    [all...]
  /frameworks/base/core/java/android/speech/
RecognitionService.java 60 * The current callback of an application that invoked the
61 * {@link RecognitionService#onStartListening(Intent, Callback)} method
63 private Callback mCurrentCallback = null;
97 mCurrentCallback = new Callback(listener);
181 protected abstract void onStartListening(Intent recognizerIntent, Callback listener);
186 protected abstract void onCancel(Callback listener);
193 protected abstract void onStopListening(Callback listener);
212 * {@link RecognitionService#onStartListening(Intent, Callback)} method. Recognizers may call
215 public class Callback {
218 private Callback(IRecognitionListener listener)
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountServerBaseFragment.java 48 * Activity callback during onAttach
61 protected Callback mCallback = EmptyCallback.INSTANCE;
79 * Callback interface that owning activities must provide
81 public interface Callback {
104 private static class EmptyCallback implements Callback {
105 public static final Callback INSTANCE = new EmptyCallback();
220 public void setCallback(Callback callback) {
221 mCallback = (callback == null) ? EmptyCallback.INSTANCE : callback;
    [all...]
  /external/bluetooth/bluedroid/stack/include/
pan_api.h 90 ** Callback Function Prototypes
109 /* Data received indication callback prototype. Parameters are
130 /* Data buffer received indication callback prototype. Parameters are
149 /* Flow control callback for TX data. Parameters are
156 /* Filters received indication callback prototype. Parameters are
177 /* Multicast Filters received indication callback prototype. Parameters are
203 tPAN_CONN_STATE_CB *pan_conn_state_cb; /* Connection state callback */
204 tPAN_BRIDGE_REQ_CB *pan_bridge_req_cb; /* Bridge request callback */
205 tPAN_DATA_IND_CB *pan_data_ind_cb; /* Data indication callback */
206 tPAN_DATA_BUF_IND_CB *pan_data_buf_ind_cb; /* Data buffer indication callback */
    [all...]
  /external/chromium/chrome/browser/sync/glue/
data_type_manager_impl2_unittest.cc 51 ACTION_P2(InvokeCallbackPointer, callback, argument) {
52 callback->Run(argument, FROM_HERE);
53 delete callback;
330 // Save the callback here so we can interrupt startup.
331 DataTypeController::StartCallback* callback; local
337 WillOnce(SaveArg<0>(&callback));
366 callback->Run(DataTypeController::OK, FROM_HERE);
367 delete callback;
402 // Save the callback here so we can interrupt startup.
403 DataTypeController::StartCallback* callback; local
    [all...]
  /external/chromium/third_party/libevent/
event.3 258 can provide its callback function with a bitwise-OR of more than one triggered
363 to a callback function.
367 will execute the callback function to process received signals.
368 The callback returns 1 when no events are registered any more.
382 However, it schedules a callback to be called exactly once and does not
434 is typically invoked from this event's callback. This behavior is analogous
510 The read and write callback have the following form:
513 The error callback has the following form:
521 Both the read and the write callback may be NULL.
522 The error callback has to be always provided
    [all...]
  /frameworks/av/include/media/nbaio/
NBAIO.h 173 // via Callback function that the sink will call as many times as needed to consume data.
177 // block Number of frames per block, that is a suggested value for 'count' in each callback.
189 // The 'via' callback is called by the data sink as follows:
192 // buffer Non-NULL buffer owned by sink that callback should fill in with data,
194 // count Maximum number of frames to transfer during this callback.
196 // > 0 Number of frames successfully transferred during this callback prior to first error.
198 // < 0 status_t error occurred prior to the first frame transfer during this callback.
272 // via Callback function that the source will call as many times as needed to provide data.
278 // block Number of frames per block, that is a suggested value for 'count' in each callback.
290 // The 'via' callback is called by the data source as follows
    [all...]
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
RegisteredMediaRouteProvider.java 371 public boolean onControlRequest(Intent intent, ControlRequestCallback callback) {
373 return mConnection.sendControlRequest(mControllerId, intent, callback);
441 ControlRequestCallback callback = mPendingCallbacks.get(requestId); local
442 if (callback != null) {
444 callback.onError(null, null);
478 ControlRequestCallback callback = mPendingCallbacks.get(requestId); local
479 if (callback != null) {
481 callback.onResult(data);
488 ControlRequestCallback callback = mPendingCallbacks.get(requestId); local
489 if (callback != null)
    [all...]
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
SampleMediaRouteProvider.java 204 public boolean onControlRequest(Intent intent, ControlRequestCallback callback) {
228 if (callback != null) {
229 callback.onError("Simulated error. No hats allowed!", null);
235 if (callback != null) {
244 callback.onResult(result);
254 if (callback != null) {
255 callback.onResult(data);
  /external/bluetooth/bluedroid/stack/avrc/
avrc_sdp.c 54 ** Description This is the SDP callback function used by A2D_FindService.
60 ** application callback function.
72 /* return info from sdp record in app callback function */
86 ** The callback function will be executed when service discovery
89 ** the callback before it makes another call to the function.
93 ** can deallocate the memory after the callback function has
104 ** p_cback: Pointer to the callback function.
  /external/chromium/chrome/browser/policy/
device_policy_cache.cc 29 // through a callback.
30 class StorePolicyOperation : public chromeos::SignedSettingsHelper::Callback,
33 typedef Callback1<chromeos::SignedSettings::ReturnCode>::Type Callback;
37 Callback* callback)
40 callback_(callback) {
90 scoped_ptr<Callback> callback_;
device_policy_cache_unittest.cc 32 SignedSettingsHelper::Callback*));
33 MOCK_METHOD1(StartRetrievePolicyOp, void(SignedSettingsHelper::Callback*));
34 MOCK_METHOD1(CancelCallback, void(SignedSettingsHelper::Callback*));
39 SignedSettingsHelper::Callback*));
41 SignedSettingsHelper::Callback*));
44 SignedSettingsHelper::Callback*));
46 SignedSettingsHelper::Callback*));
  /external/chromium/net/disk_cache/
mem_backend_impl.cc 135 CompletionCallback* callback) {
143 CompletionCallback* callback) {
151 CompletionCallback* callback) {
158 int MemBackendImpl::DoomAllEntries(CompletionCallback* callback) {
167 CompletionCallback* callback) {
175 CompletionCallback* callback) {
183 CompletionCallback* callback) {
  /external/chromium/net/url_request/
view_cache_helper.cc 96 // Cancel any pending entry callback.
103 CompletionCallback* callback) {
104 return GetInfoHTML(key, context, std::string(), out, callback);
110 CompletionCallback* callback) {
111 return GetInfoHTML(std::string(), context, url_prefix, out, callback);
120 CompletionCallback* callback) {
131 callback_ = callback;
  /external/webkit/Source/WebCore/inspector/front-end/
ResourceTreeModel.js 170 forAllResources: function(callback)
172 this._callForFrameResources(0, callback);
197 function callback(resource)
201 this.forAllResources(callback);
249 _callForFrameResources: function(frameId, callback)
254 if (callback(resources[url]))
260 if (this._callForFrameResources(frames[i].id, callback))
  /frameworks/base/core/java/android/bluetooth/
BluetoothManager.java 187 * The callback is used to deliver results to Caller, such as connection status as well
192 * @param callback GATT server callback handler that will receive asynchronous callbacks.
196 BluetoothGattServerCallback callback) {
197 if (context == null || callback == null) {
198 throw new IllegalArgumentException("null parameter: " + context + " " + callback);
212 Boolean regStatus = mGattServer.registerCallback(callback);

Completed in 662 milliseconds

<<31323334353637383940>>