Searched refs:reflection_schema (Results 1 – 7 of 7) sorted by relevance
43 dumpsys::ReflectionSchema reflection_schema(testing::GetBundledSchemaData()); in TEST_F() local44 ASSERT_TRUE(reflection_schema.GetNumberOfBundledSchemas() == 5); in TEST_F()45 ASSERT_TRUE(reflection_schema.FindInReflectionSchema("testing.DumpsysTestDataRoot") != nullptr); in TEST_F()46 ASSERT_TRUE(reflection_schema.FindInReflectionSchema("testing.BarTestSchema") != nullptr); in TEST_F()47 ASSERT_TRUE(reflection_schema.FindInReflectionSchema("testing.BazTestSchema") != nullptr); in TEST_F()48 ASSERT_TRUE(reflection_schema.FindInReflectionSchema("testing.FooTestSchema") != nullptr); in TEST_F()49 ASSERT_TRUE(reflection_schema.FindInReflectionSchema("testing.QuxTestSchema") != nullptr); in TEST_F()50 ASSERT_TRUE(reflection_schema.FindInReflectionSchema("DoesNotExist") == nullptr); in TEST_F()54 dumpsys::ReflectionSchema reflection_schema(testing::GetBundledSchemaData()); in TEST_F() local55 ASSERT_TRUE(reflection_schema.VerifyReflectionSchema()); in TEST_F()[all …]
28 …Filter(const dumpsys::ReflectionSchema& reflection_schema) : reflection_schema_(reflection_schema)… in Filter() argument34 static std::unique_ptr<Filter> Factory(const dumpsys::ReflectionSchema& reflection_schema);81 …veloperPrivacyFilter(const dumpsys::ReflectionSchema& reflection_schema) : Filter(reflection_schem… in DeveloperPrivacyFilter() argument86 std::unique_ptr<Filter> Filter::Factory(const dumpsys::ReflectionSchema& reflection_schema) { in Factory() argument87 return std::make_unique<DeveloperPrivacyFilter>(reflection_schema); in Factory()91 const ReflectionSchema& reflection_schema, std::string* dumpsys_data) { in FilterSchema() argument92 auto filter = Filter::Factory(reflection_schema); in FilterSchema()
88 dumpsys::ReflectionSchema reflection_schema(testing::GetBundledSchemaData()); in TEST_F() local90 dumpsys::FilterSchema(reflection_schema, &dumpsys_data); in TEST_F()
23 void FilterSchema(const ReflectionSchema& reflection_schema, std::string* dumpsys_data);
22 "reflection_schema.cc",
15 "reflection_schema.cc",
53 impl(const Dumpsys& dumpsys_module, const dumpsys::ReflectionSchema& reflection_schema);72 …psys::impl::impl(const Dumpsys& dumpsys_module, const dumpsys::ReflectionSchema& reflection_schema) in impl() argument73 : dumpsys_module_(dumpsys_module), reflection_schema_(std::move(reflection_schema)) {} in impl()