Searched refs:fsPath (Results 1 - 4 of 4) sorted by path

/system/vold/
H A DExt4.cpp49 int Ext4::doMount(const char *fsPath, const char *mountPoint, bool ro, bool remount, argument
60 rc = mount(fsPath, mountPoint, "ext4", flags, NULL);
63 SLOGE("%s appears to be a read only filesystem - retrying mount RO", fsPath);
65 rc = mount(fsPath, mountPoint, "ext4", flags, NULL);
114 int Ext4::format(const char *fsPath, unsigned int numSectors, const char *mountpoint) { argument
130 args[6] = fsPath;
133 args[4] = fsPath;
H A DExt4.h24 static int doMount(const char *fsPath, const char *mountPoint, bool ro, bool remount,
26 static int format(const char *fsPath, unsigned int numSectors, const char *mountpoint);
27 static int resize(const char *fsPath, unsigned int numSectors);
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);
197 args[10] = fsPath;
201 args[8] = fsPath;
231 wipe(const char *fsPath, unsigned int numSectors) argument
[all...]
H A DFat.h24 static int check(const char *fsPath);
25 static int doMount(const char *fsPath, const char *mountPoint,
29 static int format(const char *fsPath, unsigned int numSectors, bool wipe);
32 static void wipe(const char *fsPath, unsigned int numSectors);

Completed in 117 milliseconds