HomeSort by relevance Sort by last modified time
    Searched refs:idmap_path (Results 1 - 6 of 6) sorted by null

  /frameworks/base/cmds/idmap/
idmap.h 24 const char *idmap_path);
34 int idmap_inspect(const char *idmap_path);
idmap.cpp 150 const char *idmap_path)
167 return idmap_create_path(target_apk_path, overlay_apk_path, idmap_path);
200 int maybe_inspect(const char *idmap_path)
203 if (!verify_file_readable(idmap_path)) {
204 ALOGD("error: failed to read idmap %s: %s\n", idmap_path, strerror(errno));
207 return idmap_inspect(idmap_path);
scan.cpp 25 apk_path(a), idmap_path(i), priority(p) {}
33 String8 idmap_path; member in struct:__anon28089::Overlay
59 fprintf(fout, "%s %s\n", overlay.apk_path.string(), overlay.idmap_path.string());
217 String8 idmap_path(idmap_dir);
218 idmap_path.appendPath(flatten_path(overlay_apk_path + 1));
219 idmap_path.append("@idmap");
221 if (idmap_create_path(target_apk_path, overlay_apk_path, idmap_path.string()) != 0) {
223 target_apk_path, overlay_apk_path, idmap_path.string());
227 Overlay overlay(String8(overlay_apk_path), idmap_path, priority); local
create.cpp 135 const char *idmap_path)
138 if (stat(idmap_path, &st) == -1) {
143 int idmap_fd = TEMP_FAILURE_RETRY(open(idmap_path, O_RDONLY));
199 const char *idmap_path)
201 if (!is_idmap_stale_path(target_apk_path, overlay_apk_path, idmap_path)) {
206 int fd = open_idmap(idmap_path);
214 unlink(idmap_path);
inspect.cpp 33 status_t init(const char *idmap_path) {
37 if (stat(idmap_path, &st) < 0) {
38 printe("failed to stat idmap '%s': %s\n", idmap_path, strerror(errno));
42 if ((fd = TEMP_FAILURE_RETRY(open(idmap_path, O_RDONLY))) < 0) {
43 printe("failed to open idmap '%s': %s\n", idmap_path, strerror(errno));
294 int idmap_inspect(const char *idmap_path) {
296 if (buf.init(idmap_path) < 0) {
  /frameworks/native/cmds/installd/
commands.cpp 1986 char idmap_path[PATH_MAX]; local
    [all...]

Completed in 1194 milliseconds