Home
last modified time | relevance | path

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

/external/perfetto/ui/src/controller/
Dtrace_stream.ts76 private traceBuf: ArrayBuffer; property in TraceBufferStream
79 constructor(traceBuf: ArrayBuffer) {
80 this.traceBuf = traceBuf;
84 assertTrue(this.bytesRead <= this.traceBuf.byteLength);
85 const len = Math.min(SLICE_SIZE, this.traceBuf.byteLength - this.bytesRead);
86 const data = new Uint8Array(this.traceBuf, this.bytesRead, len);
90 eof: this.bytesRead >= this.traceBuf.byteLength,
92 bytesTotal: this.traceBuf.byteLength,