HomeSort by relevance Sort by last modified time
    Searched refs:fileId (Results 1 - 25 of 35) sorted by null

1 2

  /packages/apps/Messaging/src/com/android/messaging/datamodel/
FileProvider.java 45 * @param fileId filename (optionally starting with path character
48 protected static boolean isValidFileId(final String fileId) {
50 for (int index = (fileId.startsWith("/") ? 1 : 0); index < fileId.length(); index++) {
51 final Character c = fileId.charAt(index);
83 final long fileId = Math.abs(RANDOM_ID.nextLong());
86 builder.appendPath(String.valueOf(fileId));
100 final String fileId = uri.getPath();
101 if (isValidFileId(fileId)) {
102 final File file = getFile(fileId, getExtensionFromUri(uri))
    [all...]
  /frameworks/base/rs/java/android/renderscript/
FileA3D.java 234 long fileId = rs.nFileA3DCreateFromAsset(mgr, path);
236 if(fileId == 0) {
239 FileA3D fa3d = new FileA3D(fileId, rs, null);
254 long fileId = rs.nFileA3DCreateFromFile(path);
256 if(fileId == 0) {
259 FileA3D fa3d = new FileA3D(fileId, rs, null);
297 long fileId = 0;
300 fileId = rs.nFileA3DCreateFromAssetStream(asset);
305 if(fileId == 0) {
308 FileA3D fa3d = new FileA3D(fileId, rs, is)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DownloadManagerWrapper.java 69 public ParcelFileDescriptor openDownloadedFile(final long fileId) throws FileNotFoundException {
72 return mDownloadManager.openDownloadedFile(fileId);
77 Log.e(TAG, "Can't open downloaded file with ID " + fileId, e);
UpdateHandler.java 419 final long fileId = intent.getLongExtra(DownloadManager.EXTRA_DOWNLOAD_ID, NOT_AN_ID);
420 Log.i(TAG, "downloadFinished() : DownloadId = " + fileId);
421 if (NOT_AN_ID == fileId) return; // Spurious wake-up: ignore
424 final CompletedDownloadInfo downloadInfo = getCompletedDownloadInfo(manager, fileId);
429 DebugLogUtils.l("Received result for download ", fileId);
441 downloadSuccessful = handleDownloadedFile(context, record, manager, fileId);
452 publishUpdateWordListCompleted(context, downloadSuccessful, fileId,
458 manager.remove(fileId);
486 final boolean downloadSuccessful, final long fileId,
496 MetadataDbHelper.deleteDownloadingEntry(db, fileId);
    [all...]
  /external/oj-libjdwp/src/share/back/
SDE.c 57 int fileId;
69 int fileId;
267 int fileId = lineTable[lti].fileId;
269 ln += (fileId << 16); /* create line hash */
502 private void storeFile(int fileId, String sourceName, String sourcePath) {
504 fileTable[fileIndex].fileId = fileId;
512 int fileId;
521 fileId = readNumber()
    [all...]
  /external/curl/tests/python_dependencies/impacket/
smb3.py 69 'FileID' : '',
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
UiccPkcs15.java 72 public boolean loadFile(String fileId, Message callBack) {
73 log("loadFile: " + fileId);
74 if (fileId == null || callBack == null) return false;
75 mFileId = fileId;
  /frameworks/base/services/core/java/com/android/server/storage/
AppFuseBridge.java 90 public ParcelFileDescriptor openFile(int pid, int mountId, int fileId, int mode)
108 new File(scope.mountPoint, String.valueOf(fileId)), mode);
  /external/adhd/scripts/audio_tuning/frontend/
google_drive_picker.js 72 var request = gapi.client.drive.files.get({fileId: id});
  /external/pdfium/core/fpdfapi/parser/
cpdf_security_handler.cpp 34 const ByteString& fileId) {
49 if (!fileId.IsEmpty())
50 CRYPT_MD5Update(&md5, (uint8_t*)fileId.c_str(), fileId.GetLength());
576 ByteString fileId;
578 fileId = pIdArray->GetStringAt(0);
582 false, fileId);
592 if (!fileId.IsEmpty()) {
593 CRYPT_MD5Update(&md5, (uint8_t*)fileId.c_str(), fileId.GetLength())
    [all...]
  /frameworks/base/core/tests/coretests/src/android/provider/
MockFontProvider.java 101 public Font(int id, int fileId, int ttcIndex, String varSettings, int weight, int italic,
104 mFileId = fileId;
  /packages/apps/Dialer/java/com/android/dialer/util/
DialerUtils.java 213 long fileId = Math.abs(RANDOM.nextLong());
218 return new File(parentDir, String.valueOf(fileId));
  /system/extras/simpleperf/scripts/
report_html.js 86 return {fileId: func.s[0], startLine: func.s[1], endLine: func.s[2]};
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
MockFontProvider.java 63 public Font(int id, int fileId, int ttcIndex, String varSettings, int weight, int italic,
66 mFileId = fileId;
MediaStore_FilesTest.java 114 long fileId = ContentUris.parseId(fileUri);
115 assertEquals(fileUri, ContentUris.withAppendedId(allFilesUri, fileId));
118 Uri rowUri = MediaStore.Files.getContentUri(volumeName, fileId);
  /frameworks/base/core/java/android/os/storage/
IStorageManager.aidl 183 ParcelFileDescriptor openProxyFileDescriptor(int mountPointId, int fileId, int mode) = 74;
StorageManager.java     [all...]
  /frameworks/support/compat/src/androidTest/java/androidx/core/provider/
MockFontProvider.java 69 Font(int id, int fileId, int ttcIndex, String varSettings, int weight, int italic,
72 mFileId = fileId;
  /frameworks/base/core/java/android/provider/
MediaStore.java 519 long fileId) {
521 + "/object/" + fileId);
529 long fileId) {
531 + "/object/" + fileId + "/references");
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DictionaryInfoUtils.java 312 final String fileId = localeAndFileId[1];
314 final String cacheFilename = cacheDirectoryForLocale + File.separator + fileId;
  /packages/apps/Messaging/src/com/android/messaging/sms/
MmsUtils.java     [all...]
  /hardware/interfaces/radio/1.0/vts/functional/
radio_hidl_hal_icc.cpp 208 iccIo.fileId = 0x6f11;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
RIL.java     [all...]
  /hardware/interfaces/radio/1.0/
types.hal     [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]

Completed in 1130 milliseconds

1 2