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

  /external/webkit/Source/WebCore/platform/win/
FileSystemWin.cpp 207 char proposedPath[MAX_PATH];
222 if (!PathCombineA(proposedPath, tempPath, tempFile))
226 handle = CreateFileA(proposedPath, GENERIC_READ | GENERIC_WRITE, 0, 0, CREATE_NEW, FILE_ATTRIBUTE_NORMAL, 0);
238 return String::fromUTF8(proposedPath);
  /external/webkit/Source/WebCore/platform/wince/
FileSystemWinCE.cpp 203 String proposedPath;
219 proposedPath = pathByAppendingComponent(String(tempPath), String(tempFile));
222 handle = CreateFile(proposedPath.charactersWithNullTermination(), GENERIC_READ | GENERIC_WRITE, 0, 0, CREATE_NEW, FILE_ATTRIBUTE_NORMAL, 0);
234 return proposedPath;

Completed in 510 milliseconds