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

<<11121314151617181920>>

  /frameworks/base/core/java/android/hardware/location/
IGeofenceHardware.aidl 30 int notificationResponsiveness, int unknownTimer,in IGeofenceHardwareCallback callback);
35 IGeofenceHardwareMonitorCallback callback);
37 IGeofenceHardwareMonitorCallback callback);
GeofenceHardware.java 189 * about the area specified by the geofence, the given callback will be called.
209 * long as the same callback object is used.
230 * @param callback {@link GeofenceHardwareCallback} that will be use to notify the
236 geofenceRequest, GeofenceHardwareCallback callback) {
246 getCallbackWrapper(callback));
348 * Register the callback to be notified when the state of a hardware geofence
362 * <p> The same callback object can be used to be informed of geofence transitions
366 * @param callback Callback that will be called.
370 GeofenceHardwareMonitorCallback callback) {
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
AbstractInputMethodService.java 45 implements KeyEvent.Callback {
62 public void createSession(SessionCallback callback) {
63 callback.sessionCreated(onCreateInputMethodSessionInterface());
135 public void dispatchKeyEvent(int seq, KeyEvent event, EventCallback callback) {
138 if (callback != null) {
139 callback.finishedEvent(seq, handled);
148 public void dispatchTrackballEvent(int seq, MotionEvent event, EventCallback callback) {
150 if (callback != null) {
151 callback.finishedEvent(seq, handled);
160 public void dispatchGenericMotionEvent(int seq, MotionEvent event, EventCallback callback) {
    [all...]
  /frameworks/base/core/java/com/android/internal/view/
BaseSurfaceHolder.java 34 public final ArrayList<SurfaceHolder.Callback> mCallbacks
35 = new ArrayList<SurfaceHolder.Callback>();
36 SurfaceHolder.Callback[] mGottenCallbacks;
74 public void addCallback(Callback callback) {
78 if (mCallbacks.contains(callback) == false) {
79 mCallbacks.add(callback);
84 public void removeCallback(Callback callback) {
86 mCallbacks.remove(callback);
    [all...]
IInputConnectionWrapper.java 66 IInputContextCallback callback; field in class:IInputConnectionWrapper.SomeArgs
91 public void getTextAfterCursor(int length, int flags, int seq, IInputContextCallback callback) {
92 dispatchMessage(obtainMessageIISC(DO_GET_TEXT_AFTER_CURSOR, length, flags, seq, callback));
95 public void getTextBeforeCursor(int length, int flags, int seq, IInputContextCallback callback) {
96 dispatchMessage(obtainMessageIISC(DO_GET_TEXT_BEFORE_CURSOR, length, flags, seq, callback));
99 public void getSelectedText(int flags, int seq, IInputContextCallback callback) {
100 dispatchMessage(obtainMessageISC(DO_GET_SELECTED_TEXT, flags, seq, callback));
103 public void getCursorCapsMode(int reqModes, int seq, IInputContextCallback callback) {
104 dispatchMessage(obtainMessageISC(DO_GET_CURSOR_CAPS_MODE, reqModes, seq, callback));
108 int flags, int seq, IInputContextCallback callback) {
    [all...]
  /packages/apps/Phone/src/com/android/phone/
EmergencyCallbackModeService.java 45 * Application service that inserts/removes Emergency Callback Mode notification and
46 * updates Emergency Callback Mode countdown clock in the notification
52 // Default Emergency Callback Mode timeout value
78 Log.e(LOG_TAG, "Error! Emergency Callback Mode not supported for " +
111 * Listens for Emergency Callback Mode intents
116 // Stop the service when phone exits Emergency Callback Mode
134 * Start timer notification for Emergency Callback Mode
137 // Get Emergency Callback Mode timeout value
162 * Shows notification for Emergency Callback Mode
171 // PendingIntent to launch Emergency Callback Mode Exit activity if the user select
    [all...]
INetworkQueryService.aidl 31 * request a callback through the INetworkQueryServiceCallback
33 * then just add the callback to the list of notifications
41 * underlying RIL, but it ensures that the callback is removed
  /external/chromium/net/socket/
transport_client_socket_pool_unittest.cc 7 #include "base/callback.h"
55 virtual int Connect(CompletionCallback* callback) {
91 CompletionCallback* callback) {
95 CompletionCallback* callback) {
112 virtual int Connect(CompletionCallback* callback) {
141 CompletionCallback* callback) {
146 CompletionCallback* callback) {
176 virtual int Connect(CompletionCallback* callback) {
180 &MockPendingClientSocket::DoCallback, callback), delay_ms_);
215 CompletionCallback* callback) {
483 TestCompletionCallback callback; local
499 TestCompletionCallback callback; local
513 TestCompletionCallback callback; local
626 TestCompletionCallback callback; local
635 TestCompletionCallback callback; local
654 TestCompletionCallback callback; local
846 TestCompletionCallback callback; local
901 TestCompletionCallback callback; local
943 TestCompletionCallback callback; local
988 TestCompletionCallback callback; local
1033 TestCompletionCallback callback; local
1087 TestCompletionCallback callback; local
1131 TestCompletionCallback callback; local
1164 TestCompletionCallback callback; local
1197 TestCompletionCallback callback; local
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKPage.cpp 400 void WKPageRunJavaScriptInMainFrame(WKPageRef pageRef, WKStringRef scriptRef, void* context, WKPageRunJavaScriptFunction callback)
402 toImpl(pageRef)->runJavaScriptInMainFrame(toImpl(scriptRef)->string(), ScriptValueCallback::create(context, callback));
419 void WKPageRenderTreeExternalRepresentation(WKPageRef pageRef, void* context, WKPageRenderTreeExternalRepresentationFunction callback)
421 toImpl(pageRef)->getRenderTreeExternalRepresentation(StringCallback::create(context, callback));
438 void WKPageGetSourceForFrame(WKPageRef pageRef, WKFrameRef frameRef, void* context, WKPageGetSourceForFrameFunction callback)
440 toImpl(pageRef)->getSourceForFrame(toImpl(frameRef), StringCallback::create(context, callback));
457 void WKPageGetContentsAsString(WKPageRef pageRef, void* context, WKPageGetContentsAsStringFunction callback)
459 toImpl(pageRef)->getContentsAsString(StringCallback::create(context, callback));
476 void WKPageForceRepaint(WKPageRef pageRef, void* context, WKPageForceRepaintFunction callback)
478 toImpl(pageRef)->forceRepaint(VoidCallback::create(context, callback));
515 WKPageComputePagesForPrintingFunction callback; member in struct:ComputedPagesContext
    [all...]
  /frameworks/base/core/java/android/nfc/
NfcActivityManager.java 119 // immediately get a callback for that.
207 NfcAdapter.CreateBeamUrisCallback callback) {
211 state.uriCallback = callback;
233 NfcAdapter.CreateNdefMessageCallback callback, int flags) {
237 state.ndefMessageCallback = callback;
247 NfcAdapter.OnNdefPushCompleteCallback callback) {
251 state.onNdefPushCompleteCallback = callback;
271 /** Callback from NFC service, usually on binder thread */
316 /** Callback from NFC service, usually on binder thread */
319 NfcAdapter.OnNdefPushCompleteCallback callback; local
    [all...]
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
MediaRouteProvider.java 35 * {@link #setDescriptor} to notify the currently registered {@link Callback}.
63 private Callback mCallback;
115 * Sets a callback to invoke when the provider's descriptor changes.
117 * @param callback The callback to use, or null if none.
119 public final void setCallback(Callback callback) {
121 mCallback = callback;
169 * a callback, it also provides a selector to specify the kinds of routes that
195 * by registering a {@link Callback callback} with {@link #setCallback}
    [all...]
  /external/qemu/telephony/
sysdeps_qemu.c 52 QEMUTimerCB* callback; member in struct:SysTimerRec_
108 QEMUTimerCB* callback = (QEMUTimerCB*)_callback; local
110 if (callback == NULL) { /* unsetting the timer */
116 timer->callback = callback;
122 if ( timer->callback == callback && timer->opaque == opaque )
129 timer->timer = qemu_new_timer_ms( rt_clock, callback, opaque );
130 timer->callback = callback;
157 SysChannelCallback callback; member in struct:SysChannelRec_
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
ActionBarActivityDelegateICS.java 78 * Since these methods are actually part of the window callback and not intrinsic to
81 * Window.Callback in the future won't get proxied without updating the support lib,
88 Window.Callback createWindowCallbackWrapper(Window.Callback cb) {
168 public ActionMode startSupportActionMode(ActionMode.Callback callback) {
169 if (callback == null) {
170 throw new IllegalArgumentException("ActionMode callback can not be null.");
176 context, callback);
236 class WindowCallbackWrapper implements Window.Callback {
    [all...]
  /external/chromium/net/proxy/
multi_threaded_proxy_resolver.cc 54 // Callback for when a job has completed running on the executor's thread.
131 // Returns true if this job still has a user callback. Some jobs
132 // do not have a user callback, because they were helper jobs
136 // have a non-NULL callback up until the callback is run.
160 CompletionCallback* callback = user_callback_; local
161 // Null the callback so has_user_callback() will now return false.
163 callback->Run(result);
184 CompletionCallback* callback)
185 : Job(callback ? TYPE_SET_PAC_SCRIPT : TYPE_SET_PAC_SCRIPT_INTERNAL
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
ExtensionAPI.js 48 addListener: function(callback)
50 if (typeof callback != "function")
51 throw new "addListener: callback is not a function";
54 this._listeners.push(callback);
58 removeListener: function(callback)
63 if (listeners[i] === callback) {
118 getHAR: function(callback)
127 callback(result);
129 return extensionServer.sendRequest({ command: "getHAR" }, callback && callbackWrapper);
144 getContent: function(callback)
    [all...]
  /external/bluetooth/bluedroid/hci/include/
bt_vendor_lib.h 40 * [callback]
52 * [callback]
65 * [callback]
87 * [callback]
98 * [callback]
115 * [callback]
127 * [callback]
140 * [callback]
153 * [callback]
190 /** Callback result values *
    [all...]
  /external/chromium/chrome/browser/chromeos/cros/
cryptohome_library.cc 226 const CallbackMap::iterator callback = callback_map_.find(event.async_id); local
227 if (callback == callback_map_.end()) {
231 if (callback->second)
232 callback->second->OnComplete(event.return_status, event.return_code);
233 callback_map_.erase(callback);
266 Delegate* callback) {
269 NewRunnableFunction(&DoStubCallback, callback));
282 Delegate* callback) {
285 NewRunnableFunction(&DoStubCallback, callback));
306 Delegate* callback) {
    [all...]
update_library.h 66 // Requests an update check and calls |callback| when completed.
67 virtual void RequestUpdateCheck(chromeos::UpdateCallback callback,
77 // Calls |callback| with the release track (channel). On error, calls
78 // |callback| with NULL.
79 virtual void GetReleaseTrack(chromeos::UpdateTrackCallback callback,
  /external/chromium/chrome/browser/chromeos/
user_cros_settings_provider.h 37 bool RequestTrustedAllowGuest(Task* callback);
38 bool RequestTrustedAllowNewUser(Task* callback);
39 bool RequestTrustedDataRoamingEnabled(Task* callback);
40 bool RequestTrustedShowUsersOnSignin(Task* callback);
41 bool RequestTrustedOwner(Task* callback);
  /external/chromium/chrome/browser/
gpu_data_manager.h 12 #include "base/callback.h"
58 // Add a callback.
59 void AddGpuInfoUpdateCallback(Callback0::Type* callback);
61 // Remove a callback.
63 bool RemoveGpuInfoUpdateCallback(Callback0::Type* callback);
  /external/chromium/chrome/browser/ui/webui/
history2_ui.h 50 // Callback for the "getHistory" message.
53 // Callback for the "searchHistory" message.
56 // Callback for the "removeURLsOnOneDay" message.
63 // Callback from the history system when the history list is available.
67 // Callback from the history system when visits were deleted.
history_ui.h 46 // Callback for the "getHistory" message.
49 // Callback for the "searchHistory" message.
52 // Callback for the "removeURLsOnOneDay" message.
59 // Callback from the history system when the history list is available.
63 // Callback from the history system when visits were deleted.
  /external/chromium/net/disk_cache/
file.h 55 // Performs asynchronous IO. callback will be called when the IO completes,
58 FileIOCallback* callback, bool* completed);
60 FileIOCallback* callback, bool* completed);
74 // callback, the call will be re-synchronized.
76 FileIOCallback* callback, bool* completed);
  /external/chromium/net/ftp/
ftp_transaction.h 38 // NOTE: The transaction is not responsible for deleting the callback object.
42 CompletionCallback* callback,
48 CompletionCallback* callback) = 0;
61 // NOTE: The transaction is not responsible for deleting the callback object.
65 CompletionCallback* callback) = 0;
  /external/libnfc-nxp/src/
phFriNfc_LlcpTransport_Connection.h 107 * This function switches a socket into a listening state and registers a callback on
111 * thus can trigger several times the pListen_Cb callback.
115 * \param[in] pListen_Cb The callback to be called each time the
118 * the callback.
137 * It must be used with the socket provided within the listen callback. The socket
143 * \param[in] pErr_Cb The callback to be called each time the accepted socket
145 * \param[in] pAccept_RspCb The callback to be called when the Accept operation is completed
146 * \param[in] pContext Upper layer context to be returned in the callback.
168 * It must be used with the socket provided within the listen callback. The socket
172 * \param[in] pReject_RspCb The callback to be called when the Reject operation is complete
    [all...]

Completed in 530 milliseconds

<<11121314151617181920>>