OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fstab
(Results
1 - 3
of
3
) sorted by null
/bootable/recovery/
roots.cpp
38
static struct
fstab
*
fstab
= NULL;
variable in typeref:struct:fstab
49
fstab
= fs_mgr_read_fstab("/etc/recovery.
fstab
");
50
if (!
fstab
) {
51
LOGE("failed to read /etc/recovery.
fstab
\n");
55
ret = fs_mgr_add_entry(
fstab
, "/tmp", "ramdisk", "ramdisk");
57
LOGE("failed to add /tmp entry to
fstab
\n");
58
fs_mgr_free_fstab(
fstab
);
59
fstab
= NULL
[
all
...]
/bootable/recovery/uncrypt/
uncrypt.c
61
static struct
fstab
*
fstab
= NULL;
variable in typeref:struct:fstab
108
static struct
fstab
* read_fstab()
110
fstab
= NULL;
112
// The
fstab
path is always "/
fstab
.${ro.hardware}".
113
char fstab_path[PATH_MAX+1] = "/
fstab
.";
119
fstab
= fs_mgr_read_fstab(fstab_path);
120
if (!
fstab
) {
125
return
fstab
;
[
all
...]
/external/e2fsprogs/misc/
fsck.c
66
#define _PATH_MNTTAB "/etc/
fstab
"
331
* Load the filesystem database from /etc/
fstab
369
"WARNING: Your /etc/
fstab
does not contain the fsck passno\n"
371
" should fix your /etc/
fstab
file as soon as you can.\n\n"), stderr);
379
/* Lookup filesys in /etc/
fstab
and return the corresponding entry. */
696
* use that type regardless of what is specified in /etc/
fstab
.
699
* specified in /etc/
fstab
, or DEFAULT_FSTYPE.
883
_("%s: skipping bad line in /etc/
fstab
: bind mount with nonzero fsck pass number\n"),
956
/* Check all file systems, using the /etc/
fstab
table. */
1257
const char *
fstab
;
local
[
all
...]
Completed in 5272 milliseconds