Home
last modified time | relevance | path

Searched refs:full_path (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/tools/aapt2/flatten/
DArchive.cpp59 std::string full_path = dir_; in StartEntry() local
60 file::AppendPath(&full_path, path); in StartEntry()
61 file::mkdirs(file::GetStem(full_path)); in StartEntry()
63 file_ = {fopen(full_path.data(), "wb"), fclose}; in StartEntry()
/frameworks/base/tools/aapt2/util/
DFiles.cpp285 std::string full_path = root_dir; in FindFiles() local
286 AppendPath(&full_path, file_name); in FindFiles()
287 const FileType file_type = GetFileType(full_path); in FindFiles()
/frameworks/base/tools/aapt2/cmd/
DCompile.cpp177 std::string full_path = prefix_path; in LoadInputFilesFromDir() local
178 file::AppendPath(&full_path, leaf_entry->d_name); in LoadInputFilesFromDir()
181 Maybe<ResourcePathData> path_data = ExtractResourcePathData(full_path, &err_str); in LoadInputFilesFromDir()
DLink.cpp1344 std::string full_path = assets_dir; in CopyAssetsDirsToApk() local
1345 file::AppendPath(&full_path, file); in CopyAssetsDirsToApk()
1350 util::make_unique<io::RegularFile>(Source(std::move(full_path)))); in CopyAssetsDirsToApk()
1353 << "asset file overrides '" << full_path << "'"); in CopyAssetsDirsToApk()
/frameworks/native/cmds/installd/
Ddexopt.cpp822 const char* full_path = code_full_path.c_str(); in dump_profiles() local
823 unique_fd apk_fd(open(full_path, O_RDONLY | O_NOFOLLOW)); in dump_profiles()
825 ALOGE("installd cannot open '%s'\n", full_path); in dump_profiles()
828 dex_locations.push_back(get_location_from_path(full_path)); in dump_profiles()
/frameworks/base/libs/androidfw/
DAssetManager2.cpp205 std::string full_path = "assets/" + dirname; in OpenDir() local
221 if (!apk_assets->ForEachFile(full_path, func)) { in OpenDir()