HomeSort by relevance Sort by last modified time
    Searched defs:probeType (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/java/android/net/metrics/
ValidationProbeEvent.java 52 // probeType byte format (MSB to LSB):
57 public int probeType;
65 probeType = in.readInt();
72 out.writeInt(probeType);
92 public static int makeProbeType(int probeType, boolean firstValidation) {
93 return (probeType & 0xff) | (firstValidation ? FIRST_VALIDATION : REVALIDATION);
96 public static String getProbeName(int probeType) {
97 return Decoder.constants.get(probeType & 0xff, "PROBE_???");
100 public static String getValidationStage(int probeType) {
101 return Decoder.constants.get(probeType & 0xff00, "UNKNOWN")
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
NetworkMonitor.java 327 private void validationLog(int probeType, Object url, String msg) {
328 String probeName = ValidationProbeEvent.getProbeName(probeType);
    [all...]

Completed in 58 milliseconds