Home
last modified time | relevance | path

Searched refs:fileLocation (Results 1 – 4 of 4) sorted by relevance

/packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/common/
DUtilsTest.java339 final String fileLocation = getContext().getFilesDir().toString() + "/" + TEST_FILE_NAME; in testComputeHashOfFile() local
355 Arrays.equals(sha256, mUtils.computeHashOfFile(fileLocation, Utils.SHA256_TYPE))); in testComputeHashOfFile()
360 final String fileLocation = getContext().getFilesDir().toString() + "/" + TEST_FILE_NAME; in testComputeHashOfFile_NotPresent() local
364 assertNull(mUtils.computeHashOfFile(fileLocation, Utils.SHA256_TYPE)); in testComputeHashOfFile_NotPresent()
/packages/services/Telephony/testapps/EmbmsTestDownloadApp/src/com/android/phone/testapps/embmsdownload/
DEmbmsTestDownloadApp.java409 public void onDownloadDone(Uri fileLocation) { in onDownloadDone() argument
410 Log.i(LOG_TAG, "File completed: " + fileLocation); in onDownloadDone()
411 File imageFile = new File(fileLocation.getPath()); in onDownloadDone()
417 mImageAdapter.addImage(fileLocation); in onDownloadDone()
/packages/apps/Messaging/src/com/android/messaging/ui/debug/
DDebugSmsMmsFromDumpFileDialogFragment.java161 final String fileLocation = "file://" in emailDumpFile() local
165 sharingIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(fileLocation)); in emailDumpFile()
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/common/
DUtils.java717 public byte[] computeHashOfFile(String fileLocation, String hashType) { in computeHashOfFile() argument
728 fis = new FileInputStream(fileLocation); in computeHashOfFile()