OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fsRep
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebCore/platform/posix/
FileSystemPOSIX.cpp
50
CString
fsRep
= fileSystemRepresentation(path);
52
if (!
fsRep
.data() ||
fsRep
.data()[0] == '\0')
58
return !stat(
fsRep
.data(), &fileInfo);
63
CString
fsRep
= fileSystemRepresentation(path);
65
if (!
fsRep
.data() ||
fsRep
.data()[0] == '\0')
69
return !unlink(
fsRep
.data());
74
CString
fsRep
= fileSystemRepresentation(path);
76
if (
fsRep
.isNull()
[
all
...]
/external/webkit/Source/WebCore/platform/android/
FileSystemAndroid.cpp
95
CString
fsRep
= fileSystemRepresentation(path);
96
String fsPath = String(
fsRep
.data());
/external/webkit/Source/WebCore/platform/gtk/
FileSystemGtk.cpp
244
CString
fsRep
= fileSystemRepresentation(path);
245
if (
fsRep
.isNull())
248
GRefPtr<GFile> file = adoptGRef(g_file_new_for_path(
fsRep
.data()));
253
if (g_file_test(
fsRep
.data(), static_cast<GFileTest>(G_FILE_TEST_EXISTS | G_FILE_TEST_IS_REGULAR)))
Completed in 1232 milliseconds