Home | History | Annotate | Download | only in common

Lines Matching defs:file

5 // This file is distributed under the University of Illinois Open Source
28 #include "lldb/Host/File.h"
230 // file on disk.
388 // trying to set a file and line breakpoint and one path
538 // Returns true if the file exists.
561 // FindProgramByName returns "." if it can't find the file.
570 // If FindProgramByName found the file, it returns the directory + filename in its return results.
753 // part of the contents of a file. The data is memory mapped and
754 // will lazily page in data from the file as memory is accessed.
756 // file, and "file_size" bytes will be mapped. If "file_size" is
757 // greater than the number of bytes available in the file starting
797 File file;
798 error = file.Open(resolved_path, File::eOpenOptionRead);
803 error = file.Read(dst, bytes_read, file_offset_after_seek);
808 error.SetErrorString("invalid file specification");
817 // part of the contents of a file. The data copies into a heap based
820 // file, and "file_size" bytes will be mapped. If "file_size" is
821 // greater than the number of bytes available in the file starting
834 File file;
835 error = file.Open(resolved_path, File::eOpenOptionRead);
839 error = file.Read (file_size, file_offset, null_terminate, data_sp);
844 error.SetErrorString("invalid file specification");
859 File file;
860 error = file.Open(resolved_path, File::eOpenOptionRead);
866 error = file.Read (length, offset, null_terminate, data_sp);
871 error.SetErrorString("invalid file specification");
960 // Don't resolve the file type or path
1017 /// file (files with a ".c", ".cpp", ".m", ".mm" (many more)
1022 /// file, \b false otherwise.