Home | History | Annotate | Download | only in base

Lines Matching defs:file

3 // found in the LICENSE file.
39 // |dest_file_path| exists and is a file.
45 // |src_file_path| exists and is a file.
91 // Called to perform work on the FILE thread.
189 // file from the IO thread using a net::FileStream.
399 // If parent dir of file doesn't exist.
408 // If file exists at the path.
500 base::PlatformFile file,
503 file_(file) {
526 RelayRead(base::PlatformFile file,
530 : file_(file),
564 RelayWrite(base::PlatformFile file,
569 : file_(file),
604 RelayTouch(base::PlatformFile file,
609 file_(file),
653 RelayTruncatePlatformFile(base::PlatformFile file,
657 file_(file),
685 base::PlatformFile file =
695 if (!base::TruncatePlatformFile(file, length_))
697 base::ClosePlatformFile(file);
707 RelayFlush(base::PlatformFile file,
710 file_(file) {
767 // Retrieves the information about a file. It is invalid to pass NULL for the
780 PlatformFile file,
783 new RelayGetFileInfoFromPlatformFile(file, callback));
845 PlatformFile file,
850 new RelayRead(file, offset, bytes_to_read, callback));
856 PlatformFile file,
862 new RelayWrite(file, offset, buffer, bytes_to_write, callback));
868 PlatformFile file,
873 new RelayTouch(file, last_access_time, last_modified_time,
892 PlatformFile file,
896 new RelayTruncatePlatformFile(file, length, callback));
912 PlatformFile file,
914 return Start(FROM_HERE, message_loop_proxy, new RelayFlush(file, callback));