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 if (write(OutFile, &PTy, sizeof(int)) < 0 ||
106 write(OutFile, &SavedArgsLength, sizeof(unsigned)) < 0 ||
107 write(OutFile, SavedArgs, SavedArgsLength) < 0 ) {
113 if (write(OutFile, &Zeros, 4-(SavedArgsLength&3)) < 0)
    [all...]
  /frameworks/compile/libbcc/tools/bcc/
main.cpp 59 const char *OutFile = NULL;
193 if (OutFile != NULL) {
194 // Copy the outFile since we're going to modify it
195 size_t outFileLen = strlen(OutFile);
197 strncpy(output, OutFile, outFileLen);
343 OutFile = arg[1];
  /external/clang/lib/Frontend/
CompilerInstance.cpp 438 void CompilerInstance::addOutputFile(const OutputFile &OutFile) {
439 assert(OutFile.OS && "Attempt to add empty stream to output list!");
440 OutputFiles.push_back(OutFile);
525 std::string OutFile, TempFile;
527 OutFile = OutputPath;
529 OutFile = "-";
534 OutFile = Path.str();
536 OutFile = "-";
542 if (UseTemporary && OutFile != "-") {
559 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 456 /// \param OutFile - The output file info.
457 void addOutputFile(const OutputFile &OutFile);
  /external/llvm/lib/CodeGen/
MachineVerifier.cpp 251 raw_ostream *OutFile = 0;
254 OutFile = new raw_fd_ostream(OutFileName, ErrorInfo,
261 OS = OutFile;
311 if (OutFile)
312 delete OutFile;
    [all...]
  /external/clang/lib/Rewrite/
RewriteModernObjC.cpp 71 raw_ostream* OutFile;
583 : Diags(D), LangOpts(LOpts), InFileName(inFile), OutFile(OS),
    [all...]
RewriteObjC.cpp 71 raw_ostream* OutFile;
577 : Diags(D), LangOpts(LOpts), InFileName(inFile), OutFile(OS),
    [all...]

Completed in 110 milliseconds