HomeSort by relevance Sort by last modified time
    Searched refs:fsPath (Results 1 - 6 of 6) sorted by null

  /system/vold/
Fat.h 24 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);
Ext4.h 24 static int doMount(const char *fsPath, const char *mountPoint, bool ro, bool remount,
26 static int format(const char *fsPath, const char *mountpoint);
Ext4.cpp 48 int Ext4::doMount(const char *fsPath, const char *mountPoint, bool ro, bool remount,
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) {
80 args[4] = fsPath;
Fat.cpp 50 int Fat::check(const char *fsPath) {
65 args[3] = fsPath;
113 int Fat::doMount(const char *fsPath, const char *mountPoint,
144 rc = mount(fsPath, mountPoint, "vfat", flags, mountData);
147 SLOGE("%s appears to be a read only filesystem - retrying mount RO", fsPath);
149 rc = mount(fsPath, mountPoint, "vfat", flags, mountData);
170 int Fat::format(const char *fsPath, unsigned int numSectors) {
190 args[9] = fsPath;
194 args[7] = fsPath;
  /external/webkit/Source/WebCore/platform/android/
FileSystemAndroid.cpp 96 String fsPath = String(fsRep.data());
97 return fsPath.substring(fsPath.reverseFind('/') + 1);
  /external/webkit/Source/WebCore/platform/win/
ClipboardWin.cpp 261 String fsPath;
280 fsPath = filesystemPathFromUrlOrTitle(url, preferredTitle, extension.charactersWithNullTermination(), false);
282 if (fsPath.length() <= 0) {
288 int maxSize = min(fsPath.length(), WTF_ARRAY_LENGTH(fgd->fgd[0].cFileName));
289 CopyMemory(fgd->fgd[0].cFileName, (LPCWSTR)fsPath.characters(), maxSize * sizeof(UChar));
724 String fsPath = filesystemPathFromUrlOrTitle(url, titleStr, L".URL", true);
727 if (fsPath.length() <= 0)
746 unsigned maxSize = min(fsPath.length(), WTF_ARRAY_LENGTH(fgd->fgd[0].cFileName));
747 CopyMemory(fgd->fgd[0].cFileName, fsPath.characters(), maxSize * sizeof(UChar));

Completed in 299 milliseconds