Searched defs:filePath (Results 1 - 8 of 8) sorted by relevance

/external/webkit/WebCore/platform/gtk/
H A DSharedBufferGtk.cpp30 PassRefPtr<SharedBuffer> SharedBuffer::createWithContentsOfFile(const String& filePath) argument
32 if (filePath.isEmpty())
35 gchar* filename = filenameFromString(filePath);
40 LOG_ERROR("Failed to fully read contents of file %s - %s", filenameForDisplay(filePath).utf8().data(), error->message);
/external/webkit/WebCore/platform/win/
H A DSharedBufferWin.cpp34 PassRefPtr<SharedBuffer> SharedBuffer::createWithContentsOfFile(const String& filePath) argument
36 if (filePath.isEmpty())
39 String nullifiedPath = filePath;
42 LOG_ERROR("Failed to open file %s to create shared buffer, errno(%i)", filePath.ascii().data(), errno);
63 LOG_ERROR("Failed to fully read contents of file %s - errno(%i)", filePath.ascii().data(), errno);
/external/icu4c/tools/toolutil/
H A Dfiletools.cpp35 isFileModTimeLater(const char *filePath, const char *checkAgainst, UBool isDir) { argument
38 if (filePath == NULL || checkAgainst == NULL) {
59 isLatest = isFileModTimeLater(filePath, newpath, isDir);
64 int32_t latest = whichFileModTimeIsLater(filePath, newpath);
81 int32_t latest = whichFileModTimeIsLater(filePath, checkAgainst);
122 swapFileSepChar(char *filePath, const char oldFileSepChar, const char newFileSepChar) { argument
123 for (int32_t i = 0, length = uprv_strlen(filePath); i < length; i++) {
124 filePath[i] = (filePath[i] == oldFileSepChar ) ? newFileSepChar : filePath[
[all...]
/external/webkit/WebKit/chromium/public/
H A DWebHTTPBody.h53 WebString filePath; member in struct:WebKit::WebHTTPBody::Element
/external/webkit/WebKit/chromium/src/
H A DWebHTTPBody.cpp81 result.filePath.reset();
89 result.filePath = element.m_filename;
110 void WebHTTPBody::appendFile(const WebString& filePath) argument
113 m_private->appendFile(filePath);
116 void WebHTTPBody::appendFile(const WebString& filePath, long long fileStart, long long fileLength, const WebFileInfo& fileInfo) argument
/external/webkit/WebCore/platform/android/
H A DFileSystemAndroid.cpp119 char filePath[1024]; local
120 if ((int) (sizeof(filePath) - 1) < snprintf(filePath,
121 sizeof(filePath), "%s/%s", cpath.data(), name)) {
124 entries.append(filePath);
/external/quake/quake/src/WinQuake/
H A Dsys_android.cpp424 char filePath[1024]; local
425 if ((int) (sizeof(filePath)-1) < snprintf(filePath, sizeof(filePath), "%s/%s", path, name)) {
428 if(direxists(filePath)) {
429 rmDir(filePath);
432 unlink(filePath);
/external/sqlite/dist/
H A Dsqlite3.c24906 ** for the database file "filePath". It then returns the sqlite3_io_methods
24912 const char *filePath, /* name of the database file */
24934 if( !filePath ){
24935 /* If filePath==NULL that means we are dealing with a transient file
24939 if( statfs(filePath, &fsInfo) != -1 ){
24973 ** for the database file "filePath". It then returns the sqlite3_io_methods
24979 const char *filePath, /* name of the database file */
24984 if( !filePath ){
24985 /* If filePath==NULL that means we are dealing with a transient file
26714 /* afp style keeps a reference to the db path in the filePath fiel
24911 autolockIoFinderImpl( const char *filePath, unixFile *pNew ) argument
24978 autolockIoFinderImpl( const char *filePath, unixFile *pNew ) argument
[all...]

Completed in 305 milliseconds