Home
last modified time | relevance | path

Searched refs:sourcePath (Results 1 – 13 of 13) sorted by relevance

/frameworks/base/core/java/android/os/incremental/
DIncrementalStorage.java77 public void bind(@NonNull String sourcePath, @NonNull String targetPath) in bind() argument
80 int res = mService.makeBindMount(mId, sourcePath, targetPath, in bind()
108 public void bindPermanent(@NonNull String sourcePath, @NonNull String targetPath) in bindPermanent() argument
111 int res = mService.makeBindMount(mId, sourcePath, targetPath, in bindPermanent()
212 @NonNull String sourcePath, long rangeStart, long rangeEnd) throws IOException { in makeFileFromRange() argument
214 int res = mService.makeFileFromRange(mId, destPath, sourcePath, in makeFileFromRange()
232 public void makeLink(@NonNull String sourcePath, IncrementalStorage destStorage, in makeLink() argument
235 int res = mService.makeLink(mId, sourcePath, destStorage.getId(), in makeLink()
292 public void moveDir(@NonNull String sourcePath, @NonNull String destPath) throws IOException { in moveDir() argument
297 int res = mService.makeBindMount(mId, sourcePath, destPath, in moveDir()
[all …]
DIIncrementalService.aidl65 …int makeBindMount(int storageId, in @utf8InCpp String sourcePath, in @utf8InCpp String targetFullP… in makeBindMount() argument
92 …e(int storageId, in @utf8InCpp String targetPath, in @utf8InCpp String sourcePath, long start, lon… in makeFileFromRange() argument
100 …int makeLink(int sourceStorageId, in @utf8InCpp String sourcePath, int destStorageId, in @utf8InCp… in makeLink() argument
DIncrementalFileStorages.java191 final File sourcePath = new File(fromBase, relativePath); in makeLink() local
193 mInheritedStorage.makeLink(sourcePath.getAbsolutePath(), mDefaultStorage, in makeLink()
/frameworks/base/tools/aapt/
DCrunchCache.cpp19 CrunchCache::CrunchCache(String8 sourcePath, String8 destPath, FileFinder* ff) in CrunchCache() argument
20 : mSourcePath(sourcePath), mDestPath(destPath), mSourceFiles(0), mDestFiles(0), mFileFinder(ff) in CrunchCache()
DCrunchCache.h32 CrunchCache(String8 sourcePath, String8 destPath, FileFinder* ff);
/frameworks/base/services/incremental/
DBinderIncrementalService.h57 binder::Status makeBindMount(int32_t storageId, const std::string& sourcePath,
71 const std::string& sourcePath, int64_t start, int64_t end,
73 binder::Status makeLink(int32_t sourceStorageId, const std::string& sourcePath,
DBinderIncrementalService.cpp159 const std::string& sourcePath, in makeBindMount() argument
162 *_aidl_return = mImpl.bind(storageId, sourcePath, targetFullPath, in makeBindMount()
237 const std::string& sourcePath, in makeFileFromRange() argument
246 const std::string& sourcePath, in makeLink() argument
250 *_aidl_return = mImpl.link(sourceStorageId, sourcePath, destStorageId, destPath); in makeLink()
/frameworks/av/media/libmediatranscoding/transcoder/tests/
DVideoTrackTranscoderTests.cpp45 const char* sourcePath = in SetUp() local
48 const int sourceFd = open(sourcePath, O_RDONLY); in SetUp()
DPassthroughTrackTranscoderTests.cpp43 const char* sourcePath = in initSourceAndExtractor() local
49 mSourceFd = open(sourcePath, O_RDONLY); in initSourceAndExtractor()
DMediaTrackTranscoderTests.cpp67 void initSampleReader(const char* sourcePath) { in initSampleReader() argument
68 const int sourceFd = open(sourcePath, O_RDONLY); in initSampleReader()
DMediaSampleReaderNDKTests.cpp176 const char* sourcePath = in SetUp() local
179 mSourceFd = open(sourcePath, O_RDONLY); in SetUp()
DMediaSampleWriterTests.cpp129 static const char* sourcePath = in init() local
135 int sourceFd = open(sourcePath, O_RDONLY); in init()
/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerServiceUtils.java971 private static void copyFile(String sourcePath, File targetDir, String targetName) in copyFile() argument
976 Slog.d(TAG, "Copying " + sourcePath + " to " + targetName); in copyFile()
984 source = new FileInputStream(sourcePath); in copyFile()