HomeSort by relevance Sort by last modified time
    Searched refs:registeredPoints (Results 1 - 4 of 4) sorted by null

  /external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/metrics/
DoubleGaugeImpl.java 47 private volatile Map<List<LabelValue>, PointImpl> registeredPoints =
67 PointImpl existingPoint = registeredPoints.get(labelValues);
81 PointImpl existingPoint = registeredPoints.get(defaultLabelValues);
93 new LinkedHashMap<List<LabelValue>, PointImpl>(registeredPoints);
98 registeredPoints = Collections.unmodifiableMap(registeredPointsCopy);
103 registeredPoints = Collections.<List<LabelValue>, PointImpl>emptyMap();
107 PointImpl existingPoint = registeredPoints.get(labelValues);
121 new LinkedHashMap<List<LabelValue>, PointImpl>(registeredPoints);
123 registeredPoints = Collections.unmodifiableMap(registeredPointsCopy);
131 Map<List<LabelValue>, PointImpl> currentRegisteredPoints = registeredPoints;
    [all...]
LongGaugeImpl.java 47 private volatile Map<List<LabelValue>, PointImpl> registeredPoints =
67 PointImpl existingPoint = registeredPoints.get(labelValues);
81 PointImpl existingPoint = registeredPoints.get(defaultLabelValues);
93 new LinkedHashMap<List<LabelValue>, PointImpl>(registeredPoints);
98 registeredPoints = Collections.unmodifiableMap(registeredPointsCopy);
103 registeredPoints = Collections.<List<LabelValue>, PointImpl>emptyMap();
107 PointImpl existingPoint = registeredPoints.get(labelValues);
121 new LinkedHashMap<List<LabelValue>, PointImpl>(registeredPoints);
123 registeredPoints = Collections.unmodifiableMap(registeredPointsCopy);
131 Map<List<LabelValue>, PointImpl> currentRegisteredPoints = registeredPoints;
    [all...]
DerivedDoubleGaugeImpl.java 51 private volatile Map<List<LabelValue>, PointWithFunction> registeredPoints =
74 PointWithFunction existingPoint = registeredPoints.get(labelValuesCopy);
84 new LinkedHashMap<List<LabelValue>, PointWithFunction>(registeredPoints);
86 registeredPoints = Collections.unmodifiableMap(registeredPointsCopy);
95 new LinkedHashMap<List<LabelValue>, PointWithFunction>(registeredPoints);
100 registeredPoints = Collections.unmodifiableMap(registeredPointsCopy);
106 registeredPoints = Collections.<List<LabelValue>, PointWithFunction>emptyMap();
113 Map<List<LabelValue>, PointWithFunction> currentRegisteredPoints = registeredPoints;
DerivedLongGaugeImpl.java 51 private volatile Map<List<LabelValue>, PointWithFunction> registeredPoints =
72 PointWithFunction existingPoint = registeredPoints.get(labelValuesCopy);
82 new LinkedHashMap<List<LabelValue>, PointWithFunction>(registeredPoints);
84 registeredPoints = Collections.unmodifiableMap(registeredPointsCopy);
93 new LinkedHashMap<List<LabelValue>, PointWithFunction>(registeredPoints);
98 registeredPoints = Collections.unmodifiableMap(registeredPointsCopy);
104 registeredPoints = Collections.<List<LabelValue>, PointWithFunction>emptyMap();
111 Map<List<LabelValue>, PointWithFunction> currentRegisteredPoints = registeredPoints;

Completed in 90 milliseconds