Loading core/java/android/os/StatsBootstrapAtomValue.aidl +1 −0 Original line number Diff line number Diff line Loading @@ -26,4 +26,5 @@ union StatsBootstrapAtomValue { float floatValue; String stringValue; byte[] bytesValue; String[] stringArrayValue; } No newline at end of file services/core/java/com/android/server/stats/bootstrap/StatsBootstrapAtomService.java +3 −0 Original line number Diff line number Diff line Loading @@ -62,6 +62,9 @@ public class StatsBootstrapAtomService extends IStatsBootstrapAtomService.Stub { case StatsBootstrapAtomValue.bytesValue: builder.writeByteArray(value.getBytesValue()); break; case StatsBootstrapAtomValue.stringArrayValue: builder.writeStringArray(value.getStringArrayValue()); break; default: Slog.e(TAG, "Unexpected value type " + value.getTag() + " when logging atom " + atom.atomId); Loading Loading
core/java/android/os/StatsBootstrapAtomValue.aidl +1 −0 Original line number Diff line number Diff line Loading @@ -26,4 +26,5 @@ union StatsBootstrapAtomValue { float floatValue; String stringValue; byte[] bytesValue; String[] stringArrayValue; } No newline at end of file
services/core/java/com/android/server/stats/bootstrap/StatsBootstrapAtomService.java +3 −0 Original line number Diff line number Diff line Loading @@ -62,6 +62,9 @@ public class StatsBootstrapAtomService extends IStatsBootstrapAtomService.Stub { case StatsBootstrapAtomValue.bytesValue: builder.writeByteArray(value.getBytesValue()); break; case StatsBootstrapAtomValue.stringArrayValue: builder.writeStringArray(value.getStringArrayValue()); break; default: Slog.e(TAG, "Unexpected value type " + value.getTag() + " when logging atom " + atom.atomId); Loading