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.java887 final Uri bugreportUri; in buildSendIntent() local
889 bugreportUri = getUri(context, info.bugreportFile); in buildSendIntent()
904 info.title : bugreportUri.getLastPathSegment(); in buildSendIntent()
921 new ClipData.Item(null, null, null, bugreportUri)); in buildSendIntent()
922 Log.d(TAG, "share intent: bureportUri=" + bugreportUri); in buildSendIntent()
923 final ArrayList<Uri> attachments = Lists.newArrayList(bugreportUri); in buildSendIntent()
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DDevicePolicyManagerService.java7474 private void setDeviceOwnerRemoteBugreportUriAndHash(String bugreportUri, in setDeviceOwnerRemoteBugreportUriAndHash() argument
7477 mOwners.setDeviceOwnerRemoteBugreportUriAndHash(bugreportUri, bugreportHash); in setDeviceOwnerRemoteBugreportUriAndHash()
7500 Uri bugreportUri = intent.getData(); in onBugreportFinished() local
7502 if (bugreportUri != null) { in onBugreportFinished()
7503 bugreportUriString = bugreportUri.toString(); in onBugreportFinished()
7574 Uri bugreportUri = Uri.parse(bugreportUriString); in shareBugreportWithDeviceOwnerIfExists() local
7575 pfd = mContext.getContentResolver().openFileDescriptor(bugreportUri, "r"); in shareBugreportWithDeviceOwnerIfExists()
7580 intent.setDataAndType(bugreportUri, RemoteBugreportUtils.BUGREPORT_MIMETYPE); in shareBugreportWithDeviceOwnerIfExists()