package com.google.firebase.perf.v1; import com.google.protobuf.GeneratedMessageLite; import com.google.protobuf.MessageLiteOrBuilder; import com.google.protobuf.Parser; /* loaded from: classes3.dex */ public final class CpuMetricReading extends GeneratedMessageLite implements MessageLiteOrBuilder { public static final int CLIENT_TIME_US_FIELD_NUMBER = 1; private static final CpuMetricReading DEFAULT_INSTANCE; private static volatile Parser PARSER = null; public static final int SYSTEM_TIME_US_FIELD_NUMBER = 3; public static final int USER_TIME_US_FIELD_NUMBER = 2; private int bitField0_; private long clientTimeUs_; private long systemTimeUs_; private long userTimeUs_; /* JADX INFO: Access modifiers changed from: private */ public void setClientTimeUs(long j) { this.bitField0_ |= 1; this.clientTimeUs_ = j; } public final void setSystemTimeUs(long j) { this.bitField0_ |= 4; this.systemTimeUs_ = j; } public final void setUserTimeUs(long j) { this.bitField0_ |= 2; this.userTimeUs_ = j; } public static Builder newBuilder() { return (Builder) DEFAULT_INSTANCE.createBuilder(); } public static final class Builder extends GeneratedMessageLite.Builder implements MessageLiteOrBuilder { public /* synthetic */ Builder(AnonymousClass1 anonymousClass1) { this(); } public Builder() { super(CpuMetricReading.DEFAULT_INSTANCE); } public Builder setClientTimeUs(long j) { copyOnWrite(); ((CpuMetricReading) this.instance).setClientTimeUs(j); return this; } public Builder setUserTimeUs(long j) { copyOnWrite(); ((CpuMetricReading) this.instance).setUserTimeUs(j); return this; } public Builder setSystemTimeUs(long j) { copyOnWrite(); ((CpuMetricReading) this.instance).setSystemTimeUs(j); return this; } } /* renamed from: com.google.firebase.perf.v1.CpuMetricReading$1, reason: invalid class name */ public static /* synthetic */ class AnonymousClass1 { public static final /* synthetic */ int[] $SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke; static { int[] iArr = new int[GeneratedMessageLite.MethodToInvoke.values().length]; $SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke = iArr; try { iArr[GeneratedMessageLite.MethodToInvoke.NEW_MUTABLE_INSTANCE.ordinal()] = 1; } catch (NoSuchFieldError unused) { } try { $SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.NEW_BUILDER.ordinal()] = 2; } catch (NoSuchFieldError unused2) { } try { $SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.BUILD_MESSAGE_INFO.ordinal()] = 3; } catch (NoSuchFieldError unused3) { } try { $SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.GET_DEFAULT_INSTANCE.ordinal()] = 4; } catch (NoSuchFieldError unused4) { } try { $SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.GET_PARSER.ordinal()] = 5; } catch (NoSuchFieldError unused5) { } try { $SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.GET_MEMOIZED_IS_INITIALIZED.ordinal()] = 6; } catch (NoSuchFieldError unused6) { } try { $SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.SET_MEMOIZED_IS_INITIALIZED.ordinal()] = 7; } catch (NoSuchFieldError unused7) { } } } @Override // com.google.protobuf.GeneratedMessageLite public final Object dynamicMethod(GeneratedMessageLite.MethodToInvoke methodToInvoke, Object obj, Object obj2) { AnonymousClass1 anonymousClass1 = null; switch (AnonymousClass1.$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[methodToInvoke.ordinal()]) { case 1: return new CpuMetricReading(); case 2: return new Builder(anonymousClass1); case 3: return GeneratedMessageLite.newMessageInfo(DEFAULT_INSTANCE, "\u0001\u0003\u0000\u0001\u0001\u0003\u0003\u0000\u0000\u0000\u0001ဂ\u0000\u0002ဂ\u0001\u0003ဂ\u0002", new Object[]{"bitField0_", "clientTimeUs_", "userTimeUs_", "systemTimeUs_"}); case 4: return DEFAULT_INSTANCE; case 5: Parser parser = PARSER; if (parser == null) { synchronized (CpuMetricReading.class) { try { parser = PARSER; if (parser == null) { parser = new GeneratedMessageLite.DefaultInstanceBasedParser<>(DEFAULT_INSTANCE); PARSER = parser; } } finally { } } } return parser; case 6: return (byte) 1; case 7: return null; default: throw new UnsupportedOperationException(); } } static { CpuMetricReading cpuMetricReading = new CpuMetricReading(); DEFAULT_INSTANCE = cpuMetricReading; GeneratedMessageLite.registerDefaultInstance(CpuMetricReading.class, cpuMetricReading); } }