OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:idmap_fd
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/cmds/idmap/
create.cpp
75
bool is_idmap_stale_fd(const char *target_apk_path, const char *overlay_apk_path, int
idmap_fd
)
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
);
idmap.cpp
134
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
);
Completed in 3625 milliseconds