- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
98 lines
4.1 KiB
Java
98 lines
4.1 KiB
Java
package gatewayprotocol.v1;
|
|
|
|
import com.google.protobuf.kotlin.DslList;
|
|
import com.google.protobuf.kotlin.DslProxy;
|
|
import com.google.protobuf.kotlin.ProtoDslMarker;
|
|
import gatewayprotocol.v1.DiagnosticEventRequestOuterClass;
|
|
import java.util.List;
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public final class DiagnosticEventRequestKt {
|
|
public static final DiagnosticEventRequestKt INSTANCE = new DiagnosticEventRequestKt();
|
|
|
|
@ProtoDslMarker
|
|
public static final class Dsl {
|
|
public static final Companion Companion = new Companion(null);
|
|
private final DiagnosticEventRequestOuterClass.DiagnosticEventRequest.Builder _builder;
|
|
|
|
public /* synthetic */ Dsl(DiagnosticEventRequestOuterClass.DiagnosticEventRequest.Builder builder, DefaultConstructorMarker defaultConstructorMarker) {
|
|
this(builder);
|
|
}
|
|
|
|
private Dsl(DiagnosticEventRequestOuterClass.DiagnosticEventRequest.Builder builder) {
|
|
this._builder = builder;
|
|
}
|
|
|
|
public static final class Companion {
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
private Companion() {
|
|
}
|
|
|
|
public final /* synthetic */ Dsl _create(DiagnosticEventRequestOuterClass.DiagnosticEventRequest.Builder builder) {
|
|
Intrinsics.checkNotNullParameter(builder, "builder");
|
|
return new Dsl(builder, null);
|
|
}
|
|
}
|
|
|
|
public final /* synthetic */ DiagnosticEventRequestOuterClass.DiagnosticEventRequest _build() {
|
|
DiagnosticEventRequestOuterClass.DiagnosticEventRequest build = this._builder.build();
|
|
Intrinsics.checkNotNullExpressionValue(build, "_builder.build()");
|
|
return build;
|
|
}
|
|
|
|
public static final class BatchProxy extends DslProxy {
|
|
private BatchProxy() {
|
|
}
|
|
}
|
|
|
|
public final /* synthetic */ DslList getBatch() {
|
|
List<DiagnosticEventRequestOuterClass.DiagnosticEvent> batchList = this._builder.getBatchList();
|
|
Intrinsics.checkNotNullExpressionValue(batchList, "_builder.getBatchList()");
|
|
return new DslList(batchList);
|
|
}
|
|
|
|
public final /* synthetic */ void addBatch(DslList dslList, DiagnosticEventRequestOuterClass.DiagnosticEvent value) {
|
|
Intrinsics.checkNotNullParameter(dslList, "<this>");
|
|
Intrinsics.checkNotNullParameter(value, "value");
|
|
this._builder.addBatch(value);
|
|
}
|
|
|
|
public final /* synthetic */ void plusAssignBatch(DslList<DiagnosticEventRequestOuterClass.DiagnosticEvent, BatchProxy> dslList, DiagnosticEventRequestOuterClass.DiagnosticEvent value) {
|
|
Intrinsics.checkNotNullParameter(dslList, "<this>");
|
|
Intrinsics.checkNotNullParameter(value, "value");
|
|
addBatch(dslList, value);
|
|
}
|
|
|
|
public final /* synthetic */ void addAllBatch(DslList dslList, Iterable values) {
|
|
Intrinsics.checkNotNullParameter(dslList, "<this>");
|
|
Intrinsics.checkNotNullParameter(values, "values");
|
|
this._builder.addAllBatch(values);
|
|
}
|
|
|
|
public final /* synthetic */ void plusAssignAllBatch(DslList<DiagnosticEventRequestOuterClass.DiagnosticEvent, BatchProxy> dslList, Iterable<DiagnosticEventRequestOuterClass.DiagnosticEvent> values) {
|
|
Intrinsics.checkNotNullParameter(dslList, "<this>");
|
|
Intrinsics.checkNotNullParameter(values, "values");
|
|
addAllBatch(dslList, values);
|
|
}
|
|
|
|
public final /* synthetic */ void setBatch(DslList dslList, int i, DiagnosticEventRequestOuterClass.DiagnosticEvent value) {
|
|
Intrinsics.checkNotNullParameter(dslList, "<this>");
|
|
Intrinsics.checkNotNullParameter(value, "value");
|
|
this._builder.setBatch(i, value);
|
|
}
|
|
|
|
public final /* synthetic */ void clearBatch(DslList dslList) {
|
|
Intrinsics.checkNotNullParameter(dslList, "<this>");
|
|
this._builder.clearBatch();
|
|
}
|
|
}
|
|
|
|
private DiagnosticEventRequestKt() {
|
|
}
|
|
}
|