Home | History | Annotate | Download | only in base

Lines Matching defs:dir

197   HANDLE dir =
201 if (dir == INVALID_HANDLE_VALUE)
204 CloseHandle(dir);
257 FILE* CreateAndOpenTemporaryFileInDir(const FilePath& dir, FilePath* path) {
259 if (!CreateTemporaryFileInDir(dir, path)) {
268 bool CreateTemporaryFileInDir(const FilePath& dir, FilePath* temp_file) {
273 if (!GetTempFileName(dir.value().c_str(), L"", 0, temp_name)) {
275 << UTF16ToUTF8(dir.value());
636 bool GetCurrentDirectory(FilePath* dir) {
648 *dir = FilePath(dir_str).StripTrailingSeparators();