HomeSort by relevance Sort by last modified time
    Searched defs:probeType (Results 1 - 3 of 3) 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 366 private void validationLog(int probeType, Object url, String msg) {
367 String probeName = ValidationProbeEvent.getProbeName(probeType);
    [all...]
  /prebuilts/misc/common/robolectric/android-all/
android-all-7.0.0_r1-robolectric-0.jar 

Completed in 71 milliseconds