Home
last modified time | relevance | path

Searched refs:reflection_schema (Results 1 – 7 of 7) sorted by relevance

/system/bt/gd/dumpsys/
Dreflection_schema_test.cc44 dumpsys::ReflectionSchema reflection_schema(testing::GetBundledSchemaData()); in TEST_F() local
45 ASSERT_TRUE(reflection_schema.GetNumberOfBundledSchemas() == 5); in TEST_F()
46 ASSERT_TRUE(reflection_schema.FindInReflectionSchema("testing.DumpsysTestDataRoot") != nullptr); in TEST_F()
47 ASSERT_TRUE(reflection_schema.FindInReflectionSchema("testing.BarTestSchema") != nullptr); in TEST_F()
48 ASSERT_TRUE(reflection_schema.FindInReflectionSchema("testing.BazTestSchema") != nullptr); in TEST_F()
49 ASSERT_TRUE(reflection_schema.FindInReflectionSchema("testing.FooTestSchema") != nullptr); in TEST_F()
50 ASSERT_TRUE(reflection_schema.FindInReflectionSchema("testing.QuxTestSchema") != nullptr); in TEST_F()
51 ASSERT_TRUE(reflection_schema.FindInReflectionSchema("DoesNotExist") == nullptr); in TEST_F()
55 dumpsys::ReflectionSchema reflection_schema(testing::GetBundledSchemaData()); in TEST_F() local
56 ASSERT_TRUE(reflection_schema.VerifyReflectionSchema()); in TEST_F()
[all …]
Dfilter.cc28 …Filter(const dumpsys::ReflectionSchema& reflection_schema) : reflection_schema_(reflection_schema)… in Filter() argument
35 dumpsys::FilterType filter_type, const dumpsys::ReflectionSchema& reflection_schema);
80 …veloperPrivacyFilter(const dumpsys::ReflectionSchema& reflection_schema) : Filter(reflection_schem… in DeveloperPrivacyFilter() argument
86 …UserPrivacyFilter(const dumpsys::ReflectionSchema& reflection_schema) : Filter(reflection_schema) … in UserPrivacyFilter() argument
187 dumpsys::FilterType filter_type, const dumpsys::ReflectionSchema& reflection_schema) { in Factory() argument
190 return std::make_unique<DeveloperPrivacyFilter>(reflection_schema); in Factory()
192 return std::make_unique<UserPrivacyFilter>(reflection_schema); in Factory()
197 FilterType filter_type, const ReflectionSchema& reflection_schema, std::string* dumpsys_data) { in FilterInPlace() argument
198 auto filter = Filter::Factory(filter_type, reflection_schema); in FilterInPlace()
Dfilter_test.cc95 dumpsys::ReflectionSchema reflection_schema(testing::GetBundledSchemaData()); in TEST_F() local
97 dumpsys::FilterInPlace(dumpsys::FilterType::AS_DEVELOPER, reflection_schema, &dumpsys_data); in TEST_F()
130 dumpsys::ReflectionSchema reflection_schema(testing::GetBundledSchemaData()); in TEST_F() local
132 dumpsys::FilterInPlace(dumpsys::FilterType::AS_USER, reflection_schema, &dumpsys_data); in TEST_F()
Dfilter.h25 void FilterInPlace(FilterType filter_type, const ReflectionSchema& reflection_schema, std::string* …
DBUILD.gn23 "reflection_schema.cc",
DAndroid.bp16 "reflection_schema.cc",
/system/bt/gd/shim/
Ddumpsys.cc44 impl(const Dumpsys& dumpsys_module, const dumpsys::ReflectionSchema& reflection_schema);
64 …psys::impl::impl(const Dumpsys& dumpsys_module, const dumpsys::ReflectionSchema& reflection_schema) in impl() argument
65 : dumpsys_module_(dumpsys_module), reflection_schema_(std::move(reflection_schema)) {} in impl()