Searched defs:fsPath (Results 1 - 2 of 2) sorted by relevance

/system/vold/
H A DExt4.cpp48 int Ext4::doMount(const char *fsPath, const char *mountPoint, bool ro, bool remount, argument
59 rc = mount(fsPath, mountPoint, "ext4", flags, NULL);
62 SLOGE("%s appears to be a read only filesystem - retrying mount RO", fsPath);
64 rc = mount(fsPath, mountPoint, "ext4", flags, NULL);
70 int Ext4::format(const char *fsPath) { argument
77 args[2] = fsPath;
H A DFat.cpp48 int Fat::check(const char *fsPath) { argument
62 args[3] = fsPath;
97 int Fat::doMount(const char *fsPath, const char *mountPoint, argument
128 rc = mount(fsPath, mountPoint, "vfat", flags, mountData);
131 SLOGE("%s appears to be a read only filesystem - retrying mount RO", fsPath);
133 rc = mount(fsPath, mountPoint, "vfat", flags, mountData);
154 int Fat::format(const char *fsPath, unsigned int numSectors) { argument
173 args[9] = fsPath;
177 args[7] = fsPath;

Completed in 395 milliseconds