n
909910911912913914915916917918919
len = (d1 << 8) + d2; if (isLoggable) log.fine(dbgId() + (char) code + " " + len); is.skip(len); break; } } } }
17391740174117421743174417451746174717481749
int len = (is.read() << 8) + is.read(); if (log.isLoggable(Level.FINE)) log.fine(_request.dbgId() + "unknown-r '" + (char) code + "' " + len); is.skip(len); } } } return readLen;
827828829830831832833834835836837
case CSE_IS_SECURE: len = (is.read() << 8) + is.read(); _isSecure = true; if (isLoggable) log.fine(dbgId() + "secure"); is.skip(len); break; case CSE_CLIENT_CERT: len = (is.read() << 8) + is.read(); _clientCert.clear();
625626627628629630631632633634635
} ReadStream is = null; try { is = cache.getPath().openRead(); is.skip(first); os = res.getOutputStream(); is.writeToStream(os, (int) (last - first + 1)); } finally { if (is != null)
152153154155156157158159160161162
int adminCode = is.read(); boolean isAdmin = adminCode != 0; InputStream rawIs = is; is.skip(len - 1); _hmtpReader = new HmtpWebSocketReader(rawIs); _hmtpWriter = new HmtpWebSocketWriter(_rawWrite); // _hmtpWriter.setId(getRequestId());
265266267268269270271272273274275
String version = null; ReadStream is = path.openRead(); try { // skip allocation table and fragment table is.skip(DATA_START + ROOT_DATA_OFFSET); StringBuilder sb = new StringBuilder(); int ch; while ((ch = is.read()) > 0) {
292293294295296297298299300301302
} is = path.openRead(); try { // skip allocation table and fragment table is.skip(DATA_START + ROOT_DATA_END); StringBuilder cb = new StringBuilder(); int ch; while ((ch = is.read()) > 0) {
166167168169170171172173174175176
throws Exception { ReadStream is = _path.openRead(); try { is.skip(count * BlockStore.BLOCK_SIZE); is.read(block, 0, block.length); } finally { is.close(); }
14201421142214231424142514261427142814291430
_pendingData -= sublen; if (_pendingData == 0) { if (_pad > 0) is.skip(_pad); _pad = 0; int version = is.read(); int code = is.read();
260261262263264265266267268269270