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 86 static int OutFile = -1;
91 if (OutFile == -1) {
92 OutFile = open(OutputFilename, O_CREAT | O_WRONLY, 0666);
93 lseek(OutFile, 0, SEEK_END); /* O_APPEND prevents seeking */
94 if (OutFile == -1) {
98 return(OutFile);
105 write(OutFile, &PTy, sizeof(int));
106 write(OutFile, &SavedArgsLength, sizeof(unsigned));
107 write(OutFile, SavedArgs, SavedArgsLength);
110 write(OutFile, &Zeros, 4-(SavedArgsLength&3))
    [all...]
  /external/llvm/include/llvm/CompilerDriver/
Action.h 49 const std::string& OutFile() { return OutFile_; }
  /external/clang/lib/Frontend/
CompilerInstance.cpp 392 void CompilerInstance::addOutputFile(const OutputFile &OutFile) {
393 assert(OutFile.OS && "Attempt to add empty stream to output list!");
394 OutputFiles.push_back(OutFile);
469 std::string OutFile, TempFile;
471 OutFile = OutputPath;
473 OutFile = "-";
478 OutFile = Path.str();
480 OutFile = "-";
483 if (OutFile != "-") {
484 llvm::sys::Path OutPath(OutFile);
    [all...]
  /external/llvm/tools/bugpoint/
ToolRunner.h 128 sys::Path &OutFile, std::string &Error,
192 sys::Path &OutFile, std::string &Error,
240 sys::Path &OutFile, std::string &Error,
  /external/llvm/lib/CompilerDriver/
CompilationGraph.cpp 209 In = CurAction.OutFile();
408 if (int ret = PassThroughGraph(sys::Path(CurAction.OutFile()), NextNode,
  /external/clang/include/clang/Frontend/
CompilerInstance.h 438 /// \param OutFile - The output file info.
439 void addOutputFile(const OutputFile &OutFile);
  /external/llvm/lib/CodeGen/
MachineVerifier.cpp 240 raw_ostream *OutFile = 0;
243 OutFile = new raw_fd_ostream(OutFileName, ErrorInfo,
250 OS = OutFile;
296 if (OutFile)
297 delete OutFile;
    [all...]
  /external/clang/lib/Rewrite/
RewriteObjC.cpp 116 llvm::raw_ostream* OutFile;
511 : Diags(D), LangOpts(LOpts), InFileName(inFile), OutFile(OS),
    [all...]

Completed in 390 milliseconds