Searched defs:who (Results 51 - 75 of 80) sorted by relevance

1234

/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
H A DSwitchCompat.java1364 protected boolean verifyDrawable(Drawable who) { argument
1365 return super.verifyDrawable(who) || who == mThumbDrawable || who == mTrackDrawable;
/frameworks/base/core/java/android/app/
H A DInstrumentation.java705 final boolean match(Context who, argument
713 && mWhich.match(who.getContentResolver(), intent,
1610 * @param who The Context from which the activity is being started.
1613 * @param token Internal token identifying to the system who is starting
1636 Context who, IBinder contextThread, IBinder token, Activity target,
1655 } else if (am.match(who, null, intent)) {
1667 intent.prepareToLeaveProcess(who);
1669 .startActivity(whoThread, who.getBasePackageName(), intent,
1670 intent.resolveTypeIfNeeded(who.getContentResolver()),
1688 public void execStartActivities(Context who, IBinde argument
1635 execStartActivity( Context who, IBinder contextThread, IBinder token, Activity target, Intent intent, int requestCode, Bundle options) argument
1706 execStartActivitiesAsUser(Context who, IBinder contextThread, IBinder token, Activity target, Intent[] intents, Bundle options, int userId) argument
1777 execStartActivity( Context who, IBinder contextThread, IBinder token, String target, Intent intent, int requestCode, Bundle options) argument
1844 execStartActivity( Context who, IBinder contextThread, IBinder token, String resultWho, Intent intent, int requestCode, Bundle options, UserHandle user) argument
1889 execStartActivityAsCaller( Context who, IBinder contextThread, IBinder token, Activity target, Intent intent, int requestCode, Bundle options, boolean ignoreTargetSecurity, int userId) argument
1935 execStartActivityFromAppTask( Context who, IBinder contextThread, IAppTask appTask, Intent intent, Bundle options) argument
[all...]
H A DLoadedApk.java1139 String who, String what) {
1148 what + " " + who + " has leaked IntentReceiver "
1176 what + " " + who + " has leaked ServiceConnection "
1741 // Death for someone different than who we last
1138 removeContextRegistrations(Context context, String who, String what) argument
H A DContextImpl.java2463 final void scheduleFinalCleanup(String who, String what) { argument
2464 mMainThread.scheduleContextCleanup(this, who, what);
2467 final void performFinalCleanup(String who, String what) { argument
2469 mPackageInfo.removeContextRegistrations(getOuterContext(), who, what);
H A DFragment.java1146 * startActivityForResult(), allowing you to identify who this
2468 Fragment findFragmentByWho(String who) { argument
2469 if (who.equals(mWho)) {
2473 return mChildFragmentManager.findFragmentByWho(who);
H A DFragmentManager.java1863 public Fragment findFragmentByWho(String who) { argument
1864 if (mActive != null && who != null) {
1867 if (f != null && (f=f.findFragmentByWho(who)) != null) {
H A DActivity.java4825 private void startIntentSenderForResultInner(IntentSender intent, String who, int requestCode, argument
4840 fillInIntent, resolvedType, mToken, who,
5268 String who, Intent intent, int requestCode, @Nullable Bundle options) {
5276 this, mMainThread.getApplicationThread(), mToken, who,
5280 mToken, who, requestCode,
5409 * Return information about who launched this activity. If the launching Intent
5457 * Return the name of the package that invoked this activity. This is who
5487 * who the data in {@link #setResult setResult()} will be sent to. You
5772 * startActivityForResult(), allowing you to identify who this
7447 void dispatchActivityResult(String who, in argument
5267 startActivityForResult( String who, Intent intent, int requestCode, @Nullable Bundle options) argument
[all...]
H A DActivityThread.java733 String who; field in class:ActivityThread.ContextCleanupInfo
1694 cci.context.performFinalCleanup(cci.who, cci.what);
2798 final void scheduleContextCleanup(ContextImpl context, String who, argument
2802 cci.who = who;
3701 final String who = s.getClassName();
3702 ((ContextImpl) context).scheduleFinalCleanup(who, "Service");
/frameworks/base/core/java/android/content/
H A DContextWrapper.java390 String who, Intent intent, int requestCode, Bundle options) {
391 mBase.startActivityForResult(who, intent, requestCode, options);
389 startActivityForResult( String who, Intent intent, int requestCode, Bundle options) argument
H A DContext.java1753 * @param who The identifier for the calling element that will receive the result.
1764 @NonNull String who, Intent intent, int requestCode, @Nullable Bundle options) {
2597 * information. This allows you to enforce permissions on who can
1763 startActivityForResult( @onNull String who, Intent intent, int requestCode, @Nullable Bundle options) argument
/frameworks/base/core/java/android/widget/
H A DProgressBar.java1203 protected boolean verifyDrawable(@NonNull Drawable who) { argument
1204 return who == mProgressDrawable || who == mIndeterminateDrawable
1205 || super.verifyDrawable(who);
/frameworks/base/core/jni/
H A Dandroid_util_Binder.cpp462 void binderDied(const wp<IBinder>& who) argument
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawableContainer.java391 public void invalidateDrawable(@NonNull Drawable who) { argument
399 if (who == mCurrDrawable && getCallback() != null) {
405 public void scheduleDrawable(@NonNull Drawable who, @NonNull Runnable what, long when) { argument
406 if (who == mCurrDrawable && getCallback() != null) {
412 public void unscheduleDrawable(@NonNull Drawable who, @NonNull Runnable what) { argument
413 if (who == mCurrDrawable && getCallback() != null) {
1259 public void invalidateDrawable(@NonNull Drawable who) { argument
1264 public void scheduleDrawable(@NonNull Drawable who, @NonNull Runnable what, long when) { argument
1266 mCallback.scheduleDrawable(who, what, when);
1271 public void unscheduleDrawable(@NonNull Drawable who, argument
[all...]
H A DLayerDrawable.java981 public void invalidateDrawable(@NonNull Drawable who) { argument
995 public void scheduleDrawable(@NonNull Drawable who, @NonNull Runnable what, long when) { argument
1000 public void unscheduleDrawable(@NonNull Drawable who, @NonNull Runnable what) { argument
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DTethering.java1281 TetherInterfaceStateMachine who = (TetherInterfaceStateMachine) message.obj;
1282 if (VDBG) Log.d(TAG, "Tether Mode requested by " + who);
1283 handleInterfaceServingStateActive(message.arg1, who);
1287 who = (TetherInterfaceStateMachine) message.obj;
1288 if (VDBG) Log.d(TAG, "Tether Mode unrequested by " + who);
1289 handleInterfaceServingStateInactive(who);
1427 private void handleInterfaceServingStateActive(int mode, TetherInterfaceStateMachine who) { argument
1428 if (mNotifyList.indexOf(who) < 0) {
1429 mNotifyList.add(who);
1430 mIPv6TetheringCoordinator.addActiveDownstream(who, mod
1461 handleInterfaceServingStateInactive(TetherInterfaceStateMachine who) argument
1908 notifyInterfaceStateChange( String iface, TetherInterfaceStateMachine who, int state, int error) argument
1955 notifyLinkPropertiesChanged(String iface, TetherInterfaceStateMachine who, LinkProperties newLp) argument
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/
H A DDevicePolicyManagerTest.java3732 private void verifyCanSetLockTask(int uid, int userId, ComponentName who, String[] packages, argument
3735 dpm.setLockTaskPackages(who, packages);
3736 MoreAsserts.assertEquals(packages, dpm.getLockTaskPackages(who));
3742 dpm.setLockTaskFeatures(who, flags);
3746 private void verifyCanNotSetLockTask(int uid, ComponentName who, String[] packages, argument
3750 () -> dpm.setLockTaskPackages(who, packages));
3752 () -> dpm.getLockTaskPackages(who));
3755 () -> dpm.setLockTaskFeatures(who, flags));
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.cpp925 // Only allow clients who are being used by the current foreground device user, unless calling
2497 void CameraService::UidPolicy::binderDied(const wp<IBinder>& /*who*/) {
2835 void CameraService::handleTorchClientBinderDied(const wp<IBinder> &who) { argument
2838 if (mTorchClientMap[i] == who) {
2853 /*virtual*/void CameraService::binderDied(const wp<IBinder> &who) { argument
2863 handleTorchClientBinderDied(who);
2866 if(!evictClientIdByRemote(who)) {
/frameworks/base/core/java/com/android/internal/widget/
H A DViewPager.java724 protected boolean verifyDrawable(@NonNull Drawable who) { argument
725 return super.verifyDrawable(who) || who == mMarginDrawable;
/frameworks/native/libs/binder/
H A DParcel.cpp105 const flat_binder_object& obj, const void* who, size_t* outAshmemSize)
110 LOG_REFS("Parcel %p acquiring reference on local %p", who, obj.cookie);
111 reinterpret_cast<IBinder*>(obj.cookie)->incStrong(who);
116 reinterpret_cast<RefBase::weakref_type*>(obj.binder)->incWeak(who);
121 LOG_REFS("Parcel %p acquiring reference on remote %p", who, b.get());
122 b->incStrong(who);
128 if (b != NULL) b.get_refs()->incWeak(who);
147 const flat_binder_object& obj, const void* who)
149 acquire_object(proc, obj, who, NULL);
153 const flat_binder_object& obj, const void* who, size_
104 acquire_object(const sp<ProcessState>& proc, const flat_binder_object& obj, const void* who, size_t* outAshmemSize) argument
146 acquire_object(const sp<ProcessState>& proc, const flat_binder_object& obj, const void* who) argument
152 release_object(const sp<ProcessState>& proc, const flat_binder_object& obj, const void* who, size_t* outAshmemSize) argument
197 release_object(const sp<ProcessState>& proc, const flat_binder_object& obj, const void* who) argument
[all...]
/frameworks/support/coordinatorlayout/src/main/java/androidx/coordinatorlayout/widget/
H A DCoordinatorLayout.java321 protected boolean verifyDrawable(Drawable who) { argument
322 return super.verifyDrawable(who) || who == mStatusBarBackground;
/frameworks/support/fragment/src/main/java/androidx/fragment/app/
H A DFragment.java1111 * startActivityForResult(), allowing you to identify who this
2357 Fragment findFragmentByWho(String who) { argument
2358 if (who.equals(mWho)) {
2362 return mChildFragmentManager.findFragmentByWho(who);
H A DFragmentManager.java2066 public Fragment findFragmentByWho(String who) { argument
2067 if (mActive != null && who != null) {
2070 if (f != null && (f=f.findFragmentByWho(who)) != null) {
/frameworks/support/viewpager/src/main/java/androidx/viewpager/widget/
H A DViewPager.java909 protected boolean verifyDrawable(Drawable who) { argument
910 return super.verifyDrawable(who) || who == mMarginDrawable;
/frameworks/base/services/core/java/com/android/server/
H A DAlarmManagerService.java1462 // Sanity check the recurrence interval. This will catch people who supply
4104 public void alarmComplete(IBinder who) { argument
4105 if (who == null) {
4114 mHandler.removeMessages(AlarmHandler.LISTENER_TIMEOUT, who);
4115 InFlight inflight = removeLocked(who);
4118 Slog.i(TAG, "alarmComplete() from " + who);
4126 Slog.i(TAG, "Late alarmComplete() from " + who);
4150 public void alarmTimedOut(IBinder who) { argument
4152 InFlight inflight = removeLocked(who);
4156 Slog.i(TAG, "Alarm listener " + who
[all...]
/frameworks/base/core/java/android/app/admin/
H A DDevicePolicyManager.java162 * Provisioning adds a managed profile and sets the MDM as the profile owner who has full
215 * owner who has full control over the user. Provisioning can only happen before user setup has
3076 * will be stored on your server and who will need access to them. Tokens may be the subject of
4956 * @param who the component name to be registered as device owner.
4961 public boolean setDeviceOwner(ComponentName who) { argument
4962 return setDeviceOwner(who, null);
4968 public boolean setDeviceOwner(ComponentName who, int userId) { argument
4969 return setDeviceOwner(who, null, userId);
4975 public boolean setDeviceOwner(ComponentName who, String ownerName) { argument
4976 return setDeviceOwner(who, ownerNam
4994 setDeviceOwner(ComponentName who, String ownerName, int userId) argument
[all...]

Completed in 390 milliseconds

1234