Home | History | Annotate | Download | only in Archive

Lines Matching defs:File

5 // This file is distributed under the University of Illinois Open Source
10 // This file contains the implementation of the Archive and ArchiveMember
26 // getMemberSize - compute the actual physical size of the file member as seen
30 // Basically its the file size plus the header size
67 // different file, presumably as an update to the member. It also makes sure
73 *ErrMsg = "Can not replace an archive member with a non-existent file";
130 // Determine what kind of file it is.
144 // initializes and maps the file into memory, if requested.
152 OwningPtr<MemoryBuffer> File;
153 if (error_code ec = MemoryBuffer::getFile(archPath.c_str(), File)) {
158 mapfile = File.take();
164 // Shutdown the file mapping
224 if (ErrMsg) *ErrMsg = "Could not open file '" + fName.str() + "'" + ": "