OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:schreg
(Results
1 - 4
of
4
) sorted by null
/external/apache-http/src/org/apache/http/impl/conn/
SingleClientConnManager.java
111
* @param
schreg
the scheme registry, or
115
SchemeRegistry
schreg
) {
117
if (
schreg
== null) {
121
this.schemeRegistry =
schreg
;
122
this.connOperator = createConnectionOperator(
schreg
);
153
* @param
schreg
the scheme registry to use, or <code>null</code>
158
createConnectionOperator(SchemeRegistry
schreg
) {
160
return new DefaultClientConnectionOperator(
schreg
);
DefaultHttpRoutePlanner.java
66
* @param
schreg
the scheme registry
68
public DefaultHttpRoutePlanner(SchemeRegistry
schreg
) {
69
if (
schreg
== null) {
73
schemeRegistry =
schreg
;
ProxySelectorRoutePlanner.java
78
* @param
schreg
the scheme registry
82
public ProxySelectorRoutePlanner(SchemeRegistry
schreg
,
85
if (
schreg
== null) {
89
schemeRegistry =
schreg
;
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
ThreadSafeClientConnManager.java
86
* @param
schreg
the scheme registry, or
90
SchemeRegistry
schreg
) {
95
this.schemeRegistry =
schreg
;
96
this.connOperator = createConnectionOperator(
schreg
);
133
* @param
schreg
the scheme registry to use, or <code>null</code>
138
createConnectionOperator(SchemeRegistry
schreg
) {
140
return new DefaultClientConnectionOperator(
schreg
);
Completed in 25 milliseconds