Lines Matching defs:mData

2740      * The path to the mount point for the removed media is contained in the Intent.mData field.
2747 * The path to the mount point for the unmounted media is contained in the Intent.mData field.
2754 * The path to the mount point for the checking media is contained in the Intent.mData field.
2761 * The path to the mount point for the checking media is contained in the Intent.mData field.
2768 * The path to the mount point for the mounted media is contained in the Intent.mData field.
2777 * The path to the mount point for the shared media is contained in the Intent.mData field.
2784 * The path to the mount point for the previously shared media is contained in the Intent.mData field.
2792 * The path to the mount point for the removed media is contained in the Intent.mData field.
2799 * The path to the mount point for the unmountable media is contained in the Intent.mData field.
2807 * The path to the mount point for the media to be ejected is contained in the Intent.mData field.
2814 * The path to the directory being scanned is contained in the Intent.mData field.
2821 * The path to the scanned directory is contained in the Intent.mData field.
2828 * The path to the file is contained in the Intent.mData field.
5935 private Uri mData;
5979 this.mData = o.mData;
6062 mData = uri;
6111 mData = uri;
6321 intent.mData = Uri.parse(value + ":");
6425 intent.mData = Uri.parse(data);
6585 intent.mData = Uri.parse(uri.substring(0, intentFragmentStart));
6587 intent.mData = Uri.parse(uri);
7075 return mData;
7083 return mData != null ? mData.toString() : null;
7099 return mData != null ? mData.getScheme() : null;
7149 if (mData != null) {
7150 if ("content".equals(mData.getScheme())) {
7151 return resolver.getType(mData);
8038 mData = data;
8095 mData = null;
8155 mData = data;
9362 if ((other.mData != null || other.mType != null)
9363 && ((mData == null && mType == null)
9365 mData = other.mData;
9497 if (!Objects.equals(this.mData, other.mData)) return false;
9519 if (mData != null) {
9520 code += mData.hashCode();
9597 if (mData != null) {
9604 b.append(mData.toSafeString());
9606 b.append(mData);
9701 if (mData != null) {
9702 proto.write(IntentProto.DATA, secure ? mData.toSafeString() : mData.toString());
9775 if (mData != null) {
9776 scheme = mData.getScheme();
9780 String authority = mData.getEncodedAuthority();
9784 String path = mData.getEncodedPath();
9788 String queryParams = mData.getEncodedQuery();
9793 String fragment = mData.getEncodedFragment();
9806 if (mData != null) {
9807 String data = mData.toString();
9849 mSelector.toUriInner(frag, mSelector.mData != null ? mSelector.mData.getScheme() : null,
9924 Uri.writeToParcel(out, mData);
9981 mData = Uri.CREATOR.createFromParcel(in);
10093 if (mData != null) {
10094 out.attribute(null, ATTR_DATA, mData.toString());
10226 if (mAction != null && mData != null && StrictMode.vmFileUriExposureEnabled()
10247 mData.checkFileUriExposed("Intent.getData()");
10251 if (mAction != null && mData != null && StrictMode.vmContentUriWithoutPermissionEnabled()
10259 mData.checkContentUriWithoutPermission("Intent.getData()", getFlags());
10311 mData = maybeAddUserId(data, contentUserHint);