Home
last modified time | relevance | path

Searched refs:fsRep (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/platform/posix/
DFileSystemPOSIX.cpp50 CString fsRep = fileSystemRepresentation(path); in fileExists() local
52 if (!fsRep.data() || fsRep.data()[0] == '\0') in fileExists()
58 return !stat(fsRep.data(), &fileInfo); in fileExists()
63 CString fsRep = fileSystemRepresentation(path); in deleteFile() local
65 if (!fsRep.data() || fsRep.data()[0] == '\0') in deleteFile()
69 return !unlink(fsRep.data()); in deleteFile()
74 CString fsRep = fileSystemRepresentation(path); in openFile() local
76 if (fsRep.isNull()) in openFile()
84 return open(fsRep.data(), platformFlag, 0666); in openFile()
142 CString fsRep = fileSystemRepresentation(path); in deleteEmptyDirectory() local
[all …]
/external/webkit/Source/WebCore/platform/android/
DFileSystemAndroid.cpp95 CString fsRep = fileSystemRepresentation(path); in pathGetFileName() local
96 String fsPath = String(fsRep.data()); in pathGetFileName()
/external/webkit/Source/WebCore/platform/gtk/
DFileSystemGtk.cpp244 CString fsRep = fileSystemRepresentation(path); in openFile() local
245 if (fsRep.isNull()) in openFile()
248 GRefPtr<GFile> file = adoptGRef(g_file_new_for_path(fsRep.data())); in openFile()
253 …if (g_file_test(fsRep.data(), static_cast<GFileTest>(G_FILE_TEST_EXISTS | G_FILE_TEST_IS_REGULAR))) in openFile()