Searched refs:probeType (Results 1 – 3 of 3) sorted by relevance
69 public final int probeType; field in ValidationProbeEvent73 private ValidationProbeEvent(long durationMs, int probeType, int returnCode) { in ValidationProbeEvent() argument75 this.probeType = probeType; in ValidationProbeEvent()81 probeType = in.readInt(); in ValidationProbeEvent()106 public Builder setProbeType(int probeType, boolean firstValidation) { in setProbeType() argument107 mProbeType = makeProbeType(probeType, firstValidation); in setProbeType()133 out.writeInt(probeType); in writeToParcel()155 private static int makeProbeType(int probeType, boolean firstValidation) { in makeProbeType() argument156 return (probeType & 0xff) | (firstValidation ? FIRST_VALIDATION : REVALIDATION); in makeProbeType()162 public static @NonNull String getProbeName(int probeType) { in getProbeName() argument[all …]
257 validationProbeEvent.probeType = in.probeType; in setValidationProbeEvent()
33179 Landroid/net/metrics/ValidationProbeEvent;->probeType:I