Searched refs:traceBuf (Results 1 – 1 of 1) sorted by relevance
76 private traceBuf: ArrayBuffer; property in TraceBufferStream79 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,