Home
last modified time | relevance | path

Searched refs:bugreportUri (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/Shell/src/com/android/shell/
DRemoteBugreportReceiver.java57 final Uri bugreportUri = getUri(context, bugreportFile); in onReceive() local
62 newIntent.setDataAndType(bugreportUri, BUGREPORT_MIMETYPE); in onReceive()
DBugreportProgressService.java870 final Uri bugreportUri; in buildSendIntent() local
872 bugreportUri = getUri(context, info.bugreportFile); in buildSendIntent()
887 info.title : bugreportUri.getLastPathSegment(); in buildSendIntent()
904 new ClipData.Item(null, null, null, bugreportUri)); in buildSendIntent()
905 Log.d(TAG, "share intent: bureportUri=" + bugreportUri); in buildSendIntent()
906 final ArrayList<Uri> attachments = Lists.newArrayList(bugreportUri); in buildSendIntent()
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DDevicePolicyManagerService.java6851 private void setDeviceOwnerRemoteBugreportUriAndHash(String bugreportUri, in setDeviceOwnerRemoteBugreportUriAndHash() argument
6854 mOwners.setDeviceOwnerRemoteBugreportUriAndHash(bugreportUri, bugreportHash); in setDeviceOwnerRemoteBugreportUriAndHash()
6877 Uri bugreportUri = intent.getData(); in onBugreportFinished() local
6879 if (bugreportUri != null) { in onBugreportFinished()
6880 bugreportUriString = bugreportUri.toString(); in onBugreportFinished()
6951 Uri bugreportUri = Uri.parse(bugreportUriString); in shareBugreportWithDeviceOwnerIfExists() local
6952 pfd = mContext.getContentResolver().openFileDescriptor(bugreportUri, "r"); in shareBugreportWithDeviceOwnerIfExists()
6957 intent.setDataAndType(bugreportUri, RemoteBugreportUtils.BUGREPORT_MIMETYPE); in shareBugreportWithDeviceOwnerIfExists()