Home
last modified time | relevance | path

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

/aosp14/frameworks/base/tools/aapt2/optimize/
H A DObfuscator.cpp86 std::map<std::string, std::string>& shortened_path_map, in HandleShortenFilePaths() argument
123 shortened_path_map.insert({*file_ref->path, shortened_path}); in HandleShortenFilePaths()
196 return HandleShortenFilePaths(table, options_.shortened_path_map, in Consume()
210 for (const auto& [original_path, shortened_path] : options_.shortened_path_map) { in WriteObfuscationMap()
H A DObfuscator_test.cpp61 std::map<std::string, std::string>& path_map = options.table_flattener_options.shortened_path_map; in TEST()
98 std::map<std::string, std::string>& path_map = options.table_flattener_options.shortened_path_map; in TEST()
120 std::map<std::string, std::string>& path_map = options.table_flattener_options.shortened_path_map; in TEST()
157 std::map<std::string, std::string>& path_map = options.table_flattener_options.shortened_path_map; in TEST()
185 options.table_flattener_options.shortened_path_map; in TEST()
207 std::map<std::string, std::string>& actual_mapping = actual_options.shortened_path_map; in TEST()
/aosp14/frameworks/base/tools/aapt2/format/binary/
H A DTableFlattener.h67 std::map<std::string, std::string> shortened_path_map; member
/aosp14/frameworks/base/tools/aapt2/
H A DLoadedApk.cpp232 auto it = options.shortened_path_map.find(path); in WriteToArchive()
233 if (it != options.shortened_path_map.end()) { in WriteToArchive()
/aosp14/frameworks/base/tools/aapt2/cmd/
H A DOptimize.cpp174 && !WriteShortenedPathsMap(options_.table_flattener_options.shortened_path_map, in Run()