Home | History | Annotate | Download | only in chromeos

Lines Matching defs:file

3 // found in the LICENSE file.
34 // File uptime logs are located in.
42 // Delay in milliseconds between file read attempts.
59 // Name of file collecting login times.
62 // Name of file collecting logout times.
101 BrowserThread::FILE,
155 // Stores the boot times to a file in /tmp to indicate that the
157 // already. The file will be deleted at system shutdown/reboot.
185 // Wait until firmware-boot-time file exists by reposting.
190 BrowserThread::FILE,
220 // Appends the given buffer into the file. Returns the number of bytes
226 FILE* file = file_util::OpenFile(file_path, "a");
227 if (!file) {
230 const int num_bytes_written = fwrite(data, 1, size, file);
231 file_util::CloseFile(file);
311 BrowserThread::FILE, FROM_HERE,
386 // Don't swamp the FILE thread right away.
388 BrowserThread::FILE, FROM_HERE,