HomeSort by relevance Sort by last modified time
    Searched refs:OutFile (Results 1 - 8 of 8) sorted by null

  /external/llvm/runtime/libprofile/
CommonProfiling.c 118 static int OutFile = -1;
123 if (OutFile == -1) {
124 OutFile = open(OutputFilename, O_CREAT | O_WRONLY, 0666);
125 lseek(OutFile, 0, SEEK_END); /* O_APPEND prevents seeking */
126 if (OutFile == -1) {
130 return(OutFile);
137 if (write(OutFile, &PTy, sizeof(int)) < 0 ||
138 write(OutFile, &SavedArgsLength, sizeof(unsigned)) < 0 ||
139 write(OutFile, SavedArgs, SavedArgsLength) < 0 ) {
145 if (write(OutFile, &Zeros, 4-(SavedArgsLength&3)) < 0)
    [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp 421 void CompilerInstance::addOutputFile(const OutputFile &OutFile) {
422 assert(OutFile.OS && "Attempt to add empty stream to output list!");
423 OutputFiles.push_back(OutFile);
508 std::string OutFile, TempFile;
510 OutFile = OutputPath;
512 OutFile = "-";
517 OutFile = Path.str();
519 OutFile = "-";
525 if (UseTemporary && OutFile != "-") {
542 TempPath = OutFile;
    [all...]
  /external/llvm/tools/bugpoint/
ToolRunner.h 129 sys::Path &OutFile, std::string &Error,
193 sys::Path &OutFile, std::string &Error,
241 sys::Path &OutFile, std::string &Error,
  /external/clang/include/clang/Frontend/
CompilerInstance.h 470 /// \param OutFile - The output file info.
471 void addOutputFile(const OutputFile &OutFile);
  /external/llvm/lib/CodeGen/
MachineVerifier.cpp 268 raw_ostream *OutFile = 0;
271 OutFile = new raw_fd_ostream(OutFileName, ErrorInfo,
278 OS = OutFile;
353 if (OutFile)
354 delete OutFile;
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteObjC.cpp 73 raw_ostream* OutFile;
583 : Diags(D), LangOpts(LOpts), InFileName(inFile), OutFile(OS),
    [all...]
RewriteModernObjC.cpp 74 raw_ostream* OutFile;
639 : Diags(D), LangOpts(LOpts), InFileName(inFile), OutFile(OS),
    [all...]
  /external/clang/lib/Driver/
Tools.cpp     [all...]

Completed in 435 milliseconds