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

/frameworks/base/cmds/idmap/
H A Dcreate.cpp74 bool is_idmap_stale_fd(const char *target_apk_path, const char *overlay_apk_path, int idmap_fd) argument
78 if (fstat(idmap_fd, &st) == -1) {
88 if (lseek(idmap_fd, SEEK_SET, 0) < 0) {
92 ssize_t r = TEMP_FAILURE_RETRY(read(idmap_fd, buf + N - bytesLeft, bytesLeft));
142 int idmap_fd = TEMP_FAILURE_RETRY(open(idmap_path, O_RDONLY)); local
143 if (idmap_fd == -1) {
146 bool is_stale = is_idmap_stale_fd(target_apk_path, overlay_apk_path, idmap_fd);
147 close(idmap_fd);
H A Didmap.cpp129 int idmap_fd = strtol(idmap_str, &endptr, 10); local
145 return idmap_create_fd(target_apk_path, overlay_apk_path, idmap_fd);
/frameworks/native/cmds/installd/
H A Dcommands.c1442 static void run_idmap(const char *target_apk, const char *overlay_apk, int idmap_fd) argument
1448 snprintf(idmap_str, sizeof(idmap_str), "%d", idmap_fd);
1493 int idmap_fd = -1; local
1503 idmap_fd = open(idmap_path, O_RDWR | O_CREAT | O_EXCL, 0644);
1504 if (idmap_fd < 0) {
1508 if (fchown(idmap_fd, AID_SYSTEM, uid) < 0) {
1512 if (fchmod(idmap_fd, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH) < 0) {
1529 if (flock(idmap_fd, LOCK_EX | LOCK_NB) != 0) {
1534 run_idmap(target_apk, overlay_apk, idmap_fd);
1544 close(idmap_fd);
[all...]

Completed in 77 milliseconds