Home
last modified time | relevance | path

Searched refs:str_set (Results 1 – 21 of 21) sorted by relevance

/aosp_15_r20/packages/modules/StatsD/statsd/src/packages/
DUidMap.cpp338 map<string, int>* installerIndices, std::set<string>* str_set, in writeUidMapSnapshot() argument
342 writeUidMapSnapshotLocked(timestamp, options, interestingUids, installerIndices, str_set, in writeUidMapSnapshot()
349 std::set<string>* str_set, ProtoOutputStream* proto) const { in writeUidMapSnapshotLocked() argument
375 if (str_set != nullptr) { // Hash strings in report in writeUidMapSnapshotLocked()
376 str_set->insert(packageName); in writeUidMapSnapshotLocked()
380 str_set->insert(appData.versionString); in writeUidMapSnapshotLocked()
385 str_set->insert(appData.installer); in writeUidMapSnapshotLocked()
430 const UidMapOptions& options, std::set<string>* str_set, in appendUidMap() argument
444 if (str_set != nullptr) { in appendUidMap()
445 str_set->insert(record.package); in appendUidMap()
[all …]
DUidMap.h152 std::set<string>* str_set, ProtoOutputStream* proto);
171 std::map<string, int>* installerIndices, std::set<string>* str_set,
181 std::set<string>* str_set, ProtoOutputStream* proto) const;
/aosp_15_r20/packages/modules/StatsD/statsd/src/
Dstats_log_util.cpp121 int prefix, std::set<string>* str_set, std::set<int32_t>& usedUids, in writeDimensionToProtoHelper() argument
157 if (str_set == nullptr) { in writeDimensionToProtoHelper()
161 str_set->insert(dim.mValue.str_value); in writeDimensionToProtoHelper()
181 dim.mField.getPrefix(valueDepth), str_set, usedUids, in writeDimensionToProtoHelper()
195 std::set<string>* str_set, std::set<int32_t>& usedUids, in writeDimensionLeafToProtoHelper() argument
228 if (str_set == nullptr) { in writeDimensionLeafToProtoHelper()
232 str_set->insert(dim.mValue.str_value); in writeDimensionLeafToProtoHelper()
246 dim.mField.getPrefix(valueDepth), str_set, usedUids, in writeDimensionLeafToProtoHelper()
298 std::set<string>* str_set, std::set<int32_t>& usedUids, in writeDimensionToProto() argument
307 writeDimensionToProtoHelper(dimension.getValues(), uidFields, &index, 0, 0, str_set, usedUids, in writeDimensionToProto()
[all …]
Dstats_log_util.h39 const std::vector<Matcher>& uidFields, std::set<string>* str_set,
45 std::set<string>* str_set, std::set<int32_t>& usedUids,
/aosp_15_r20/external/executorch/third-party/
H A Dflatcc_defs.bzl96 "flatcc/external/hash/str_set.c",
151 "flatcc/external/hash/str_set.h",
178 "flatcc/external/hash/str_set.c",
234 "flatcc/external/hash/str_set.h",
/aosp_15_r20/packages/modules/StatsD/statsd/src/metrics/
DCountMetricProducer.cpp227 std::set<string>* str_set, std::set<int32_t>& usedUids, in onDumpReportLocked() argument
283 writeDimensionToProto(dimensionKey.getDimensionKeyInWhat(), mUidFields, str_set, in onDumpReportLocked()
288 FIELD_ID_DIMENSION_LEAF_IN_WHAT, mUidFields, str_set, in onDumpReportLocked()
DMetricProducer.h252 std::set<string>* str_set, std::set<int32_t>& usedUids, in onDumpReport() argument
256 str_set, usedUids, protoOutput); in onDumpReport()
460 std::set<string>* str_set, std::set<int32_t>& usedUids,
DGaugeMetricProducer.cpp255 std::set<string>* str_set, std::set<int32_t>& usedUids, in onDumpReportLocked() argument
331 writeDimensionToProto(dimensionKey.getDimensionKeyInWhat(), mUidFields, str_set, in onDumpReportLocked()
336 FIELD_ID_DIMENSION_LEAF_IN_WHAT, mUidFields, str_set, in onDumpReportLocked()
DDurationMetricProducer.cpp516 const DumpLatency dumpLatency, std::set<string>* str_set, std::set<int32_t>& usedUids, in onDumpReportLocked() argument
574 writeDimensionToProto(dimensionKey.getDimensionKeyInWhat(), mUidFields, str_set, in onDumpReportLocked()
579 FIELD_ID_DIMENSION_LEAF_IN_WHAT, mUidFields, str_set, in onDumpReportLocked()
DRestrictedEventMetricProducer.h49 std::set<string>* str_set, std::set<int32_t>& usedUids,
DEventMetricProducer.h62 std::set<string>* str_set, std::set<int32_t>& usedUids,
DRestrictedEventMetricProducer.cpp70 const DumpLatency dumpLatency, std::set<string>* str_set, std::set<int32_t>& usedUids, in onDumpReportLocked() argument
DCountMetricProducer.h76 std::set<string>* str_set, std::set<int32_t>& usedUids,
DDurationMetricProducer.h91 std::set<string>* str_set, std::set<int32_t>& usedUids,
DGaugeMetricProducer.h120 std::set<string>* str_set, std::set<int32_t>& usedUids,
DMetricsManager.cpp489 const DumpLatency dumpLatency, std::set<string>* str_set, in onDumpReport() argument
507 dumpLatency, str_set, usedUids, protoOutput); in onDumpReport()
DEventMetricProducer.cpp176 std::set<string>* str_set, std::set<int32_t>& usedUids, in onDumpReportLocked() argument
DMetricsManager.h136 const DumpLatency dumpLatency, std::set<string>* str_set,
/aosp_15_r20/external/pdfium/core/fxcrt/
H A Dbytestring_unittest.cpp238 std::set<ByteString, std::less<>> str_set; in TEST() local
239 bool inserted = str_set.insert(ByteString("hello")).second; in TEST()
241 EXPECT_TRUE(pdfium::Contains(str_set, ByteString("hello"))); in TEST()
242 EXPECT_TRUE(pdfium::Contains(str_set, ByteStringView("hello"))); in TEST()
243 EXPECT_TRUE(pdfium::Contains(str_set, "hello")); in TEST()
244 EXPECT_FALSE(pdfium::Contains(str_set, ByteString("goodbye"))); in TEST()
245 EXPECT_FALSE(pdfium::Contains(str_set, ByteStringView("goodbye"))); in TEST()
246 EXPECT_FALSE(pdfium::Contains(str_set, "goodbye")); in TEST()
/aosp_15_r20/external/cronet/third_party/boringssl/src/pki/
H A Dtest_helpers.cc61 std::string StrSetToString(const std::set<std::string> &str_set) { in StrSetToString() argument
63 for (const auto &s : str_set) { in StrSetToString()
/aosp_15_r20/packages/modules/StatsD/statsd/tests/
DStatsLogProcessor_test.cpp77 const DumpLatency dumpLatency, std::set<string>* str_set,
217 const DumpLatency dumpLatency, std::set<string>* str_set,