/aosp12/frameworks/base/core/java/android/os/incremental/ |
H A 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 …]
|
H A 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
|
H A D | IncrementalFileStorages.java | 191 final File sourcePath = new File(fromBase, relativePath); in makeLink() local 193 mInheritedStorage.makeLink(sourcePath.getAbsolutePath(), mDefaultStorage, in makeLink()
|
/aosp12/build/soong/android/ |
H A D | prebuilt_build_tool.go | 59 sourcePath := t.prebuilt.SingleSourcePath(ctx) 63 var fromPath = sourcePath.String() 71 Input: sourcePath, 79 ctx.PackageFile(packagingDir, sourcePath.String(), sourcePath)
|
/aosp12/hardware/nxp/secure_element/pn8x/ls_client/src/ |
H A D | LsClient.cpp | 310 std::string sourcePath; in performLSDownload_thread() local 320 sourcePath.assign(sourcePrefix); in performLSDownload_thread() 321 sourcePath += ('0' + index); in performLSDownload_thread() 322 sourcePath += ls_script_source_suffix; in performLSDownload_thread() 323 FILE* fIn = fopen(sourcePath.c_str(), "rb"); in performLSDownload_thread() 326 sourcePath.c_str(), strerror(errno)); in performLSDownload_thread() 330 sourcePath.c_str()); in performLSDownload_thread() 392 status = LSC_Start(sourcePath.c_str(), outPath.c_str(), (uint8_t*)hash, in performLSDownload_thread() 395 __func__, sourcePath.c_str(), status); in performLSDownload_thread()
|
/aosp12/system/vold/model/ |
H A D | StubVolume.cpp | 29 StubVolume::StubVolume(dev_t id, const std::string& sourcePath, const std::string& mountPath, in StubVolume() argument 33 mSourcePath(sourcePath), in StubVolume()
|
H A D | ObbVolume.cpp | 42 ObbVolume::ObbVolume(int id, const std::string& sourcePath, const std::string& sourceKey, in ObbVolume() argument 46 mSourcePath = sourcePath; in ObbVolume()
|
H A D | ObbVolume.h | 32 ObbVolume(int id, const std::string& sourcePath, const std::string& sourceKey, gid_t ownerGid);
|
H A D | StubVolume.h | 34 StubVolume(dev_t id, const std::string& sourcePath, const std::string& mountPath,
|
/aosp12/frameworks/base/tools/aapt/ |
H A 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()
|
H A D | CrunchCache.h | 32 CrunchCache(String8 sourcePath, String8 destPath, FileFinder* ff);
|
/aosp12/frameworks/base/services/incremental/ |
H A 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,
|
H A 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()
|
/aosp12/build/soong/finder/fs/ |
H A D | fs.go | 565 func (m *MockFs) Rename(sourcePath string, destPath string) error { 567 sourcePath, err := m.resolve(sourcePath, false) 571 sourceParentPath := filepath.Dir(sourcePath) 579 Path: sourcePath, 586 Path: sourcePath, 613 sourceBase := filepath.Base(sourcePath) 624 Path: sourcePath,
|
/aosp12/system/vold/ |
H A D | VolumeManager.cpp | 1067 int VolumeManager::createObb(const std::string& sourcePath, const std::string& sourceKey, in createObb() argument 1074 if (StartsWith(sourcePath, "/storage/")) { in createObb() 1087 if (!sourcePath.empty() && StartsWith(sourcePath, vol.getPath())) { in createObb() 1095 LOG(ERROR) << "Failed to find mounted volume for " << sourcePath; in createObb() 1099 volume->getInternalPath() + sourcePath.substr(volume->getPath().length()); in createObb() 1102 lowerSourcePath = sourcePath; in createObb() 1127 int VolumeManager::createStubVolume(const std::string& sourcePath, const std::string& mountPath, in createStubVolume() argument 1133 new android::vold::StubVolume(stubId, sourcePath, mountPath, fsType, fsUuid, fsLabel)); in createStubVolume()
|
H A D | VoldNativeService.cpp | 422 binder::Status VoldNativeService::createObb(const std::string& sourcePath, in createObb() argument 426 CHECK_ARGUMENT_PATH(sourcePath); in createObb() 431 VolumeManager::Instance()->createObb(sourcePath, sourceKey, ownerGid, _aidl_return)); in createObb() 442 binder::Status VoldNativeService::createStubVolume(const std::string& sourcePath, in createStubVolume() argument 449 CHECK_ARGUMENT_PATH(sourcePath); in createStubVolume() 457 sourcePath, mountPath, fsType, fsUuid, fsLabel, flags, _aidl_return)); in createStubVolume()
|
H A D | VoldNativeService.h | 76 binder::Status createObb(const std::string& sourcePath, const std::string& sourceKey, 80 binder::Status createStubVolume(const std::string& sourcePath, const std::string& mountPath,
|
/aosp12/build/make/tools/atree/ |
H A D | atree.cpp | 316 it->sourcePath.c_str(), it->sourceMod, in main() 320 err = copy_file(it->sourcePath, it->outPath); in main() 348 escape_filename(it->sourcePath).c_str()); in main()
|
H A D | files.cpp | 350 rec->sourcePath = full; in locate() 400 r.sourcePath = path_append(rec.sourceBase, r.sourceName); in add_more() 402 int err = stat(r.sourcePath.c_str(), &st); in add_more()
|
H A D | files.h | 26 string sourcePath; member
|
/aosp12/frameworks/av/media/libmediatranscoding/transcoder/tests/ |
H A D | VideoTrackTranscoderTests.cpp | 45 const char* sourcePath = in SetUp() local 48 const int sourceFd = open(sourcePath, O_RDONLY); in SetUp()
|
H A D | PassthroughTrackTranscoderTests.cpp | 43 const char* sourcePath = in initSourceAndExtractor() local 49 mSourceFd = open(sourcePath, O_RDONLY); in initSourceAndExtractor()
|
H A D | MediaTrackTranscoderTests.cpp | 67 void initSampleReader(const char* sourcePath) { in initSampleReader() argument 68 const int sourceFd = open(sourcePath, O_RDONLY); in initSampleReader()
|
H A D | MediaSampleReaderNDKTests.cpp | 176 const char* sourcePath = in SetUp() local 179 mSourceFd = open(sourcePath, O_RDONLY); in SetUp()
|
/aosp12/system/vold/binder/android/os/ |
H A D | IVold.aidl | 63 @utf8InCpp String createObb(@utf8InCpp String sourcePath, @utf8InCpp String sourceKey, in createObb() argument 135 @utf8InCpp String createStubVolume(@utf8InCpp String sourcePath, in createStubVolume() argument
|