Home
last modified time | relevance | path

Searched refs:OutFile (Results 1 – 25 of 32) sorted by relevance

12

/external/swiftshader/third_party/LLVM/runtime/libprofile/
DCommonProfiling.c86 static int OutFile = -1; in getOutFile() local
91 if (OutFile == -1) { in getOutFile()
92 OutFile = open(OutputFilename, O_CREAT | O_WRONLY, 0666); in getOutFile()
93 lseek(OutFile, 0, SEEK_END); /* O_APPEND prevents seeking */ in getOutFile()
94 if (OutFile == -1) { in getOutFile()
98 return(OutFile); in getOutFile()
105 if (write(OutFile, &PTy, sizeof(int)) < 0 || in getOutFile()
106 write(OutFile, &SavedArgsLength, sizeof(unsigned)) < 0 || in getOutFile()
107 write(OutFile, SavedArgs, SavedArgsLength) < 0 ) { in getOutFile()
113 if (write(OutFile, &Zeros, 4-(SavedArgsLength&3)) < 0) { in getOutFile()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
DMachOUtils.cpp337 raw_fd_ostream &OutFile) { in generateDsymCompanion() argument
452 assert(OutFile.tell() == HeaderSize); in generateDsymCompanion()
456 OutFile.write(reinterpret_cast<const char *>(UUIDCmd.uuid), 16); in generateDsymCompanion()
457 assert(OutFile.tell() == HeaderSize + sizeof(UUIDCmd)); in generateDsymCompanion()
502 assert(OutFile.tell() == LoadCommandSize + HeaderSize); in generateDsymCompanion()
503 OutFile.write_zeros(SymtabStart - (LoadCommandSize + HeaderSize)); in generateDsymCompanion()
504 assert(OutFile.tell() == SymtabStart); in generateDsymCompanion()
508 OutFile << NewSymtab.str(); in generateDsymCompanion()
509 assert(OutFile.tell() == StringStart); in generateDsymCompanion()
516 OutFile << '\0'; in generateDsymCompanion()
[all …]
DDwarfStreamer.h47 DwarfStreamer(raw_fd_ostream &OutFile, LinkOptions Options) in DwarfStreamer() argument
48 : OutFile(OutFile), Options(std::move(Options)) {} in DwarfStreamer()
160 raw_fd_ostream &OutFile; variable
DDwarfLinker.h59 DwarfLinker(raw_fd_ostream &OutFile, BinaryHolder &BinHolder, in DwarfLinker() argument
61 : OutFile(OutFile), BinHolder(BinHolder), Options(Options) {} in DwarfLinker()
447 bool createStreamer(const Triple &TheTriple, raw_fd_ostream &OutFile);
454 raw_fd_ostream &OutFile; variable
Ddsymutil.h49 bool linkDwarf(raw_fd_ostream &OutFile, BinaryHolder &BinHolder,
DMachOUtils.h42 raw_fd_ostream &OutFile);
DDwarfStreamer.cpp91 *MC, llvm::make_unique<formatted_raw_ostream>(OutFile), true, true, MIP, in init()
99 MAB->createObjectWriter(OutFile), std::unique_ptr<MCCodeEmitter>(MCE), in init()
131 Result = MachOUtils::generateDsymCompanion(DM, *MS, OutFile); in finish()
/external/swiftshader/third_party/subzero/pydir/
Dbuild-runtime.py49 def OutFile(template): function
82 OutFile('{rtdir}/szrt_native_{target}.o'),
86 OutFile('{rtdir}/szrt_native_{target}.o')])
93 '-o', OutFile('{rtdir}/szrt_asan_{target}.o')
119 OutFile('{rtdir}/szrt_sb_{target}.o'),
123 OutFile('{rtdir}/szrt_sb_{target}.o')])
147 OutFile('{rtdir}/szrt_nonsfi_{target}.o'),
151 OutFile('{rtdir}/szrt_nonsfi_{target}.o')])
/external/llvm/tools/dsymutil/
DMachOUtils.cpp321 raw_fd_ostream &OutFile) { in generateDsymCompanion() argument
428 assert(OutFile.tell() == HeaderSize); in generateDsymCompanion()
434 assert(OutFile.tell() == HeaderSize + sizeof(UUIDCmd)); in generateDsymCompanion()
479 assert(OutFile.tell() == LoadCommandSize + HeaderSize); in generateDsymCompanion()
481 assert(OutFile.tell() == SymtabStart); in generateDsymCompanion()
486 assert(OutFile.tell() == StringStart); in generateDsymCompanion()
501 assert(OutFile.tell() == StringStart + NewStringsSize); in generateDsymCompanion()
505 assert(OutFile.tell() == DwarfSegmentStart); in generateDsymCompanion()
512 uint64_t Pos = OutFile.tell(); in generateDsymCompanion()
DMachOUtils.h33 raw_fd_ostream &OutFile);
/external/lzma/Java/SevenZip/
DLzmaAlone.java30 public String OutFile; field in LzmaAlone.CommandLine
134 OutFile = s; in Parse()
193 java.io.File outFile = new java.io.File(params.OutFile); in main()
/external/swiftshader/third_party/LLVM/tools/bugpoint/
DToolRunner.h128 sys::Path &OutFile, std::string &Error,
192 sys::Path &OutFile, std::string &Error,
240 sys::Path &OutFile, std::string &Error,
/external/clang/lib/Frontend/
DCompilerInstance.cpp544 void CompilerInstance::addOutputFile(OutputFile &&OutFile) { in addOutputFile() argument
545 assert(OutFile.OS && "Attempt to add empty stream to output list!"); in addOutputFile()
546 OutputFiles.push_back(std::move(OutFile)); in addOutputFile()
627 std::string OutFile, TempFile; in createOutputFile() local
629 OutFile = OutputPath; in createOutputFile()
631 OutFile = "-"; in createOutputFile()
635 OutFile = Path.str(); in createOutputFile()
637 OutFile = "-"; in createOutputFile()
644 if (OutFile == "-") in createOutputFile()
667 TempPath = OutFile; in createOutputFile()
[all …]
DFrontendActions.cpp597 std::unique_ptr<llvm::raw_fd_ostream> OutFile; in ExecuteAction() local
601 OutFile.reset(new llvm::raw_fd_ostream(OutputFileName.str(), EC, in ExecuteAction()
604 llvm::raw_ostream &Out = OutFile.get()? *OutFile.get() : llvm::outs(); in ExecuteAction()
/external/grpc-grpc-java/buildscripts/
Dmake_dependencies.bat23 …12 ; iwr https://github.com/google/protobuf/archive/v%PROTOBUF_VER%.zip -OutFile protobuf.zip }" |…
47 …ference = 'stop'; & { iwr https://cmake.org/files/v3.3/%CMAKE_NAME%.zip -OutFile cmake.zip }" || e…
/external/swiftshader/third_party/llvm-7.0/llvm/tools/bugpoint/
DToolRunner.h122 std::string &OutFile,
177 std::string &OutFile, unsigned Timeout = 0,
/external/scapy/.appveyor/
DInstallNpcap.ps18 wget $urlPath -UseBasicParsing -OutFile $PSScriptRoot"\npcap.exe"
DInstallWindump.ps18 wget $urlPath -UseBasicParsing -OutFile $PSScriptRoot"\npcap.zip"
/external/llvm/tools/bugpoint/
DToolRunner.h126 std::string &OutFile, std::string &Error,
193 std::string &OutFile, std::string &Error,
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DMachineVerifier.cpp242 raw_ostream *OutFile = 0; in runOnMachineFunction() local
245 OutFile = new raw_fd_ostream(OutFileName, ErrorInfo, in runOnMachineFunction()
252 OS = OutFile; in runOnMachineFunction()
298 if (OutFile) in runOnMachineFunction()
299 delete OutFile; in runOnMachineFunction()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
Dllvm-pdbutil.cpp1209 SmallString<64> OutFile(opts::merge::PdbOutputFile); in mergePdbs() local
1210 if (OutFile.empty()) { in mergePdbs()
1211 OutFile = opts::merge::InputFilenames[0]; in mergePdbs()
1212 llvm::sys::path::replace_extension(OutFile, "merged.pdb"); in mergePdbs()
1214 ExitOnErr(Builder.commit(OutFile)); in mergePdbs()
1261 auto OutFile = ExitOnErr( in exportStream() local
1263 FileBufferByteStream DestStream(std::move(OutFile), llvm::support::little); in exportStream()
/external/python/cpython2/PCbuild/
Dfind_python.bat51 @powershell.exe -Command Invoke-WebRequest %_Py_NUGET_URL% -OutFile '%_Py_NUGET%'
/external/python/cpython3/PCbuild/
Dfind_python.bat51 @powershell.exe -Command Invoke-WebRequest %_Py_NUGET_URL% -OutFile '%_Py_NUGET%'
/external/llvm/tools/llvm-dwp/
Dllvm-dwp.cpp665 raw_fd_ostream OutFile(OutputFilename, EC, sys::fs::F_None); in main() local
671 TheTriple, MC, *MAB, OutFile, MCE, *MSTI, MCOptions.MCRelaxAll, in main()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-dwp/
Dllvm-dwp.cpp699 raw_fd_ostream OutFile(OutputFilename, EC, sys::fs::F_None); in main() local
706 MAB->createObjectWriter(OutFile), std::unique_ptr<MCCodeEmitter>(MCE), in main()

12