| 54 | }; |
| 55 | |
| 56 | static void BuildRings_(ipc::SystemDataStore& store, size_t ringCapacity) |
| 57 | { |
| 58 | // Scalar metric |
| 59 | store.telemetryData.AddRing(kScalarMetric, ringCapacity, 1, PM_DATA_TYPE_DOUBLE); |
| 60 | |
| 61 | // Array metric with 2 elements |
| 62 | store.telemetryData.AddRing(kArrayMetric, ringCapacity, 2, PM_DATA_TYPE_DOUBLE); |
| 63 | } |
| 64 | |
| 65 | static void PushDeterministicSamples_(ipc::SystemDataStore& store, size_t sampleCount, |
| 66 | size_t& nextIndex) |
no test coverage detected