Searched refs:ioPath (Results 1 – 5 of 5) sorted by relevance
/packages/providers/MediaProvider/src/com/android/providers/media/ |
D | FileLookupResult.java | 35 public final String ioPath; field in FileLookupResult 37 public FileLookupResult(int transforms, int uid, String ioPath) { in FileLookupResult() argument 39 /* transformsSupported */ transforms == 0 ? false : true, ioPath); in FileLookupResult() 43 boolean transformsComplete, boolean transformsSupported, String ioPath) { in FileLookupResult() argument 49 this.ioPath = ioPath; in FileLookupResult()
|
D | TranscodeHelper.java | 40 public void onFileOpen(String path, String ioPath, int uid, int transformsReason); in onFileOpen() argument
|
D | TranscodeHelperNoOp.java | 60 public void onFileOpen(String path, String ioPath, int uid, int transformsReason) {} in onFileOpen() argument
|
D | TranscodeHelperImpl.java | 1059 public void onFileOpen(String path, String ioPath, int uid, int transformsReason) { in onFileOpen() argument 1094 } else if (isTranscodeFileCached(path, ioPath)) { in onFileOpen()
|
D | MediaProvider.java | 2376 final String ioPath = mTranscodeHelper.prepareIoPath(path, uid); in handleTranscodedFileLookup() local 2377 final boolean transformsComplete = mTranscodeHelper.isTranscodeFileCached(path, ioPath); in handleTranscodedFileLookup() 2380 transformsComplete, /* transformsSupported */ true, ioPath); in handleTranscodedFileLookup() 8500 private void notifyTranscodeHelperOnFileOpen(String path, String ioPath, int uid, 8509 mTranscodeHelper.onFileOpen(path, ioPath, uid, transformsReason); 9792 private long[] getRedactionRangesForFuse(String path, String ioPath, int original_uid, int uid, 9798 final File file = new File(ioPath); 9972 public FileOpenResult onFileOpenForFuse(String path, String ioPath, int uid, int tid, 10009 path = ioPath; 10032 redact ? getRedactionRangesForFuse(path, ioPath, originalUid, uid, tid, [all …]
|