Lines Matching refs:ListCommand

72 NullableOStream<std::ostream> ListCommand::out() const {  in out()
76 NullableOStream<std::ostream> ListCommand::err() const { in err()
80 std::string ListCommand::GetName() { in GetName()
83 std::string ListCommand::getSimpleDescription() const { in getSimpleDescription()
87 std::string ListCommand::parseCmdline(pid_t pid) const { in parseCmdline()
91 const std::string &ListCommand::getCmdline(pid_t pid) { in getCmdline()
102 void ListCommand::removeDeadProcesses(Pids *pids) { in removeDeadProcesses()
109 Partition ListCommand::getPartition(pid_t pid) { in getPartition()
122 Partition ListCommand::resolvePartition(Partition process, const FqInstance& fqInstance) const { in resolvePartition()
173 std::shared_ptr<const vintf::HalManifest> ListCommand::getDeviceManifest() const { in getDeviceManifest()
177 std::shared_ptr<const vintf::CompatibilityMatrix> ListCommand::getDeviceMatrix() const { in getDeviceMatrix()
181 std::shared_ptr<const vintf::HalManifest> ListCommand::getFrameworkManifest() const { in getFrameworkManifest()
185 std::shared_ptr<const vintf::CompatibilityMatrix> ListCommand::getFrameworkMatrix() const { in getFrameworkMatrix()
189 VintfInfo ListCommand::getVintfInfo(const std::string& fqInstanceName, in getVintfInfo()
205 bool ListCommand::getPidInfo( in getPidInfo()
211 const BinderPidInfo* ListCommand::getPidInfoCached(pid_t serverPid) { in getPidInfoCached()
221 bool ListCommand::shouldFetchHalType(const HalType &type) const { in shouldFetchHalType()
225 Table* ListCommand::tableForType(HalType type) { in tableForType()
242 const Table* ListCommand::tableForType(HalType type) const { in tableForType()
243 return const_cast<ListCommand*>(this)->tableForType(type); in tableForType()
246 void ListCommand::forEachTable(const std::function<void(Table &)> &f) { in forEachTable()
251 void ListCommand::forEachTable(const std::function<void(const Table &)> &f) const { in forEachTable()
257 void ListCommand::postprocess() { in postprocess()
317 bool ListCommand::addEntryWithInstance(const TableEntry& entry, in addEntryWithInstance()
363 bool ListCommand::addEntryWithoutInstance(const TableEntry& entry, in addEntryWithoutInstance()
382 void ListCommand::dumpVintf(const NullableOStream<std::ostream>& out) const { in dumpVintf()
423 std::string ListCommand::INIT_VINTF_NOTES{
452 void ListCommand::dumpTable(const NullableOStream<std::ostream>& out) const { in dumpTable()
484 Status ListCommand::dump() { in dump()
485 auto dump = mVintf ? &ListCommand::dumpVintf : &ListCommand::dumpTable; in dump()
506 void ListCommand::putEntry(HalType type, TableEntry &&entry) { in putEntry()
510 Status ListCommand::fetchAllLibraries(const sp<IServiceManager> &manager) { in fetchAllLibraries()
540 Status ListCommand::fetchPassthrough(const sp<IServiceManager> &manager) { in fetchPassthrough()
571 Status ListCommand::fetchBinderized(const sp<IServiceManager> &manager) { in fetchBinderized()
606 Status ListCommand::fetchBinderizedEntry(const sp<IServiceManager> &manager, in fetchBinderizedEntry()
707 Status ListCommand::fetchManifestHals() { in fetchManifestHals()
738 Status ListCommand::fetchLazyHals() { in fetchLazyHals()
764 bool ListCommand::hasHwbinderEntry(const TableEntry& entry) const { in hasHwbinderEntry()
773 bool ListCommand::hasPassthroughEntry(const TableEntry& entry) const { in hasPassthroughEntry()
795 Status ListCommand::fetch() { in fetch()
819 void ListCommand::initFetchTypes() { in initFetchTypes()
847 void ListCommand::registerAllOptions() { in registerAllOptions()
852 mOptions.push_back({'h', "help", no_argument, v++, [](ListCommand*, const char*) { in registerAllOptions() argument
855 mOptions.push_back({'i', "interface", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
859 mOptions.push_back({'l', "released", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
863 mOptions.push_back({'t', "transport", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
867 mOptions.push_back({'r', "arch", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
871 mOptions.push_back({'s', "hash", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
875 mOptions.push_back({'p', "pid", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
879 mOptions.push_back({'a', "address", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
883 mOptions.push_back({'c', "clients", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
887 mOptions.push_back({'e', "threads", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
891 mOptions.push_back({'m', "cmdline", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
895 … mOptions.push_back({'d', "debug", optional_argument, v++, [](ListCommand* thiz, const char* arg) { in registerAllOptions()
902 mOptions.push_back({'V', "vintf", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
911 … mOptions.push_back({'S', "service-status", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
921 [](ListCommand* thiz, const char*) { in registerAllOptions()
930 … mOptions.push_back({'\0', "init-vintf", no_argument, v++, [](ListCommand* thiz, const char* arg) { in registerAllOptions()
937 …mOptions.push_back({'\0', "init-vintf-partition", required_argument, v++, [](ListCommand* thiz, co… in registerAllOptions()
944 … mOptions.push_back({'\0', "sort", required_argument, v++, [](ListCommand* thiz, const char* arg) { in registerAllOptions()
955 mOptions.push_back({'\0', "neat", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
961 [](ListCommand* thiz, const char* arg) { in registerAllOptions()
1013 const ListCommand::RegisteredOptions& options, in getLongOptions()
1035 static std::string getShortOptions(const ListCommand::RegisteredOptions& options) {
1045 Status ListCommand::parseArgs(const Arg &arg) {
1133 Status ListCommand::main(const Arg &arg) {
1144 const std::string& ListCommand::RegisteredOption::getHelpMessageForArgument() const {
1158 void ListCommand::usage() const {