Searched refs:outStream (Results 1 – 5 of 5) sorted by relevance
/openbmc/phosphor-bmc-code-mgmt/bmc/ |
H A D | software_utils.cpp | 10 static bool writeToFile(int imageFd, FILE* outStream) in writeToFile() argument 18 if (fwrite(buf, 1, nRead, outStream) != (size_t)nRead) in writeToFile() 36 FILE* outStream = popen(tarCmd.c_str(), "w"); in unTar() local 37 if (outStream == nullptr) in unTar() 43 if (!writeToFile(imageFd, outStream)) in unTar() 46 pclose(outStream); in unTar() 50 if (pclose(outStream) != 0) in unTar()
|
/openbmc/phosphor-networkd/src/ |
H A D | dns_updater.cpp | 24 std::fstream outStream(outFile, std::fstream::out); in updateDNSEntries() local 25 if (!outStream.is_open()) in updateDNSEntries() 38 outStream << "### Generated by phosphor-networkd ###\n"; in updateDNSEntries() 46 outStream << "nameserver " << dns << "\n"; in updateDNSEntries()
|
/openbmc/u-boot/lib/lzma/ |
H A D | LzmaTools.c | 39 int lzmaBuffToBuffDecompress (unsigned char *outStream, SizeT *uncompressedSize, in lzmaBuffToBuffDecompress() argument 57 debug ("LZMA: Destination address......... 0x%p\n", outStream); in lzmaBuffToBuffDecompress() 109 outStream, &outProcessed, in lzmaBuffToBuffDecompress()
|
H A D | LzmaTools.h | 16 extern int lzmaBuffToBuffDecompress (unsigned char *outStream, SizeT *uncompressedSize,
|
H A D | lzma.txt | 482 CFileSeqOutStream outStream; 486 outStream.funcTable.Write = MyWrite; 487 outStream.file = outFile; 523 res = LzmaEnc_Encode(enc, &outStream.funcTable, &inStream.funcTable,
|