OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fstab_path
(Results
1 - 4
of
4
) sorted by null
/bootable/recovery/bootloader_message/
bootloader_message.cpp
34
std::string
fstab_path
= "/fstab.";
local
40
fstab_path
+= value;
41
struct fstab* fstab = fs_mgr_read_fstab(
fstab_path
.c_str());
43
*err = "failed to read " +
fstab_path
;
/system/core/fs_mgr/include/
fs_mgr.h
75
struct fstab *fs_mgr_read_fstab(const char *
fstab_path
);
/bootable/recovery/uncrypt/
uncrypt.cpp
169
char
fstab_path
[PATH_MAX+1] = "/fstab.";
local
170
if (!property_get("ro.hardware",
fstab_path
+strlen(
fstab_path
), "")) {
175
fstab = fs_mgr_read_fstab(
fstab_path
);
177
ALOGE("failed to read %s",
fstab_path
);
/system/core/fs_mgr/
fs_mgr_fstab.c
244
struct fstab *fs_mgr_read_fstab(const char *
fstab_path
)
258
fstab_file = fopen(
fstab_path
, "r");
260
ERROR("Cannot open file %s\n",
fstab_path
);
289
fstab->fstab_filename = strdup(
fstab_path
);
Completed in 372 milliseconds