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, const char *mountpoint) { argument
80 args[4] = fsPath;
H A DFat.cpp52 int Fat::check(const char *fsPath) { argument
67 args[3] = fsPath;
115 int Fat::doMount(const char *fsPath, const char *mountPoint, argument
146 rc = mount(fsPath, mountPoint, "vfat", flags, mountData);
149 SLOGE("%s appears to be a read only filesystem - retrying mount RO", fsPath);
151 rc = mount(fsPath, mountPoint, "vfat", flags, mountData);
172 int Fat::format(const char *fsPath, unsigned int numSectors, bool wipe) { argument
179 Fat::wipe(fsPath, numSectors);
196 args[9] = fsPath;
200 args[7] = fsPath;
230 wipe(const char *fsPath, unsigned int numSectors) argument
[all...]

Completed in 3 milliseconds