HomeSort by relevance Sort by last modified time
    Searched full:arfile (Results 1 - 4 of 4) sorted by null

  /ndk/sources/host-tools/make-3.81/
ar.c 99 struct file *arfile;
100 arfile = lookup_file (arname);
101 if (arfile == 0 && file_exists_p (arname))
103 arfile = enter_file (arname);
107 if (arfile != 0)
108 (void) f_mtime (arfile, 0);
155 struct file *arfile;
156 arfile = lookup_file (arname);
157 if (arfile == 0)
159 arfile = enter_file (arname)
98 struct file *arfile; local
153 struct file *arfile; local
    [all...]
remake.c 1156 struct file *arfile; local
    [all...]
  /external/llvm/lib/Archive/
ArchiveWriter.cpp 31 static inline void writeInteger(unsigned num, std::ofstream& ARFile) {
34 ARFile << (unsigned char)num;
40 ARFile << (unsigned char)(0x80 | ((unsigned char)num & 0x7F));
205 std::ofstream& ARFile,
211 unsigned filepos = ARFile.tellp();
272 ARFile.write((char*)&Hdr, sizeof(Hdr));
276 ARFile.write(member.getPath().str().data(),
281 ARFile.write(data,fSize);
284 if ((ARFile.tellp() & 1) == 1)
285 ARFile << ARFILE_PAD
    [all...]
  /external/llvm/include/llvm/Bitcode/
Archive.h 478 void writeSymbolTable(std::ofstream& ARFile);
487 std::ofstream& ARFile, ///< The file to write member onto

Completed in 108 milliseconds