Searched refs:who (Results 76 - 100 of 106) sorted by relevance

12345

/frameworks/base/core/java/android/app/
H A DLoadedApk.java633 String who, String what) {
642 what + " " + who + " has leaked IntentReceiver "
670 what + " " + who + " has leaked ServiceConnection "
1146 // Death for someone different than who we last
632 removeContextRegistrations(Context context, String who, String what) argument
H A DFragmentManager.java1314 public Fragment findFragmentByWho(String who) { argument
1315 if (mActive != null && who != null) {
1318 if (f != null && (f=f.findFragmentByWho(who)) != null) {
H A DContextImpl.java2326 final void scheduleFinalCleanup(String who, String what) { argument
2327 mMainThread.scheduleContextCleanup(this, who, what);
2330 final void performFinalCleanup(String who, String what) { argument
2332 mPackageInfo.removeContextRegistrations(getOuterContext(), who, what);
H A DActivityManagerNative.java463 IBinder who = data.readStrongBinder();
468 if (who != null) {
469 finishReceiver(who, resultCode, resultData, resultExtras, resultAbort);
2148 IBinder who = data.readStrongBinder();
2150 hang(who, allowRestart);
2845 public void finishReceiver(IBinder who, int resultCode, String resultData, Bundle map, boolean abortBroadcast) throws RemoteException argument
2850 data.writeStrongBinder(who);
4014 public void showWaitingForDebugger(IApplicationThread who, boolean waiting) argument
4019 data.writeStrongBinder(who.asBinder());
5148 public void hang(IBinder who, boolea argument
[all...]
H A DActivityThread.java543 String who; field in class:ActivityThread.ContextCleanupInfo
1418 cci.context.performFinalCleanup(cci.who, cci.what);
2193 final void scheduleContextCleanup(ContextImpl context, String who, argument
2197 cci.who = who;
2927 final String who = s.getClassName();
2928 ((ContextImpl) context).scheduleFinalCleanup(who, "Service");
/frameworks/av/drm/libdrmframework/
H A DDrmManagerClientImpl.cpp353 void DrmManagerClientImpl::DeathNotifier::binderDied(const wp<IBinder>& who) { argument
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.h410 virtual void binderDied(const wp<IBinder> &who);
H A DCameraService.cpp1726 const wp<IBinder> &who) {
1735 sp<BasicClient> cameraClient = getClientByRemote(who);
1725 binderDied( const wp<IBinder> &who) argument
/frameworks/native/libs/binder/
H A DIMemory.cpp46 virtual void binderDied(const wp<IBinder>& who);
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.h222 virtual void binderDied(const wp<IBinder>& who);
/frameworks/av/media/libmedia/
H A DAudioSystem.cpp458 void AudioSystem::AudioFlingerClient::binderDied(const wp<IBinder>& who __unused)
970 void AudioSystem::AudioPolicyServiceClient::binderDied(const wp<IBinder>& who __unused)
H A DAudioRecord.cpp1018 void AudioRecord::DeathNotifier::binderDied(const wp<IBinder>& who __unused)
/frameworks/native/libs/gui/
H A DSurfaceComposerClient.cpp64 virtual void binderDied(const wp<IBinder>& who) { argument
66 who.unsafe_get());
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityStackSupervisor.java690 if (w.who == null) {
694 w.who = new ComponentName(r.info.packageName, r.info.name);
710 if (w.who == null) {
714 w.who = new ComponentName(r.info.packageName, r.info.name);
981 } while (!outResult.timeout && outResult.who == null);
986 outResult.who = new ComponentName(r.info.packageName, r.info.name);
997 } while (!outResult.timeout && outResult.who == null);
1769 // The original activity who is starting us is running as a single
/frameworks/base/cmds/am/src/com/android/commands/am/
H A DAm.java835 result.who = intent.getComponent();
838 if (result.who != null) {
839 System.out.println("Activity: " + result.who.flattenToShortString());
/frameworks/av/media/libstagefright/
H A DCameraSource.cpp916 void CameraSource::DeathNotifier::binderDied(const wp<IBinder>& who) { argument
H A DMediaCodecList.cpp67 void MediaCodecList::BinderDeathObserver::binderDied(const wp<IBinder> &who __unused) {
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentManager.java1361 public Fragment findFragmentByWho(String who) { argument
1362 if (mActive != null && who != null) {
1365 if (f != null && (f=f.findFragmentByWho(who)) != null) {
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java753 protected boolean verifyDrawable(Drawable who) { argument
754 return super.verifyDrawable(who) || who == mMarginDrawable;
/frameworks/base/core/java/android/widget/
H A DTextView.java5038 protected boolean verifyDrawable(Drawable who) { argument
5039 final boolean verified = super.verifyDrawable(who);
5041 return who == mDrawables.mDrawableLeft || who == mDrawables.mDrawableTop ||
5042 who == mDrawables.mDrawableRight || who == mDrawables.mDrawableBottom ||
5043 who == mDrawables.mDrawableStart || who == mDrawables.mDrawableEnd;
/frameworks/base/core/java/android/view/
H A DView.java9108 * when a view who is not the current
15834 * @param who the recipient of the action
15840 public void scheduleDrawable(Drawable who, Runnable what, long when) { argument
15841 if (verifyDrawable(who) && what != null) {
15845 Choreographer.CALLBACK_ANIMATION, what, who,
15856 * @param who the recipient of the action
15860 public void unscheduleDrawable(Drawable who, Runnable what) { argument
15861 if (verifyDrawable(who) && what != null) {
15864 Choreographer.CALLBACK_ANIMATION, what, who);
15875 * @param who Th
15879 unscheduleDrawable(Drawable who) argument
15966 verifyDrawable(Drawable who) argument
[all...]
/frameworks/av/services/audioflinger/
H A DAudioFlinger.h427 virtual void binderDied(const wp<IBinder>& who);
H A DThreads.h219 virtual void binderDied(const wp<IBinder>& who);
/frameworks/av/services/soundtrigger/
H A DSoundTriggerHwService.cpp751 const wp<IBinder> &who __unused) {
/frameworks/base/core/jni/
H A Dandroid_util_Binder.cpp393 void binderDied(const wp<IBinder>& who) argument

Completed in 616 milliseconds

12345