Searched refs:overlay_apk_path (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/cmds/idmap/ |
D | create.cpp | 74 bool is_idmap_stale_fd(const char *target_apk_path, const char *overlay_apk_path, int idmap_fd) in is_idmap_stale_fd() argument 116 if (cached_overlay_path != overlay_apk_path) { in is_idmap_stale_fd() 125 if (get_zip_entry_crc(overlay_apk_path, AssetManager::RESOURCES_FILENAME, in is_idmap_stale_fd() 133 bool is_idmap_stale_path(const char *target_apk_path, const char *overlay_apk_path, in is_idmap_stale_path() argument 146 bool is_stale = is_idmap_stale_fd(target_apk_path, overlay_apk_path, idmap_fd); in is_idmap_stale_path() 151 int create_idmap(const char *target_apk_path, const char *overlay_apk_path, in create_idmap() argument 159 if (get_zip_entry_crc(overlay_apk_path, AssetManager::RESOURCES_FILENAME, in create_idmap() 165 bool b = am.createIdmap(target_apk_path, overlay_apk_path, target_crc, overlay_crc, in create_idmap() 170 int create_and_write_idmap(const char *target_apk_path, const char *overlay_apk_path, in create_and_write_idmap() argument 174 if (!is_idmap_stale_fd(target_apk_path, overlay_apk_path, fd)) { in create_and_write_idmap() [all …]
|
D | idmap.cpp | 122 int maybe_create_fd(const char *target_apk_path, const char *overlay_apk_path, in maybe_create_fd() argument 140 if (!verify_file_readable(overlay_apk_path)) { in maybe_create_fd() 141 ALOGD("error: failed to read apk %s: %s\n", overlay_apk_path, strerror(errno)); in maybe_create_fd() 145 return idmap_create_fd(target_apk_path, overlay_apk_path, idmap_fd); in maybe_create_fd() 148 int maybe_create_path(const char *target_apk_path, const char *overlay_apk_path, in maybe_create_path() argument 161 if (!verify_file_readable(overlay_apk_path)) { in maybe_create_path() 162 ALOGD("error: failed to read apk %s: %s\n", overlay_apk_path, strerror(errno)); in maybe_create_path() 166 return idmap_create_path(target_apk_path, overlay_apk_path, idmap_path); in maybe_create_path()
|
D | scan.cpp | 210 char overlay_apk_path[PATH_MAX + 1]; in idmap_scan() local 211 snprintf(overlay_apk_path, PATH_MAX, "%s/%s", overlay_dir, dirent->d_name); in idmap_scan() 212 if (stat(overlay_apk_path, &st) < 0) { in idmap_scan() 219 int priority = parse_apk(overlay_apk_path, target_package_name); in idmap_scan() 225 idmap_path.appendPath(flatten_path(overlay_apk_path + 1)); in idmap_scan() 228 if (idmap_create_path(target_apk_path, overlay_apk_path, idmap_path.string()) != 0) { in idmap_scan() 230 target_apk_path, overlay_apk_path, idmap_path.string()); in idmap_scan() 234 Overlay overlay(String8(overlay_apk_path), idmap_path, priority); in idmap_scan()
|
D | idmap.h | 21 int idmap_create_path(const char *target_apk_path, const char *overlay_apk_path, 24 int idmap_create_fd(const char *target_apk_path, const char *overlay_apk_path, int fd);
|