Home | History | Annotate | Download | only in app

Lines Matching defs:who

4429     private void startIntentSenderForResultInner(IntentSender intent, String who, int requestCode,
4442 fillInIntent, resolvedType, mToken, who,
4852 String who, Intent intent, int requestCode, @Nullable Bundle options) {
4859 this, mMainThread.getApplicationThread(), mToken, who,
4863 mToken, who, requestCode,
4992 * Return information about who launched this activity. If the launching Intent
5040 * Return the name of the package that invoked this activity. This is who
5070 * who the data in {@link #setResult setResult()} will be sent to. You
5349 * startActivityForResult(), allowing you to identify who this
6910 void dispatchActivityResult(String who, int requestCode,
6913 TAG, "Dispatching result: who=" + who + ", reqCode=" + requestCode
6916 if (who == null) {
6918 } else if (who.startsWith(REQUEST_PERMISSIONS_WHO_PREFIX)) {
6919 who = who.substring(REQUEST_PERMISSIONS_WHO_PREFIX.length());
6920 if (TextUtils.isEmpty(who)) {
6923 Fragment frag = mFragments.findFragmentByWho(who);
6928 } else if (who.startsWith("@android:view:")) {
6934 who, requestCode, resultCode, data)) {
6939 Fragment frag = mFragments.findFragmentByWho(who);
7144 String who = REQUEST_PERMISSIONS_WHO_PREFIX + fragment.mWho;
7146 startActivityForResult(who, intent, requestCode, null);