OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:exclList
(Results
1 - 8
of
8
) sorted by null
/frameworks/base/core/java/android/net/
Proxy.java
249
public static void validate(String hostname, String port, String
exclList
) {
251
Matcher listMatch = EXCLLIST_PATTERN.matcher(
exclList
);
327
String
exclList
= null;
331
exclList
= p.getExclusionList();
333
setHttpProxySystemProperty(host, port,
exclList
);
337
public static final void setHttpProxySystemProperty(String host, String port, String
exclList
) {
338
if (
exclList
!= null)
exclList
=
exclList
.replace(",", "|");
339
if (false) Log.d(TAG, "setHttpProxySystemProperty :"+host+":"+port+" - "+
exclList
);
[
all
...]
ProxyProperties.java
40
public ProxyProperties(String host, int port, String
exclList
) {
43
setExclusionList(
exclList
);
46
private ProxyProperties(String host, int port, String
exclList
, String[] parsedExclList) {
49
mExclusionList =
exclList
;
207
String
exclList
= in.readString();
210
new ProxyProperties(host, port,
exclList
, parsedExclList);
/packages/apps/Settings/src/com/android/settings/
ProxySelector.java
116
String
exclList
= mExclusionListField.getText().toString().trim();
117
String msg = getActivity().getString(validate(hostname, portStr,
exclList
));
161
String
exclList
= "";
170
exclList
= proxy.getExclusionList();
182
mExclusionListField.setText(
exclList
);
201
public static int validate(String hostname, String port, String
exclList
) {
203
String exclListArray[] =
exclList
.split(",");
240
String
exclList
= mExclusionListField.getText().toString().trim();
243
int result = validate(hostname, portStr,
exclList
);
257
ProxyProperties p = new ProxyProperties(hostname, port,
exclList
);
[
all
...]
/frameworks/base/core/java/android/app/
IApplicationThread.java
101
void setHttpProxy(String proxy, String port, String
exclList
) throws RemoteException;
ApplicationThreadNative.java
329
final String
exclList
= data.readString();
330
setHttpProxy(proxy, port,
exclList
);
[
all
...]
ActivityThread.java
724
public void setHttpProxy(String host, String port, String
exclList
) {
725
Proxy.setHttpProxySystemProperty(host, port,
exclList
);
[
all
...]
/frameworks/base/services/java/com/android/server/
ConnectivityService.java
[
all
...]
/frameworks/base/services/java/com/android/server/am/
ActivityManagerService.java
[
all
...]
Completed in 209 milliseconds