Searched refs:bufferstart (Results 1 - 1 of 1) sorted by relevance

/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/java/CyrusSasl/
H A DSaslInputStream.java11 // if bufferend < bufferstart, we've wrapped around
13 private int bufferstart = 0; field in class:SaslInputStream
126 ret = buffer[bufferstart];
127 bufferstart = (bufferstart + 1) % BUFFERSIZE;
168 if (bufferstart == bufferend) break;
170 b[l] = buffer[bufferstart];
171 bufferstart = (bufferstart + 1) % BUFFERSIZE;
196 bufferstart
[all...]

Completed in 71 milliseconds