Searched refs:who (Results 1 - 25 of 79) sorted by last modified time

1234

/frameworks/support/v4/java/android/support/v4/app/
H A DFragment.java859 * startActivityForResult(), allowing you to identify who this
1409 Fragment findFragmentByWho(String who) { argument
1410 if (who.equals(mWho)) {
1414 return mChildFragmentManager.findFragmentByWho(who);
H A DFragmentActivity.java835 void invalidateSupportFragment(String who) { argument
836 //Log.v(TAG, "invalidateSupportFragment: who=" + who);
838 LoaderManagerImpl lm = mAllLoaderManagers.get(who);
841 mAllLoaderManagers.remove(who);
862 LoaderManagerImpl getLoaderManager(String who, boolean started, boolean create) { argument
866 LoaderManagerImpl lm = mAllLoaderManagers.get(who);
869 lm = new LoaderManagerImpl(who, this, started);
870 mAllLoaderManagers.put(who, lm);
H A DFragmentManager.java1313 public Fragment findFragmentByWho(String who) { argument
1314 if (mActive != null && who != null) {
1317 if (f != null && (f=f.findFragmentByWho(who)) != null) {
H A DLoaderManager.java477 LoaderManagerImpl(String who, FragmentActivity activity, boolean started) { argument
478 mWho = who;
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java717 protected boolean verifyDrawable(Drawable who) { argument
718 return super.verifyDrawable(who) || who == mMarginDrawable;
/frameworks/native/include/binder/
H A DIBinder.h95 virtual void binderDied(const wp<IBinder>& who) = 0;
H A DParcel.h329 const flat_binder_object& obj, const void* who);
331 const flat_binder_object& obj, const void* who);
/frameworks/native/libs/binder/
H A DIMemory.cpp46 virtual void binderDied(const wp<IBinder>& who);
H A DParcel.cpp73 const flat_binder_object& obj, const void* who)
78 LOG_REFS("Parcel %p acquiring reference on local %p", who, obj.cookie);
79 static_cast<IBinder*>(obj.cookie)->incStrong(who);
84 static_cast<RefBase::weakref_type*>(obj.binder)->incWeak(who);
89 LOG_REFS("Parcel %p acquiring reference on remote %p", who, b.get());
90 b->incStrong(who);
96 if (b != NULL) b.get_refs()->incWeak(who);
110 const flat_binder_object& obj, const void* who)
115 LOG_REFS("Parcel %p releasing reference on local %p", who, obj.cookie);
116 static_cast<IBinder*>(obj.cookie)->decStrong(who);
72 acquire_object(const sp<ProcessState>& proc, const flat_binder_object& obj, const void* who) argument
109 release_object(const sp<ProcessState>& proc, const flat_binder_object& obj, const void* who) argument
[all...]
/frameworks/native/libs/gui/
H A DSensorManager.cpp80 virtual void binderDied(const wp<IBinder>& who) { argument
81 ALOGW("sensorservice died [%p]", who.unsafe_get());
H A DSurfaceComposerClient.cpp63 virtual void binderDied(const wp<IBinder>& who) { argument
65 who.unsafe_get());
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp144 void SurfaceFlinger::binderDied(const wp<IBinder>& who) argument
H A DSurfaceFlinger.h213 virtual void binderDied(const wp<IBinder>& who);
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DRecentApplicationsBackground.java70 protected boolean verifyDrawable(Drawable who) { argument
71 return who == mBackground || super.verifyDrawable(who);
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardActivityLauncher.java233 result.result, result.thisTime, result.totalTime, result.who,
/frameworks/base/services/common_time/
H A Dcommon_clock_service.cpp133 void CommonClockService::binderDied(const wp<IBinder>& who) { argument
139 if (mListeners[i]->asBinder() == who) {
H A Dcommon_clock_service.h59 virtual void binderDied(const wp<IBinder>& who);
/frameworks/base/services/java/com/android/server/
H A DDevicePolicyManagerService.java605 ActiveAdmin getActiveAdminUncheckedLocked(ComponentName who, int userHandle) { argument
606 ActiveAdmin admin = getUserData(userHandle).mAdminMap.get(who);
608 && who.getPackageName().equals(admin.info.getActivityInfo().packageName)
609 && who.getClassName().equals(admin.info.getActivityInfo().name)) {
615 ActiveAdmin getActiveAdminForCallerLocked(ComponentName who, int reqPolicy) argument
620 if (who != null) {
621 ActiveAdmin admin = policy.mAdminMap.get(who);
623 throw new SecurityException("No active admin " + who);
626 throw new SecurityException("Admin " + who + " is not owned by uid "
1134 public void setPasswordQuality(ComponentName who, in argument
1151 getPasswordQuality(ComponentName who, int userHandle) argument
1173 setPasswordMinimumLength(ComponentName who, int length, int userHandle) argument
1188 getPasswordMinimumLength(ComponentName who, int userHandle) argument
1210 setPasswordHistoryLength(ComponentName who, int length, int userHandle) argument
1225 getPasswordHistoryLength(ComponentName who, int userHandle) argument
1247 setPasswordExpirationTimeout(ComponentName who, long timeout, int userHandle) argument
1277 getPasswordExpirationTimeout(ComponentName who, int userHandle) argument
1303 getPasswordExpirationLocked(ComponentName who, int userHandle) argument
1322 getPasswordExpiration(ComponentName who, int userHandle) argument
1329 setPasswordMinimumUpperCase(ComponentName who, int length, int userHandle) argument
1344 getPasswordMinimumUpperCase(ComponentName who, int userHandle) argument
1366 setPasswordMinimumLowerCase(ComponentName who, int length, int userHandle) argument
1381 getPasswordMinimumLowerCase(ComponentName who, int userHandle) argument
1403 setPasswordMinimumLetters(ComponentName who, int length, int userHandle) argument
1418 getPasswordMinimumLetters(ComponentName who, int userHandle) argument
1440 setPasswordMinimumNumeric(ComponentName who, int length, int userHandle) argument
1455 getPasswordMinimumNumeric(ComponentName who, int userHandle) argument
1477 setPasswordMinimumSymbols(ComponentName who, int length, int userHandle) argument
1492 getPasswordMinimumSymbols(ComponentName who, int userHandle) argument
1514 setPasswordMinimumNonLetter(ComponentName who, int length, int userHandle) argument
1529 getPasswordMinimumNonLetter(ComponentName who, int userHandle) argument
1586 setMaximumFailedPasswordsForWipe(ComponentName who, int num, int userHandle) argument
1602 getMaximumFailedPasswordsForWipe(ComponentName who, int userHandle) argument
1749 setMaximumTimeToLock(ComponentName who, long timeMs, int userHandle) argument
1794 getMaximumTimeToLock(ComponentName who, int userHandle) argument
2031 setGlobalProxy(ComponentName who, String proxySpec, String exclusionList, int userHandle) argument
2143 setStorageEncryption(ComponentName who, boolean encrypt, int userHandle) argument
2194 getStorageEncryption(ComponentName who, int userHandle) argument
2268 setCameraDisabled(ComponentName who, boolean disabled, int userHandle) argument
2288 getCameraDisabled(ComponentName who, int userHandle) argument
2311 setKeyguardDisabledFeatures(ComponentName who, int which, int userHandle) argument
2331 getKeyguardDisabledFeatures(ComponentName who, int userHandle) argument
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java380 * is the pid of the caller who requested it (we hold a death
568 * List of PendingThumbnailsRecord objects of clients who are still
582 * List of content providers who have clients waiting for them. The
2585 // Nobody who is next!
5567 public void showWaitingForDebugger(IApplicationThread who, boolean waiting) { argument
5570 who != null ? getRecordForAppLocked(who) : null;
6494 // Make sure that the user who owns this provider is started. If not,
11588 // Make sure that the user who is receiving this broadcast is started.
11790 // Figure out who al
12048 finishReceiver(IBinder who, int resultCode, String resultData, Bundle resultExtras, boolean resultAbort) argument
[all...]
H A DActivityStack.java910 public final Bitmap screenshotActivities(ActivityRecord who) { argument
911 if (who.noDisplay) {
926 return mService.mWindowManager.screenshotApplications(who.appToken,
1451 // Make sure that the user who owns this activity is started. If not,
2171 // task that is not at the top but who has activities above
2702 // The original activity who is starting us is running as a single
3203 } while (!outResult.timeout && outResult.who == null);
3208 outResult.who = new ComponentName(r.info.packageName, r.info.name);
3219 } while (!outResult.timeout && outResult.who == null);
3313 w.who
[all...]
H A DPendingIntentRecord.java48 final String who; field in class:PendingIntentRecord.Key
66 who = _w;
117 if (who != other.who) {
118 if (who != null) {
119 if (!who.equals(other.who)) {
122 } else if (other.who != null) {
262 key.who, key.requestCode, code, finalIntent);
331 if (key.activity != null || key.who !
[all...]
/frameworks/base/services/java/com/android/server/connectivity/
H A DTethering.java1394 TetherInterfaceSM who = (TetherInterfaceSM)message.obj;
1395 if (VDBG) Log.d(TAG, "Tether Mode requested by " + who);
1396 mNotifyList.add(who);
1400 who = (TetherInterfaceSM)message.obj;
1401 if (VDBG) Log.d(TAG, "Tether Mode unrequested by " + who);
1402 int index = mNotifyList.indexOf(who);
1404 mNotifyList.remove(who);
1437 TetherInterfaceSM who = (TetherInterfaceSM)message.obj;
1438 if (VDBG) Log.d(TAG, "Tether Mode requested by " + who);
1439 mNotifyList.add(who);
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedRotateDrawable.java165 public void invalidateDrawable(Drawable who) { argument
172 public void scheduleDrawable(Drawable who, Runnable what, long when) { argument
179 public void unscheduleDrawable(Drawable who, Runnable what) { argument
H A DClipDrawable.java113 public void invalidateDrawable(Drawable who) { argument
120 public void scheduleDrawable(Drawable who, Runnable what, long when) { argument
127 public void unscheduleDrawable(Drawable who, Runnable what) { argument
H A DDrawable.java268 * @param who The drawable that is requesting the update.
270 public void invalidateDrawable(Drawable who); argument
276 * the parameters <var>(what, who, when)</var> to perform the
279 * @param who The drawable being scheduled.
284 public void scheduleDrawable(Drawable who, Runnable what, long when); argument
291 * the parameters <var>(what, who)</var> to unschedule the drawable.
293 * @param who The drawable being unscheduled.
296 public void unscheduleDrawable(Drawable who, Runnable what); argument

Completed in 1667 milliseconds

1234