Home
last modified time | relevance | path

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

/development/tools/winscope/src/trace_processor/
Dproto_ring_buffer.ts27 private rd = 0;
35 assertTrue(this.rd <= this.wr);
40 if (this.rd === this.wr) {
41 this.rd = this.wr = 0;
48 if (this.rd === this.wr) {
69 this.buf.copyWithin(0, this.rd, this.wr);
70 avail += this.rd;
71 this.wr -= this.rd;
72 this.rd = 0;
99 assertTrue(this.rd === this.wr);
[all …]
/development/apps/DumpViewer/app/src/main/java/com/android/dumpviewer/utils/
DExec.java85 try (BufferedReader rd = new BufferedReader(new InputStreamReader( in runForStrings() argument
88 String line = rd.readLine(); in runForStrings()