Home
last modified time | relevance | path

Searched refs:fileSizeLimit (Results 1 – 3 of 3) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/
DTranslationCPU_Profiler.cs23 … bool flushInstantly = false, bool enableMultipleTracks = true, long? fileSizeLimit = null, int? m… in EnableProfiler() argument
44 …profiler = new CollapsedStackProfiler(this, filename, flushInstantly, fileSizeLimit, maximumNested… in EnableProfiler()
47 …erfettoProfiler(this, filename, flushInstantly, enableMultipleTracks, fileSizeLimit, maximumNested… in EnableProfiler()
57 …lerCollapsedStack(string filename, bool flushInstantly = false, long? fileSizeLimit = null, int? m… in EnableProfilerCollapsedStack() argument
60 …rofiler(ProfilerType.CollapsedStack, filename, flushInstantly, false, fileSizeLimit, maximumNested… in EnableProfilerCollapsedStack()
63 … bool flushInstantly = false, bool enableMultipleTracks = true, long? fileSizeLimit = null, int? m… in EnableProfilerPerfetto() argument
65 …rofilerType.Perfetto, filename, flushInstantly, enableMultipleTracks, fileSizeLimit, maximumNested… in EnableProfilerPerfetto()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/GuestProfiling/
DCollapsedStackProfiler.cs18 …filer(TranslationCPU cpu, string filename, bool flushInstantly, long? fileSizeLimit = null, int? m… in CollapsedStackProfiler() argument
21 this.fileSizeLimit = fileSizeLimit; in CollapsedStackProfiler()
128 … if(fileSizeLimit.HasValue && (fileWrittenBytes + stringBuffer.Length) > fileSizeLimit) in FlushBuffer()
193 private readonly long? fileSizeLimit; field in Antmicro.Renode.Peripherals.CPU.GuestProfiling.CollapsedStackProfiler
DPerfettoProfiler.cs23 …tring filename, bool flushInstantly, bool enableMultipleTracks, long? fileSizeLimit = null, int? m… in PerfettoProfiler() argument
26 this.fileSizeLimit = fileSizeLimit; in PerfettoProfiler()
190 … if(fileSizeLimit.HasValue && (fileStream.Length + memoryStream.Length) > fileSizeLimit) in FlushBuffer()
234 private readonly long? fileSizeLimit; field in Antmicro.Renode.Peripherals.CPU.GuestProfiling.PerfettoProfiler