Searched refs:probeType (Results 1 – 3 of 3) sorted by relevance
66 public final int probeType; field in ValidationProbeEvent70 private ValidationProbeEvent(long durationMs, int probeType, int returnCode) { in ValidationProbeEvent() argument72 this.probeType = probeType; in ValidationProbeEvent()78 probeType = in.readInt(); in ValidationProbeEvent()103 public Builder setProbeType(int probeType, boolean firstValidation) { in setProbeType() argument104 mProbeType = makeProbeType(probeType, firstValidation); in setProbeType()130 out.writeInt(probeType); in writeToParcel()152 private static int makeProbeType(int probeType, boolean firstValidation) { in makeProbeType() argument153 return (probeType & 0xff) | (firstValidation ? FIRST_VALIDATION : REVALIDATION); in makeProbeType()159 public static @NonNull String getProbeName(int probeType) { in getProbeName() argument[all …]
48 assertTrue(validationProbeEvent.probeType hasType REVALIDATION) in hasType()57 assertTrue(validationProbeEvent.probeType hasType ValidationProbeEvent.PROBE_DNS) in hasType()58 assertTrue(validationProbeEvent.probeType hasType FIRST_VALIDATION) in hasType()
258 validationProbeEvent.probeType = in.probeType; in setValidationProbeEvent()