/frameworks/base/core/java/android/os/incremental/ |
D | IncrementalStorage.java | 77 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 …]
|
D | IIncrementalService.aidl | 65 …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
|
D | IncrementalFileStorages.java | 191 final File sourcePath = new File(fromBase, relativePath); in makeLink() local 193 mInheritedStorage.makeLink(sourcePath.getAbsolutePath(), mDefaultStorage, in makeLink()
|
/frameworks/base/tools/aapt/ |
D | CrunchCache.cpp | 19 CrunchCache::CrunchCache(String8 sourcePath, String8 destPath, FileFinder* ff) in CrunchCache() argument 20 : mSourcePath(sourcePath), mDestPath(destPath), mSourceFiles(0), mDestFiles(0), mFileFinder(ff) in CrunchCache()
|
D | CrunchCache.h | 32 CrunchCache(String8 sourcePath, String8 destPath, FileFinder* ff);
|
/frameworks/base/services/incremental/ |
D | BinderIncrementalService.h | 57 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,
|
D | BinderIncrementalService.cpp | 159 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/ |
D | VideoTrackTranscoderTests.cpp | 45 const char* sourcePath = in SetUp() local 48 const int sourceFd = open(sourcePath, O_RDONLY); in SetUp()
|
D | PassthroughTrackTranscoderTests.cpp | 43 const char* sourcePath = in initSourceAndExtractor() local 49 mSourceFd = open(sourcePath, O_RDONLY); in initSourceAndExtractor()
|
D | MediaTrackTranscoderTests.cpp | 67 void initSampleReader(const char* sourcePath) { in initSampleReader() argument 68 const int sourceFd = open(sourcePath, O_RDONLY); in initSampleReader()
|
D | MediaSampleReaderNDKTests.cpp | 176 const char* sourcePath = in SetUp() local 179 mSourceFd = open(sourcePath, O_RDONLY); in SetUp()
|
D | MediaSampleWriterTests.cpp | 129 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/ |
D | PackageManagerServiceUtils.java | 971 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()
|