OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:verity_loc
(Results
1 - 4
of
4
) sorted by null
/system/core/fs_mgr/include_fstab/fstab/
fstab.h
48
char*
verity_loc
;
member in struct:fstab_rec
/system/core/fs_mgr/
fs_mgr_verity.cpp
607
if (metadata_find(fstab->
verity_loc
, tag, SHA256_DIGEST_LENGTH,
612
fd = TEMP_FAILURE_RETRY(open(fstab->
verity_loc
, O_RDWR | O_SYNC | O_CLOEXEC));
615
PERROR << "Failed to open " << fstab->
verity_loc
;
622
<< fstab->
verity_loc
<< " offset " << offset;
633
<< fstab->
verity_loc
<< " offset " << offset;
655
return metadata_find(fstab->
verity_loc
, tag, sizeof(struct verity_state),
683
return write_verity_state(fstab->
verity_loc
, offset, *mode);
689
return write_verity_state(fstab->
verity_loc
, offset, *mode);
692
return read_verity_state(fstab->
verity_loc
, offset, mode);
fs_mgr_fstab.cpp
41
char *
verity_loc
;
member in struct:fs_mgr_flag_values
248
flag_vals->
verity_loc
= strdup(start + 1);
615
fstab->recs[cnt].
verity_loc
= flag_vals.
verity_loc
;
[
all
...]
/system/core/init/
init_first_stage.cpp
313
if (fstab_rec->
verity_loc
) {
315
verity_loc_device = fstab_rec->
verity_loc
;
316
} else if (verity_loc_device != fstab_rec->
verity_loc
) {
317
LOG(ERROR) << "More than one
verity_loc
found: " << verity_loc_device << ", "
318
<< fstab_rec->
verity_loc
;
Completed in 137 milliseconds