Lines Matching refs:impl
39 struct Dumpsys::impl { struct in bluetooth::shim::Dumpsys
44 impl(const Dumpsys& dumpsys_module, const dumpsys::ReflectionSchema& reflection_schema);
45 ~impl() = default;
64 Dumpsys::impl::impl(const Dumpsys& dumpsys_module, const dumpsys::ReflectionSchema& reflection_sche… in impl() function in bluetooth::shim::Dumpsys::impl
67 int Dumpsys::impl::GetNumberOfBundledSchemas() const { in GetNumberOfBundledSchemas()
71 bool Dumpsys::impl::IsDebuggable() const { in IsDebuggable()
75 void Dumpsys::impl::FilterAsDeveloper(std::string* dumpsys_data) { in FilterAsDeveloper()
80 void Dumpsys::impl::FilterAsUser(std::string* dumpsys_data) { in FilterAsUser()
85 std::string Dumpsys::impl::PrintAsJson(std::string* dumpsys_data) const { in PrintAsJson()
117 void Dumpsys::impl::DumpWithArgsAsync(int fd, const char** args) { in DumpWithArgsAsync()
136 void Dumpsys::impl::DumpWithArgsSync(int fd, const char** args, std::promise<void> promise) { in DumpWithArgsSync()
147 CallOn(pimpl_.get(), &Dumpsys::impl::DumpWithArgsSync, fd, args, std::move(promise)); in Dump()
152 CallOn(pimpl_.get(), &Dumpsys::impl::DumpWithArgsSync, fd, args, std::move(promise)); in Dump()
165 pimpl_ = std::make_unique<impl>(*this, reflection_schema_); in Start()