Lines Matching refs:ListCommand

73 NullableOStream<std::ostream> ListCommand::out() const {  in out()
77 NullableOStream<std::ostream> ListCommand::err() const { in err()
81 std::string ListCommand::GetName() { in GetName()
84 std::string ListCommand::getSimpleDescription() const { in getSimpleDescription()
88 std::string ListCommand::parseCmdline(pid_t pid) const { in parseCmdline()
92 const std::string &ListCommand::getCmdline(pid_t pid) { in getCmdline()
103 void ListCommand::removeDeadProcesses(Pids *pids) { in removeDeadProcesses()
110 Partition ListCommand::getPartition(pid_t pid) { in getPartition()
123 Partition ListCommand::resolvePartition(Partition process, const FqInstance& fqInstance) const { in resolvePartition()
174 std::shared_ptr<const vintf::HalManifest> ListCommand::getDeviceManifest() const { in getDeviceManifest()
178 std::shared_ptr<const vintf::CompatibilityMatrix> ListCommand::getDeviceMatrix() const { in getDeviceMatrix()
182 std::shared_ptr<const vintf::HalManifest> ListCommand::getFrameworkManifest() const { in getFrameworkManifest()
186 std::shared_ptr<const vintf::CompatibilityMatrix> ListCommand::getFrameworkMatrix() const { in getFrameworkMatrix()
190 VintfInfo ListCommand::getVintfInfo(const std::string& fqInstanceName, in getVintfInfo()
237 bool ListCommand::getPidInfo( in getPidInfo()
295 const PidInfo* ListCommand::getPidInfoCached(pid_t serverPid) { in getPidInfoCached()
305 bool ListCommand::shouldFetchHalType(const HalType &type) const { in shouldFetchHalType()
309 Table* ListCommand::tableForType(HalType type) { in tableForType()
326 const Table* ListCommand::tableForType(HalType type) const { in tableForType()
327 return const_cast<ListCommand*>(this)->tableForType(type); in tableForType()
330 void ListCommand::forEachTable(const std::function<void(Table &)> &f) { in forEachTable()
335 void ListCommand::forEachTable(const std::function<void(const Table &)> &f) const { in forEachTable()
341 void ListCommand::postprocess() { in postprocess()
401 bool ListCommand::addEntryWithInstance(const TableEntry& entry, in addEntryWithInstance()
447 bool ListCommand::addEntryWithoutInstance(const TableEntry& entry, in addEntryWithoutInstance()
466 void ListCommand::dumpVintf(const NullableOStream<std::ostream>& out) const { in dumpVintf()
507 std::string ListCommand::INIT_VINTF_NOTES{
536 void ListCommand::dumpTable(const NullableOStream<std::ostream>& out) const { in dumpTable()
568 Status ListCommand::dump() { in dump()
569 auto dump = mVintf ? &ListCommand::dumpVintf : &ListCommand::dumpTable; in dump()
590 void ListCommand::putEntry(HalType type, TableEntry &&entry) { in putEntry()
594 Status ListCommand::fetchAllLibraries(const sp<IServiceManager> &manager) { in fetchAllLibraries()
624 Status ListCommand::fetchPassthrough(const sp<IServiceManager> &manager) { in fetchPassthrough()
655 Status ListCommand::fetchBinderized(const sp<IServiceManager> &manager) { in fetchBinderized()
690 Status ListCommand::fetchBinderizedEntry(const sp<IServiceManager> &manager, in fetchBinderizedEntry()
791 Status ListCommand::fetchManifestHals() { in fetchManifestHals()
822 Status ListCommand::fetchLazyHals() { in fetchLazyHals()
848 bool ListCommand::hasHwbinderEntry(const TableEntry& entry) const { in hasHwbinderEntry()
857 bool ListCommand::hasPassthroughEntry(const TableEntry& entry) const { in hasPassthroughEntry()
879 Status ListCommand::fetch() { in fetch()
903 void ListCommand::initFetchTypes() { in initFetchTypes()
919 void ListCommand::registerAllOptions() { in registerAllOptions()
924 mOptions.push_back({'h', "help", no_argument, v++, [](ListCommand*, const char*) { in registerAllOptions() argument
927 mOptions.push_back({'i', "interface", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
931 mOptions.push_back({'l', "released", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
935 mOptions.push_back({'t', "transport", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
939 mOptions.push_back({'r', "arch", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
943 mOptions.push_back({'s', "hash", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
947 mOptions.push_back({'p', "pid", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
951 mOptions.push_back({'a', "address", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
955 mOptions.push_back({'c', "clients", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
959 mOptions.push_back({'e', "threads", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
963 mOptions.push_back({'m', "cmdline", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
967 … mOptions.push_back({'d', "debug", optional_argument, v++, [](ListCommand* thiz, const char* arg) { in registerAllOptions()
974 mOptions.push_back({'V', "vintf", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
983 … mOptions.push_back({'S', "service-status", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
993 … mOptions.push_back({'\0', "init-vintf", no_argument, v++, [](ListCommand* thiz, const char* arg) { in registerAllOptions()
1000 …mOptions.push_back({'\0', "init-vintf-partition", required_argument, v++, [](ListCommand* thiz, co… in registerAllOptions()
1007 … mOptions.push_back({'\0', "sort", required_argument, v++, [](ListCommand* thiz, const char* arg) { in registerAllOptions()
1018 mOptions.push_back({'\0', "neat", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
1022 …mOptions.push_back({'\0', "types", required_argument, v++, [](ListCommand* thiz, const char* arg) { in registerAllOptions()
1067 const ListCommand::RegisteredOptions& options, in getLongOptions()
1089 static std::string getShortOptions(const ListCommand::RegisteredOptions& options) { in getShortOptions()
1099 Status ListCommand::parseArgs(const Arg &arg) { in parseArgs()
1187 Status ListCommand::main(const Arg &arg) { in main()
1198 const std::string& ListCommand::RegisteredOption::getHelpMessageForArgument() const { in getHelpMessageForArgument()
1212 void ListCommand::usage() const { in usage()