Searched defs:c_source (Results 1 - 3 of 3) sorted by relevance

/system/vold/fs/
H A DF2fs.cpp54 const char* c_source = source.c_str(); local
58 int res = mount(c_source, c_target, "f2fs", flags, NULL);
62 res = mount(c_source, c_target, "f2fs", flags | MS_RDONLY, NULL);
H A DVfat.cpp133 const char* c_source = source.c_str(); local
146 rc = mount(c_source, c_target, "vfat", flags, mountData);
149 SLOGE("%s appears to be a read only filesystem - retrying mount RO", c_source);
151 rc = mount(c_source, c_target, "vfat", flags, mountData);
H A DExt4.cpp73 const char* c_source = source.c_str(); local
94 ret = mount(c_source, c_target, "ext4", tmpmnt_flags, tmpmnt_opts);
115 kFsckPath, c_source);
117 ALOGD("Running %s on %s\n", kFsckPath, c_source);
122 cmd.push_back(c_source);
136 const char* c_source = source.c_str(); local
145 rc = mount(c_source, c_target, "ext4", flags, NULL);
148 SLOGE("%s appears to be a read only filesystem - retrying mount RO", c_source);
150 rc = mount(c_source, c_target, "ext4", flags, NULL);

Completed in 101 milliseconds