Lines Matching refs:outFd
52 static void dumpAsTextToFd(protos::GraphicsStatsProto* proto, int outFd);
344 int outFd = open(path.c_str(), O_CREAT | O_RDWR | O_TRUNC, 0660); in saveBuffer() local
345 if (outFd <= 0) { in saveBuffer()
350 int wrote = write(outFd, &sCurrentFileVersion, sHeaderSize); in saveBuffer()
355 close(outFd); in saveBuffer()
359 FileOutputStreamLite output(outFd); in saveBuffer()
362 ALOGW("Error writing to fd=%d, path='%s' err=%d (%s)", outFd, path.c_str(), in saveBuffer()
369 close(outFd); in saveBuffer()
374 Dump(int outFd, DumpType type) : mFd(outFd), mType(type) { in Dump() argument
437 GraphicsStatsService::Dump* GraphicsStatsService::createDump(int outFd, DumpType type) { in createDump() argument
438 return new Dump(outFd, type); in createDump()