Searched refs:callbacks (Results 26 - 50 of 182) sorted by relevance

12345678

/frameworks/av/media/libstagefright/codecs/amrnb/enc/
H A DSoftAMRNBEncoder.h28 const OMX_CALLBACKTYPE *callbacks,
/frameworks/av/media/libstagefright/codecs/amrwbenc/
H A DSoftAMRWBEncoder.h33 const OMX_CALLBACKTYPE *callbacks,
/frameworks/av/media/libstagefright/codecs/g711/dec/
H A DSoftG711.h27 const OMX_CALLBACKTYPE *callbacks,
/frameworks/av/media/libstagefright/codecs/gsm/dec/
H A DSoftGSM.h31 const OMX_CALLBACKTYPE *callbacks,
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/
H A DSoftMPEG4.h33 const OMX_CALLBACKTYPE *callbacks,
/frameworks/av/media/libstagefright/codecs/on2/dec/
H A DSoftVPX.h33 const OMX_CALLBACKTYPE *callbacks,
/frameworks/av/media/libstagefright/codecs/on2/enc/
H A DSoftVP8Encoder.h41 const OMX_CALLBACKTYPE *callbacks,
H A DSoftVP9Encoder.h43 const OMX_CALLBACKTYPE *callbacks,
/frameworks/av/media/libstagefright/codecs/raw/
H A DSoftRaw.h29 const OMX_CALLBACKTYPE *callbacks,
/frameworks/base/core/java/android/app/
H A DFragmentController.java51 public static final FragmentController createController(FragmentHostCallback<?> callbacks) { argument
52 return new FragmentController(callbacks);
55 private FragmentController(FragmentHostCallback<?> callbacks) { argument
56 mHost = callbacks;
/frameworks/base/services/print/java/com/android/server/print/
H A DRemotePrintServiceRecommendationService.java130 * @param callbacks The callbacks to call by the service
134 @NonNull RemotePrintServiceRecommendationServiceCallbacks callbacks) {
136 mConnection = new Connection(callbacks);
164 Log.e(LOG_TAG, "Could not unregister callbacks", e);
193 public Connection(@NonNull RemotePrintServiceRecommendationServiceCallbacks callbacks) { argument
194 mCallbacks = callbacks;
221 Log.e(LOG_TAG, "Could not register callbacks", e);
132 RemotePrintServiceRecommendationService(@onNull Context context, @NonNull UserHandle userHandle, @NonNull RemotePrintServiceRecommendationServiceCallbacks callbacks) argument
/frameworks/base/tools/bit/
H A Dadb.h39 const string& className, InstrumentationCallbacks* callbacks);
/frameworks/support/fragment/src/main/java/androidx/fragment/app/
H A DFragmentController.java48 public static FragmentController createController(FragmentHostCallback<?> callbacks) { argument
49 return new FragmentController(callbacks);
52 private FragmentController(FragmentHostCallback<?> callbacks) { argument
53 mHost = callbacks;
/frameworks/av/camera/ndk/include/camera/
H A DNdkCameraCaptureSession.h450 * @param callbacks the {@link ACameraCaptureSession_captureCallbacks} to be associated this capture
472 /*optional*/ACameraCaptureSession_captureCallbacks* callbacks,
504 * @param callbacks the {@link ACameraCaptureSession_captureCallbacks} to be associated with this
505 * capture sequence. No capture callback will be fired if callbacks is set to NULL.
526 /*optional*/ACameraCaptureSession_captureCallbacks* callbacks,
560 * callbacks. If a repeating request list is set, it will be cleared.</p>
H A DNdkCameraDevice.h93 * Camera device state callbacks to be used in {@link ACameraDevice_StateCallbacks}.
102 * Camera device error state callbacks to be used in {@link ACameraDevice_StateCallbacks}.
145 * <p>There may still be capture completion or camera stream callbacks that will be called
648 * @param callbacks the {@link ACameraCaptureSession_stateCallbacks capture session state callbacks}.
655 * <li>{@link ACAMERA_ERROR_INVALID_PARAMETER} if any of device, outputs, callbacks or
665 const ACameraCaptureSession_stateCallbacks* callbacks,
739 * @param callbacks the {@link ACameraCaptureSession_stateCallbacks}
740 * capture session state callbacks.
747 * <li>{@link ACAMERA_ERROR_INVALID_PARAMETER} if any of device, outputs, callbacks o
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DPasspointObjectFactory.java42 * @param callbacks Instance of {@link PasspointEventHandler.Callbacks}
46 PasspointEventHandler.Callbacks callbacks) {
47 return new PasspointEventHandler(wifiNative, callbacks);
45 makePasspointEventHandler(WifiNative wifiNative, PasspointEventHandler.Callbacks callbacks) argument
/frameworks/support/content/src/main/java/androidx/contentpager/content/
H A DLoaderQueryRunner.java54 LoaderCallbacks callbacks = new LoaderCallbacks<Cursor>() {
81 mLoaderMgr.restartLoader(query.getId(), null, callbacks);
/frameworks/data-binding/baseLibrary/src/main/java/android/databinding/
H A DCallbackRegistry.java22 * A utility for storing and notifying callbacks. This class supports reentrant modification
23 * of the callbacks during notification without adversely disrupting notifications.
24 * A common pattern for callbacks is to receive a notification and then remove
33 * <p>This class supports only callbacks with at most three parameters.
53 * For a small number of callbacks, no additional array of objects needs to
59 * Bit flags for the remaining callbacks that are removed during notification.
60 * When there are more than 64 callbacks and one is marked for removal, a dynamic
61 * array of bits are allocated for the callbacks.
80 * Notify all callbacks.
111 * Notify up to the first Long.SIZE callbacks tha
328 copyCallbacks(List<C> callbacks) argument
[all...]
/frameworks/support/media/src/main/java/androidx/media/
H A DMediaBrowserServiceCompat.java219 connection.callbacks.onConnect(connection.root.getRootId(), token,
657 public final ServiceCallbacks callbacks; field in class:MediaBrowserServiceCompat.ConnectionRecord
668 this.callbacks = callback;
676 mConnections.remove(callbacks.asBinder());
832 final ServiceCallbacks callbacks) {
842 final IBinder b = callbacks.asBinder();
848 rootHints, callbacks);
858 callbacks.onConnectFailed();
868 callbacks.onConnect(connection.root.getRootId(),
881 public void disconnect(final ServiceCallbacks callbacks) { argument
831 connect(final String pkg, final int pid, final int uid, final Bundle rootHints, final ServiceCallbacks callbacks) argument
897 addSubscription(final String id, final IBinder token, final Bundle options, final ServiceCallbacks callbacks) argument
917 removeSubscription(final String id, final IBinder token, final ServiceCallbacks callbacks) argument
939 getMediaItem(final String mediaId, final ResultReceiver receiver, final ServiceCallbacks callbacks) argument
961 registerCallbacks(final ServiceCallbacks callbacks, final String pkg, final int pid, final int uid, final Bundle rootHints) argument
983 unregisterCallbacks(final ServiceCallbacks callbacks) argument
996 search(final String query, final Bundle extras, final ResultReceiver receiver, final ServiceCallbacks callbacks) argument
1017 sendCustomAction(final String action, final Bundle extras, final ResultReceiver receiver, final ServiceCallbacks callbacks) argument
1052 ServiceCallbacksCompat(Messenger callbacks) argument
[all...]
/frameworks/av/camera/tests/
H A DCameraBinderTests.cpp352 sp<TestCameraDeviceCallbacks> callbacks(new TestCameraDeviceCallbacks());
354 res = service->connectDevice(callbacks, cameraId, String16("meeeeeeeee!"),
359 EXPECT_FALSE(callbacks->hadError());
365 /*enabled*/true, callbacks);
370 /*enabled*/false, callbacks);
392 sp<TestCameraDeviceCallbacks> callbacks(new TestCameraDeviceCallbacks());
396 binder::Status res = service->connectDevice(callbacks, deviceId, String16("meeeeeeeee!"),
400 auto p = std::make_pair(callbacks, device);
460 sp<TestCameraDeviceCallbacks> callbacks = p.first; local
491 EXPECT_FALSE(callbacks
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/
H A DMagnificationControllerTest.java375 MagnificationCallbacks callbacks = getMagnificationCallbacks();
376 callbacks.onMagnificationRegionChanged(OTHER_REGION);
501 MagnificationCallbacks callbacks = getMagnificationCallbacks();
503 callbacks.onUserContextChanged();
511 MagnificationCallbacks callbacks = getMagnificationCallbacks();
515 callbacks.onRotationChanged(0);
526 MagnificationCallbacks callbacks = getMagnificationCallbacks();
528 callbacks.onMagnificationRegionChanged(OTHER_REGION);
541 MagnificationCallbacks callbacks = getMagnificationCallbacks();
543 callbacks
[all...]
/frameworks/base/core/java/android/view/
H A DChoreographer.java74 * post callbacks to run on the choreographer but they will run on the {@link Looper}
149 // All frame callbacks posted by applications have this token.
447 * Removes callbacks that have the specified action and token.
450 * @param action The action property of the callbacks to remove, or null to remove
451 * callbacks with any action.
452 * @param token The token property of the callbacks to remove, or null to remove
453 * callbacks with any token.
543 * callback actually runs. All callbacks that run as part of rendering a frame will
545 * that are performed by different callbacks.
583 * whether callbacks ar
[all...]
/frameworks/base/libs/hwui/renderthread/
H A DRenderThread.cpp278 std::set<IFrameCallback*> callbacks; local
279 mFrameCallbacks.swap(callbacks);
281 if (callbacks.size()) {
285 for (std::set<IFrameCallback*>::iterator it = callbacks.begin(); it != callbacks.end();
322 // next vsync (oops), so none of the callbacks are run.
/frameworks/base/core/java/android/os/
H A DSystemProperties.java205 //Log.i("foo", "Calling " + sChangeCallbacks.size() + " change callbacks!");
209 ArrayList<Runnable> callbacks = new ArrayList<Runnable>(sChangeCallbacks);
210 for (int i=0; i<callbacks.size(); i++) {
212 callbacks.get(i).run();
/frameworks/base/native/android/
H A Dchoreographer.cpp43 // Note that this is intentionally flipped because we want callbacks due sooner to be at
149 std::vector<FrameCallback> callbacks{};
154 callbacks.push_back(mCallbacks.top());
158 for (const auto& cb : callbacks) {

Completed in 1957 milliseconds

12345678