HomeSort by relevance Sort by last modified time
    Searched full:callbacks (Results 226 - 250 of 4210) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/qemu/distrib/libselinux/src/
load_policy.c 17 #include "callbacks.h"
  /frameworks/base/core/java/android/accessibilityservice/
package.html 9 receives callbacks by the system when {@link android.view.accessibility.AccessibilityEvent}s
  /frameworks/base/core/java/android/bluetooth/
IBluetoothCallback.aidl 20 * System private API for Bluetooth service callbacks.
  /frameworks/base/core/java/android/content/pm/
IPackageDataObserver.aidl 21 * API for package data change related callbacks from the Package Manager.
IPackageDeleteObserver.aidl 21 * API for deletion callbacks from the Package Manager.
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/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.
  /frameworks/base/media/java/android/media/tv/
ITvInputManagerCallback.aidl 20 * Interface to receive callbacks from ITvInputManager regardless of sessions.
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
usage_dx.dox 23 determined by calling vpx_codec_get_caps(). Callbacks are available in both
24 frame-based and slice-based variants. Frame based callbacks conform to the
26 frame has been decoded. Slice based callbacks conform to the signature of
35 slice based decoding callbacks provide substantial speed gains to the
  /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...]
  /cts/tests/JobScheduler/src/android/jobscheduler/cts/
ConstraintTest.java 35 /** Environment that notifies of JobScheduler callbacks. */
38 /** Handle for the service which receives the execution callbacks from the JobScheduler. */
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/helpers/
CameraSessionUtils.java 68 * @param handler the {@link Handler} to use for callbacks.
110 * @param handler the {@link Handler} to use for callbacks.
158 * This will verify that the correct session callbacks are called if a mocked listener is
163 * @param listener a {@link SessionListener} to use for callbacks.
166 * @param handler the {@link Handler} to call callbacks on.
198 * This will verify that the correct capture callbacks are called if a mocked listener is
203 * @param listener a {@link CaptureCallback} to use for callbacks.
206 * @param handler the {@link Handler} to call callbacks on.
  /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/base/android/library_loader/
library_loader_hooks.h 15 // Registers the callbacks that allows the entry point of the library to be
17 // the callbacks needed by the loader. Any application specific JNI bindings
  /external/chromium_org/content/child/indexed_db/
webidbcursor_impl_unittest.cc 42 WebIDBCallbacks* callbacks,
46 callbacks_.reset(callbacks);
57 WebIDBCallbacks* callbacks,
61 callbacks_.reset(callbacks);
66 WebIDBCallbacks* callbacks,
70 callbacks_.reset(callbacks);
321 scoped_ptr<WebIDBCallbacks> callbacks(new MockContinueCallbacks());
322 cursor.CachedContinue(callbacks.get());
  /external/chromium_org/content/common/gpu/
sync_point_manager.h 28 // Retires a sync point. This will call all the registered callbacks for this
49 // Protects the 2 fields below. Note: callbacks shouldn't be called with this
  /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/chromium_org/third_party/WebKit/Source/bindings/v8/
V8DOMConfiguration.cpp 81 void V8DOMConfiguration::installCallbacks(v8::Handle<v8::ObjectTemplate> prototype, v8::Handle<v8::Signature> signature, v8::PropertyAttribute attributes, const MethodConfiguration* callbacks, size_t callbackCount, v8::Isolate* isolate)
85 v8::FunctionCallback callback = callbacks[i].callback;
86 if (isMainWorld && callbacks[i].callbackForMainWorld)
87 callback = callbacks[i].callbackForMainWorld;
88 v8::Local<v8::FunctionTemplate> functionTemplate = v8::FunctionTemplate::New(isolate, callback, v8Undefined(), signature, callbacks[i].length);
90 prototype->Set(v8AtomicString(isolate, callbacks[i].name), functionTemplate, attributes);
97 const MethodConfiguration* callbacks, size_t callbackCount,
118 installCallbacks(functionDescriptor->PrototypeTemplate(), defaultSignature, static_cast<v8::PropertyAttribute>(v8::DontDelete), callbacks, callbackCount, isolate);
  /external/chromium_org/v8/src/
arguments.h 183 * The following Call functions wrap the calling of all callbacks to handle
184 * calling either the old or the new style callbacks depending on which one
186 * For old callbacks which return an empty handle, the ReturnValue is checked
188 * New style callbacks always use the return value.
256 * The following Call function wraps the calling of all callbacks to handle
257 * calling either the old or the new style callbacks depending on which one
259 * For old callbacks which return an empty handle, the ReturnValue is checked
261 * New style callbacks always use the return value.
  /external/chromium_org/v8/test/webkit/fast/js/
Promise-then-without-callbacks.js 26 description('Promise.prototype.then should work without callbacks.');
30 // then without callbacks
  /external/libselinux/src/
callbacks.c 2 * User-supplied callbacks and default implementations.
11 #include "callbacks.h"

Completed in 1674 milliseconds

1 2 3 4 5 6 7 8 91011>>