HomeSort by relevance Sort by last modified time
    Searched defs:fileUri (Results 1 - 8 of 8) sorted by null

  /development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/
FileTransferService.java 48 String fileUri = intent.getExtras().getString(EXTRAS_FILE_PATH);
63 is = cr.openInputStream(Uri.parse(fileUri));
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_FilesTest.java 66 Uri fileUri = mResolver.insert(allFilesUri, values);
67 long fileId = ContentUris.parseId(fileUri);
68 assertEquals(fileUri, ContentUris.withAppendedId(allFilesUri, fileId));
72 assertEquals(fileUri, rowUri);
79 assertStringColumn(fileUri, MediaColumns.DATA, dataPath);
84 assertEquals(1, mResolver.update(fileUri, values, null, null));
85 assertStringColumn(fileUri, MediaColumns.DATA, updatedPath);
92 assertEquals(1, mResolver.delete(fileUri, null, null));
96 Cursor cursor = mResolver.query(fileUri, null, null, null, null);
108 fileUri = mResolver.insert(allFilesUri, values)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppLauncherActivity.java 117 final Uri fileUri = creatFileForSharedContent(this, extra_text);
118 if (fileUri != null) {
122 .saveSendingFileInfo(type,fileUri.toString(), false);
247 Uri fileUri = null;
262 fileUri = Uri.fromFile(new File(context.getFilesDir(), fileName));
263 if (fileUri != null) {
265 + fileUri.toString());
284 return fileUri;
BluetoothOppManager.java 428 Uri fileUri = mUris.get(i);
430 String contentType = contentResolver.getType(fileUri);
431 if (V) Log.v(TAG, "Got mimetype: " + contentType + " Got uri: " + fileUri);
437 values.put(BluetoothShare.URI, fileUri.toString());
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
Rfc822Output.java 308 Uri fileUri = Uri.parse(attachment.mContentUri);
309 inStream = context.getContentResolver().openInputStream(fileUri);
  /packages/apps/Email/tests/src/com/android/email/
ControllerProviderOpsTests.java 463 Uri fileUri = ProviderTestUtils.createTempEmlFile(mProviderContext, msg,
467 Message loadedMsg = mTestController.loadMessageFromUri(fileUri);
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadProvider.java 696 String fileUri = values.getAsString(Downloads.Impl.COLUMN_FILE_NAME_HINT);
697 if (fileUri == null) {
701 Uri uri = Uri.parse(fileUri);
    [all...]
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebview.cpp     [all...]

Completed in 474 milliseconds