Home
last modified time | relevance | path

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

/frameworks/base/tools/aapt2/format/
DArchive.cpp61 std::string full_path = dir_; in StartEntry() local
62 file::AppendPath(&full_path, path); in StartEntry()
63 file::mkdirs(file::GetStem(full_path).to_string()); in StartEntry()
65 file_ = {::android::base::utf8::fopen(full_path.c_str(), "wb"), fclose}; in StartEntry()
/frameworks/base/tools/aapt2/util/
DFiles.cpp308 std::string full_path = root_dir; in FindFiles() local
309 AppendPath(&full_path, file_name); in FindFiles()
310 const FileType file_type = GetFileType(full_path); in FindFiles()
/frameworks/base/tools/aapt2/cmd/
DCompile.cpp186 std::string full_path = prefix_path; in LoadInputFilesFromDir() local
187 file::AppendPath(&full_path, leaf_entry->d_name); in LoadInputFilesFromDir()
190 Maybe<ResourcePathData> path_data = ExtractResourcePathData(full_path, &err_str); in LoadInputFilesFromDir()
192 context->GetDiagnostics()->Error(DiagMessage(full_path) << err_str); in LoadInputFilesFromDir()
DLink.cpp1543 std::string full_path = assets_dir; in CopyAssetsDirsToApk() local
1544 file::AppendPath(&full_path, file); in CopyAssetsDirsToApk()
1549 util::make_unique<io::RegularFile>(Source(std::move(full_path)))); in CopyAssetsDirsToApk()
1552 << "asset file overrides '" << full_path << "'"); in CopyAssetsDirsToApk()
/frameworks/base/libs/androidfw/
DAssetManager2.cpp252 std::string full_path = "assets/" + dirname; in OpenDir() local
268 if (!apk_assets->ForEachFile(full_path, func)) { in OpenDir()