HomeSort by relevance Sort by last modified time
    Searched full:callbacks (Results 176 - 200 of 3607) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/base/core/java/android/content/pm/
IPackageInstallObserver.aidl 21 * API for installation callbacks from the Package Manager.
IPackageStatsObserver.aidl 22 * API for package data change related callbacks from the Package Manager.
  /frameworks/base/core/java/android/speech/tts/
ITextToSpeechCallback.aidl 19 * Interface for callbacks from TextToSpeechService
  /frameworks/base/core/tests/coretests/src/android/widget/
AutoCompleteTextViewCallbacks.java 49 // now check for selection callbacks. Nothing should be clicked or selected.
83 // now check for selection callbacks.
101 // now check for selection callbacks.
135 // now check for selection callbacks.
  /packages/apps/Contacts/src/com/android/contacts/list/
OnEmailAddressPickerActionListener.java 21 * Action callbacks that can be sent by a email address picker.
OnMultiplePhoneNumberPickerActionListener.java 21 * Action callbacks that can be sent by a multiple phone number picker.
OnPostalAddressPickerActionListener.java 21 * Action callbacks that can be sent by a postal address picker.
  /external/smack/src/org/jivesoftware/smack/sasl/
SASLMechanism.java 171 public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException {
172 for (int i = 0; i < callbacks.length; i++) {
173 if (callbacks[i] instanceof NameCallback) {
174 NameCallback ncb = (NameCallback)callbacks[i];
176 } else if(callbacks[i] instanceof PasswordCallback) {
177 PasswordCallback pcb = (PasswordCallback)callbacks[i];
179 } else if(callbacks[i] instanceof RealmCallback) {
180 RealmCallback rcb = (RealmCallback)callbacks[i];
182 } else if(callbacks[i] instanceof RealmChoiceCallback){
184 //RealmChoiceCallback rccb = (RealmChoiceCallback)callbacks[i];
    [all...]
  /external/bluetooth/bluedroid/btif/src/
btif_gatt.c 64 static bt_status_t btif_gatt_init( const btgatt_callbacks_t* callbacks )
66 bt_gatt_callbacks = callbacks;
  /external/chromium_org/content/child/service_worker/
service_worker_dispatcher.h 45 blink::WebServiceWorkerProvider::WebServiceWorkerCallbacks* callbacks);
49 blink::WebServiceWorkerProvider::WebServiceWorkerCallbacks* callbacks);
  /external/chromium_org/content/common/gpu/
sync_point_manager.h 28 // Retires a sync point. This will call all the registered callbacks for this
47 // Protects the 2 fields below. Note: callbacks shouldn't be called with this
  /external/chromium_org/content/renderer/media/
webcontentdecryptionmodulesession_impl.h 43 // Callbacks.
62 // Session ID is used to uniquely track this object so that CDM callbacks
  /external/chromium_org/third_party/WebKit/ManualTests/
input-starved-by-timers.html 9 var targetLatency = 10000; // Multiply timers until it takes this much to fire all their callbacks.
21 // Create more timers. Capture the current time so when callbacks are fired,
  /external/elfutils/tests/
dwfl-bug-report.c 35 static const Dwfl_Callbacks callbacks = variable
44 Dwfl *dwfl = dwfl_begin (&callbacks);
  /external/libselinux/src/
callbacks.c 2 * User-supplied callbacks and default implementations.
11 #include "callbacks.h"
  /external/oprofile/agents/jvmti/
libjvmti_oprofile.c 242 jvmtiEventCallbacks callbacks; local
292 memset(&callbacks, 0, sizeof(callbacks));
293 callbacks.CompiledMethodLoad = cb_compiled_method_load;
294 callbacks.CompiledMethodUnload = cb_compiled_method_unload;
295 callbacks.DynamicCodeGenerated = cb_dynamic_code_generated;
296 error = (*jvmti)->SetEventCallbacks(jvmti, &callbacks,
297 sizeof(callbacks));
  /frameworks/av/media/libstagefright/codecs/avc/enc/
SoftAVCEncoder.h 35 const OMX_CALLBACKTYPE *callbacks,
57 // Callbacks required by PV's encoder
  /frameworks/av/media/libstagefright/codecs/flac/enc/
SoftFlacEncoder.h 33 const OMX_CALLBACKTYPE *callbacks,
77 // FLAC encoder callbacks
  /frameworks/base/core/java/android/hardware/
ICameraService.aidl 48 int connectPro(IProCameraCallbacks callbacks, int cameraId,
54 int connectDevice(ICameraDeviceCallbacks callbacks, int cameraId,
  /frameworks/base/services/java/com/android/server/
PreferredComponent.java 53 private final Callbacks mCallbacks;
55 public interface Callbacks {
60 public PreferredComponent(Callbacks callbacks, int match, ComponentName[] set,
62 mCallbacks = callbacks;
95 public PreferredComponent(Callbacks callbacks, XmlPullParser parser)
97 mCallbacks = callbacks;
  /frameworks/support/v7/appcompat/src/android/support/v7/view/
CollapsibleActionView.java 22 * When a {@link android.view.View} implements this interface it will receive callbacks when expanded or
23 * collapsed as an action view alongside the optional, app-specified callbacks to {@link
  /hardware/libhardware/include/hardware/
bt_av.h 74 * Register the BtAv callbacks
76 bt_status_t (*init)( btav_callbacks_t* callbacks );
bt_pan.h 55 * Initialize the pan interface and register the btpan callbacks
57 bt_status_t (*init)(const btpan_callbacks_t* callbacks);
  /system/extras/libublock/include/ublock/
ublock.h 54 * Runs a loop waiting for ublock requests and calling the ops callbacks.
63 * callbacks.
  /external/chromium_org/remoting/webapp/
identity.js 34 /** @type {Array.<remoting.Identity.Callbacks>} */
52 this.pendingCallbacks_.push(new remoting.Identity.Callbacks(onOk, onError));
104 var callback = /** @type {remoting.Identity.Callbacks} */
117 var callback = /** @type {remoting.Identity.Callbacks} */
141 * Internal representation for pair of callWithToken callbacks.
148 remoting.Identity.Callbacks = function(onOk, onError) {

Completed in 328 milliseconds

1 2 3 4 5 6 78 91011>>