Searched refs:callbacks (Results 1 - 25 of 81) sorted by relevance

1234

/frameworks/base/core/java/android/app/
H A DApplication.java105 Object[] callbacks = collectComponentCallbacks();
106 if (callbacks != null) {
107 for (int i=0; i<callbacks.length; i++) {
108 ((ComponentCallbacks)callbacks[i]).onConfigurationChanged(newConfig);
114 Object[] callbacks = collectComponentCallbacks();
115 if (callbacks != null) {
116 for (int i=0; i<callbacks.length; i++) {
117 ((ComponentCallbacks)callbacks[i]).onLowMemory();
123 Object[] callbacks = collectComponentCallbacks();
124 if (callbacks !
[all...]
/frameworks/support/v4/java/android/support/v4/os/
H A DParcelableCompat.java31 * @param callbacks Creator callbacks implementation.
35 ParcelableCompatCreatorCallbacks<T> callbacks) {
37 ParcelableCompatCreatorHoneycombMR2Stub.instantiate(callbacks);
39 return new CompatCreator<T>(callbacks);
45 public CompatCreator(ParcelableCompatCreatorCallbacks<T> callbacks) { argument
46 mCallbacks = callbacks;
34 newCreator( ParcelableCompatCreatorCallbacks<T> callbacks) argument
/frameworks/support/v4/honeycomb_mr2/android/support/v4/os/
H A DParcelableCompatHoneycombMR2.java23 static <T> Parcelable.Creator<T> instantiate(ParcelableCompatCreatorCallbacks<T> callbacks) { argument
24 return new ParcelableCompatCreatorHoneycombMR2<T>(callbacks);
31 public ParcelableCompatCreatorHoneycombMR2(ParcelableCompatCreatorCallbacks<T> callbacks) { argument
32 mCallbacks = callbacks;
/frameworks/base/core/jni/
H A Dandroid_app_NativeActivity.cpp107 memset(&callbacks, 0, sizeof(callbacks));
115 if (callbacks.onDestroy != NULL) {
116 callbacks.onDestroy(this);
143 ANativeActivityCallbacks callbacks; member in struct:android::NativeCode
295 code->ANativeActivity::callbacks = &code->callbacks;
356 if (code->callbacks.onStart != NULL) {
357 code->callbacks.onStart(code);
368 if (code->callbacks
[all...]
/frameworks/base/core/java/android/os/
H A DSystemProperties.java146 //Log.i("foo", "Calling " + sChangeCallbacks.size() + " change callbacks!");
150 ArrayList<Runnable> callbacks = new ArrayList<Runnable>(sChangeCallbacks);
151 for (int i=0; i<callbacks.size(); i++) {
152 callbacks.get(i).run();
/frameworks/av/media/libstagefright/codecs/gsm/dec/
H A DSoftGSM.h31 const OMX_CALLBACKTYPE *callbacks,
/frameworks/av/media/libstagefright/codecs/raw/
H A DSoftRaw.h29 const OMX_CALLBACKTYPE *callbacks,
/frameworks/av/media/libstagefright/omx/
H A DSoftOMXPlugin.h31 const OMX_CALLBACKTYPE *callbacks,
H A DSoftOMXPlugin.cpp68 const OMX_CALLBACKTYPE *callbacks,
108 (*createSoftOMXComponent)(name, callbacks, appData, component);
66 makeComponentInstance( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
/frameworks/native/include/media/hardware/
H A DOMXPluginBase.h36 const OMX_CALLBACKTYPE *callbacks,
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DAutoRotateController.java41 RotationLockCallbacks callbacks) {
44 mCallbacks = callbacks;
40 AutoRotateController(Context context, CompoundButton checkbox, RotationLockCallbacks callbacks) argument
/frameworks/base/core/java/android/view/
H A DChoreographer.java65 * post callbacks to run on the choreographer but they will run on the {@link Looper}
118 // All frame callbacks posted by applications have this token.
327 * Removes callbacks that have the specified action and token.
330 * @param action The action property of the callbacks to remove, or null to remove
331 * callbacks with any action.
332 * @param token The token property of the callbacks to remove, or null to remove
333 * callbacks with any token.
422 * callback actually runs. All callbacks that run as part of rendering a frame will
424 * that are performed by different callbacks.
543 CallbackRecord callbacks;
[all...]
H A DSurfaceView.java545 SurfaceHolder.Callback callbacks[] = null;
553 callbacks = getSurfaceCallbacks();
554 for (SurfaceHolder.Callback c : callbacks) {
567 if (callbacks == null) {
568 callbacks = getSurfaceCallbacks();
570 for (SurfaceHolder.Callback c : callbacks) {
578 if (callbacks == null) {
579 callbacks = getSurfaceCallbacks();
581 for (SurfaceHolder.Callback c : callbacks) {
587 if (callbacks
[all...]
/frameworks/av/media/libstagefright/codecs/aacdec/
H A DSoftAAC2.h28 const OMX_CALLBACKTYPE *callbacks,
/frameworks/av/media/libstagefright/codecs/aacenc/
H A DSoftAACEncoder.h31 const OMX_CALLBACKTYPE *callbacks,
H A DSoftAACEncoder2.h30 const OMX_CALLBACKTYPE *callbacks,
/frameworks/av/media/libstagefright/codecs/amrnb/dec/
H A DSoftAMR.h27 const OMX_CALLBACKTYPE *callbacks,
/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/mp3dec/
H A DSoftMP3.h29 const OMX_CALLBACKTYPE *callbacks,
/frameworks/av/media/libstagefright/codecs/on2/dec/
H A DSoftVPX.h27 const OMX_CALLBACKTYPE *callbacks,
/frameworks/av/media/libstagefright/codecs/vorbis/dec/
H A DSoftVorbis.h30 const OMX_CALLBACKTYPE *callbacks,
/frameworks/support/v4/java/android/support/v4/media/
H A DTransportMediator.java151 public TransportMediator(Activity activity, TransportPerformer callbacks) { argument
152 this(activity, null, callbacks);
155 public TransportMediator(View view, TransportPerformer callbacks) { argument
156 this(null, view, callbacks);
159 private TransportMediator(Activity activity, View view, TransportPerformer callbacks) { argument
161 mCallbacks = callbacks;
184 * {@link android.media.RemoteControlClient.OnPlaybackPositionUpdateListener} callbacks;
/frameworks/base/core/java/com/android/internal/statusbar/
H A DIStatusBarService.aidl40 void registerStatusBar(IStatusBar callbacks, out StatusBarIconList iconList,

Completed in 593 milliseconds

1234