Lines Matching refs:outFd
47 static void dumpAsTextToFd(service::GraphicsStatsProto* proto, int outFd);
200 int outFd = open(path.c_str(), O_CREAT | O_RDWR | O_TRUNC, 0660); in saveBuffer() local
201 if (outFd <= 0) { in saveBuffer()
206 int wrote = write(outFd, &sCurrentFileVersion, sHeaderSize); in saveBuffer()
211 close(outFd); in saveBuffer()
215 io::FileOutputStream output(outFd); in saveBuffer()
219 outFd, path.c_str(), output.GetErrno(), strerror(output.GetErrno())); in saveBuffer()
225 close(outFd); in saveBuffer()
230 Dump(int outFd, DumpType type) : mFd(outFd), mType(type) {} in Dump() argument
240 GraphicsStatsService::Dump* GraphicsStatsService::createDump(int outFd, DumpType type) { in createDump() argument
241 return new Dump(outFd, type); in createDump()