Lines Matching refs:outFd
47 static void dumpAsTextToFd(protos::GraphicsStatsProto* proto, int outFd);
282 int outFd = open(path.c_str(), O_CREAT | O_RDWR | O_TRUNC, 0660); in saveBuffer() local
283 if (outFd <= 0) { in saveBuffer()
288 int wrote = write(outFd, &sCurrentFileVersion, sHeaderSize); in saveBuffer()
293 close(outFd); in saveBuffer()
297 FileOutputStreamLite output(outFd); in saveBuffer()
300 ALOGW("Error writing to fd=%d, path='%s' err=%d (%s)", outFd, path.c_str(), in saveBuffer()
307 close(outFd); in saveBuffer()
312 Dump(int outFd, DumpType type) : mFd(outFd), mType(type) {} in Dump() argument
323 GraphicsStatsService::Dump* GraphicsStatsService::createDump(int outFd, DumpType type) { in createDump() argument
324 return new Dump(outFd, type); in createDump()