Lines Matching refs:ListCommand
74 NullableOStream<std::ostream> ListCommand::out() const { in out()
78 NullableOStream<std::ostream> ListCommand::err() const { in err()
82 std::string ListCommand::GetName() { in GetName()
85 std::string ListCommand::getSimpleDescription() const { in getSimpleDescription()
89 std::string ListCommand::parseCmdline(pid_t pid) const { in parseCmdline()
93 const std::string &ListCommand::getCmdline(pid_t pid) { in getCmdline()
104 void ListCommand::removeDeadProcesses(Pids *pids) { in removeDeadProcesses()
111 Partition ListCommand::getPartition(pid_t pid) { in getPartition()
124 Partition ListCommand::resolvePartition(Partition process, const FqInstance& fqInstance) const { in resolvePartition()
175 std::shared_ptr<const vintf::HalManifest> ListCommand::getDeviceManifest() const { in getDeviceManifest()
179 std::shared_ptr<const vintf::CompatibilityMatrix> ListCommand::getDeviceMatrix() const { in getDeviceMatrix()
183 std::shared_ptr<const vintf::HalManifest> ListCommand::getFrameworkManifest() const { in getFrameworkManifest()
187 std::shared_ptr<const vintf::CompatibilityMatrix> ListCommand::getFrameworkMatrix() const { in getFrameworkMatrix()
191 VintfInfo ListCommand::getVintfInfo(const std::string& fqInstanceName, in getVintfInfo()
207 bool ListCommand::getPidInfo( in getPidInfo()
213 const BinderPidInfo* ListCommand::getPidInfoCached(pid_t serverPid) { in getPidInfoCached()
223 bool ListCommand::shouldFetchHalType(const HalType &type) const { in shouldFetchHalType()
227 Table* ListCommand::tableForType(HalType type) { in tableForType()
244 const Table* ListCommand::tableForType(HalType type) const { in tableForType()
245 return const_cast<ListCommand*>(this)->tableForType(type); in tableForType()
248 void ListCommand::forEachTable(const std::function<void(Table &)> &f) { in forEachTable()
253 void ListCommand::forEachTable(const std::function<void(const Table &)> &f) const { in forEachTable()
259 void ListCommand::postprocess() { in postprocess()
319 bool ListCommand::addEntryWithInstance(const TableEntry& entry, in addEntryWithInstance()
373 bool ListCommand::addEntryWithoutInstance(const TableEntry& entry, in addEntryWithoutInstance()
392 void ListCommand::dumpVintf(const NullableOStream<std::ostream>& out) const { in dumpVintf()
433 std::string ListCommand::INIT_VINTF_NOTES{
462 void ListCommand::dumpTable(const NullableOStream<std::ostream>& out) const { in dumpTable()
494 Status ListCommand::dump() { in dump()
495 auto dump = mVintf ? &ListCommand::dumpVintf : &ListCommand::dumpTable; in dump()
516 void ListCommand::putEntry(HalType type, TableEntry &&entry) { in putEntry()
520 Status ListCommand::fetchAllLibraries(const sp<IServiceManager> &manager) { in fetchAllLibraries()
558 Status ListCommand::fetchPassthrough(const sp<IServiceManager> &manager) { in fetchPassthrough()
602 Status ListCommand::fetchBinderized(const sp<IServiceManager> &manager) { in fetchBinderized()
640 Status ListCommand::fetchBinderizedEntry(const sp<IServiceManager> &manager, in fetchBinderizedEntry()
752 Status ListCommand::fetchManifestHals() { in fetchManifestHals()
783 Status ListCommand::fetchLazyHals() { in fetchLazyHals()
809 bool ListCommand::hasHwbinderEntry(const TableEntry& entry) const { in hasHwbinderEntry()
818 bool ListCommand::hasPassthroughEntry(const TableEntry& entry) const { in hasPassthroughEntry()
840 Status ListCommand::fetch() { in fetch()
864 void ListCommand::initFetchTypes() { in initFetchTypes()
892 void ListCommand::registerAllOptions() { in registerAllOptions()
897 mOptions.push_back({'h', "help", no_argument, v++, [](ListCommand*, const char*) { in registerAllOptions() argument
900 mOptions.push_back({'i', "interface", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
904 mOptions.push_back({'l', "released", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
908 mOptions.push_back({'t', "transport", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
912 mOptions.push_back({'r', "arch", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
916 mOptions.push_back({'s', "hash", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
920 mOptions.push_back({'p', "pid", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
924 mOptions.push_back({'a', "address", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
928 mOptions.push_back({'c', "clients", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
932 mOptions.push_back({'e', "threads", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
936 mOptions.push_back({'m', "cmdline", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
940 … mOptions.push_back({'d', "debug", optional_argument, v++, [](ListCommand* thiz, const char* arg) { in registerAllOptions()
947 mOptions.push_back({'V', "vintf", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
956 … mOptions.push_back({'S', "service-status", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
966 [](ListCommand* thiz, const char*) { in registerAllOptions()
975 … mOptions.push_back({'\0', "init-vintf", no_argument, v++, [](ListCommand* thiz, const char* arg) { in registerAllOptions()
982 …mOptions.push_back({'\0', "init-vintf-partition", required_argument, v++, [](ListCommand* thiz, co… in registerAllOptions()
989 … mOptions.push_back({'\0', "sort", required_argument, v++, [](ListCommand* thiz, const char* arg) { in registerAllOptions()
1000 mOptions.push_back({'\0', "neat", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
1006 [](ListCommand* thiz, const char* arg) { in registerAllOptions()
1058 const ListCommand::RegisteredOptions& options, in getLongOptions()
1080 static std::string getShortOptions(const ListCommand::RegisteredOptions& options) { in getShortOptions()
1090 Status ListCommand::parseArgs(const Arg &arg) { in parseArgs()
1178 Status ListCommand::main(const Arg &arg) { in main()
1189 const std::string& ListCommand::RegisteredOption::getHelpMessageForArgument() const { in getHelpMessageForArgument()
1203 void ListCommand::usage() const { in usage()