Lines Matching refs:ret

1964         AuthenticationInfo ret = null;
1991 ret = AuthenticationInfo.getProxyAuth(proxyAuthKey);
1992 if (ret == null) {
2013 ret = new BasicAuthentication(true, host, port, realm, a);
2023 ret = new DigestAuthentication(true, host, port, realm,
2052 ret = NTLMAuthenticationProxy.proxy.create(true, host, port, a);
2060 ret = new NegotiateAuthentication(new HttpCallerInfo(authhdr.getHttpCallerInfo(), "Negotiate"));
2063 ret = new NegotiateAuthentication(new HttpCallerInfo(authhdr.getHttpCallerInfo(), "Kerberos"));
2074 if (ret == null && defaultAuth != null
2080 ret = new BasicAuthentication (true, host, port, realm, a);
2086 if (ret != null) {
2087 if (!ret.setHeaders(this, p, raw)) {
2088 ret = null;
2093 logger.finer("Proxy Authentication for " + authhdr.toString() +" returned " + (ret != null ? ret.toString() : "null"));
2095 return ret;
2106 AuthenticationInfo ret = null;
2133 ret = AuthenticationInfo.getServerAuth(serverAuthKey);
2135 if (ret == null) {
2147 if (ret == null) {
2150 ret = new NegotiateAuthentication(new HttpCallerInfo(authhdr.getHttpCallerInfo(), "Kerberos"));
2153 ret = new NegotiateAuthentication(new HttpCallerInfo(authhdr.getHttpCallerInfo(), "Negotiate"));
2161 ret = new BasicAuthentication(false, url, realm, a);
2170 ret = new DigestAuthentication(false, url, realm, scheme, a, digestparams);
2213 ret = NTLMAuthenticationProxy.proxy.create(false, url1, a);
2230 if (ret == null && defaultAuth != null
2234 ret = new BasicAuthentication (false, url, realm, a);
2239 if (ret != null ) {
2240 if (!ret.setHeaders(this, p, raw)) {
2241 ret = null;
2246 logger.finer("Server Authentication for " + authhdr.toString() +" returned " + (ret != null ? ret.toString() : "null"));
2248 return ret;
3035 int ret = read(b);
3036 return (ret == -1? ret : (b[0] & 0x00FF));
3335 int ret = read(b);
3336 return (ret == -1? ret : (b[0] & 0x00FF));
3348 int ret = rem < len? rem : len;
3349 buffer.get(b, off, ret);
3350 return ret;