HomeSort by relevance Sort by last modified time
    Searched full:proposedpath (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/platform/win/
FileSystemWin.cpp 203 char proposedPath[MAX_PATH];
218 if (!PathCombineA(proposedPath, tempPath, tempFile))
222 handle = CreateFileA(proposedPath, GENERIC_READ | GENERIC_WRITE, 0, 0, CREATE_NEW, FILE_ATTRIBUTE_NORMAL, 0);
234 return proposedPath;
  /external/webkit/WebCore/platform/wince/
FileSystemWince.cpp 184 String proposedPath;
200 proposedPath = pathByAppendingComponent(String(tempPath), String(tempFile));
203 handle = CreateFile(proposedPath.charactersWithNullTermination(), GENERIC_READ | GENERIC_WRITE, 0, 0, CREATE_NEW, FILE_ATTRIBUTE_NORMAL, 0);
215 return proposedPath.latin1();

Completed in 33 milliseconds