Searched defs:probeType (Results 1 - 3 of 3) sorted by last modified time

/frameworks/base/services/net/java/android/net/ip/
H A DIpReachabilityMonitor.java374 private void logEvent(int probeType, int errorCode) { argument
375 int eventType = probeType | (errorCode & 0xff);
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DNetworkMonitor.java366 private void validationLog(int probeType, Object url, String msg) { argument
367 String probeName = ValidationProbeEvent.getProbeName(probeType);
1029 private CaptivePortalProbeResult sendDnsAndHttpProbes(ProxyInfo proxy, URL url, int probeType) { argument
1035 return sendHttpProbe(url, probeType, null);
1071 protected CaptivePortalProbeResult sendHttpProbe(URL url, int probeType, argument
1080 urlConnection.setInstanceFollowRedirects(probeType == ValidationProbeEvent.PROBE_PAC);
1099 validationLog(probeType, url, "time=" + (responseTimestamp - requestTimestamp) + "ms" +
1110 if (probeType == ValidationProbeEvent.PROBE_PAC) {
1112 probeType, url, "PAC fetch 200 response interpreted as 204 response.");
1119 validationLog(probeType, ur
1368 logValidationProbe(long durationMs, int probeType, int probeResult) argument
[all...]
/frameworks/base/core/java/android/net/metrics/
H A DValidationProbeEvent.java52 // probeType byte format (MSB to LSB):
57 public int probeType; field in class:ValidationProbeEvent
65 probeType = in.readInt();
72 out.writeInt(probeType);
92 public static int makeProbeType(int probeType, boolean firstValidation) { argument
93 return (probeType & 0xff) | (firstValidation ? FIRST_VALIDATION : REVALIDATION);
96 public static String getProbeName(int probeType) { argument
97 return Decoder.constants.get(probeType & 0xff, "PROBE_???");
100 public static String getValidationStage(int probeType) { argument
101 return Decoder.constants.get(probeType
[all...]

Completed in 121 milliseconds