Searched defs:idmap_fd (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/cmds/idmap/
H A Didmap.cpp134 int idmap_fd = strtol(idmap_str, &endptr, 10); local
150 return idmap_create_fd(target_apk_path, overlay_apk_path, idmap_fd);
178 int idmap_fd = strtol(idmap_str, &endptr, 10); local
194 return idmap_verify_fd(target_apk_path, overlay_apk_path, idmap_fd);
H A Dcreate.cpp75 bool is_idmap_stale_fd(const char *target_apk_path, const char *overlay_apk_path, int idmap_fd) argument
79 if (fstat(idmap_fd, &st) == -1) {
89 if (lseek(idmap_fd, 0, SEEK_SET) < 0) {
93 ssize_t r = TEMP_FAILURE_RETRY(read(idmap_fd, buf + N - bytesLeft, bytesLeft));
147 int idmap_fd = TEMP_FAILURE_RETRY(open(idmap_path, O_RDONLY)); local
148 if (idmap_fd == -1) {
151 bool is_stale = is_idmap_stale_fd(target_apk_path, overlay_apk_path, idmap_fd);
152 close(idmap_fd);
/frameworks/native/cmds/installd/
H A DInstalldNativeService.cpp2082 static void run_idmap(const char *target_apk, const char *overlay_apk, int idmap_fd) argument
2085 StringPrintf("%d", idmap_fd).c_str(), (char*)NULL);
2089 static void run_verify_idmap(const char *target_apk, const char *overlay_apk, int idmap_fd) argument
2092 StringPrintf("%d", idmap_fd).c_str(), (char*)NULL);
2098 int idmap_fd = open(idmap_path, O_RDWR); local
2099 if (idmap_fd < 0) {
2117 if (flock(idmap_fd, LOCK_EX | LOCK_NB) != 0) {
2122 run_verify_idmap(target_apk, overlay_apk, idmap_fd);
2126 close(idmap_fd);
2184 int idmap_fd local
[all...]

Completed in 186 milliseconds