Lines Matching refs:outFd
51 static void dumpAsTextToFd(protos::GraphicsStatsProto* proto, int outFd);
343 int outFd = open(path.c_str(), O_CREAT | O_RDWR | O_TRUNC, 0660); in saveBuffer() local
344 if (outFd <= 0) { in saveBuffer()
349 int wrote = write(outFd, &sCurrentFileVersion, sHeaderSize); in saveBuffer()
354 close(outFd); in saveBuffer()
358 FileOutputStreamLite output(outFd); in saveBuffer()
361 ALOGW("Error writing to fd=%d, path='%s' err=%d (%s)", outFd, path.c_str(), in saveBuffer()
368 close(outFd); in saveBuffer()
373 Dump(int outFd, DumpType type) : mFd(outFd), mType(type) { in Dump() argument
436 GraphicsStatsService::Dump* GraphicsStatsService::createDump(int outFd, DumpType type) { in createDump() argument
437 return new Dump(outFd, type); in createDump()