Home
last modified time | relevance | path

Searched refs:FindInReflectionSchema (Results 1 – 4 of 4) sorted by relevance

/packages/modules/Bluetooth/system/gd/dumpsys/
Dreflection_schema_test.cc45 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()
Dreflection_schema.cc49 return FindInReflectionSchema(GetRootName()); in GetRootReflectionSchema()
52 const reflection::Schema* dumpsys::ReflectionSchema::FindInReflectionSchema(const std::string& name… in FindInReflectionSchema() function in dumpsys::ReflectionSchema
Dreflection_schema.h38 const reflection::Schema* FindInReflectionSchema(const std::string& name) const;
/packages/modules/Bluetooth/system/gd/shim/
Ddumpsys.cc99 const reflection::Schema* schema = reflection_schema_.FindInReflectionSchema(root_name); in PrintAsJson()