Home | History | Annotate | Download | only in base

Lines Matching refs:FILE

3 // found in the LICENSE file.
125 // 2. Create a file and the current time is 10.3 (secs).
128 // the creation time of the file created in the step 2 is 10 and
129 // the file is considered older than |comparison_time|. After
302 LOG(ERROR) << "CopyDirectory() couldn't create file: " <<
307 LOG(WARNING) << "CopyDirectory() skipping non-regular file: " <<
400 // Creates and opens a temporary file in |directory|, returning the
401 // file descriptor. |path| is set to the temporary file path.
402 // This function does NOT unlink() the file.
425 FILE* CreateAndOpenTemporaryShmemFile(FilePath* path) {
433 FILE* CreateAndOpenTemporaryFileInDir(const FilePath& dir, FilePath* path) {
438 FILE* file = fdopen(fd, "a+");
439 if (!file)
441 return file;
510 // two processes are trying to create the same file system tree at the same
541 FILE* OpenFile(const std::string& filename, const char* mode) {
545 FILE* OpenFile(const FilePath& filename, const char* mode) {
547 FILE* result = NULL;