Home
last modified time | relevance | path

Searched refs:cmd_obj (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Lib/distutils/
Ddist.py839 cmd_obj = self.command_obj.get(command)
840 if not cmd_obj and create:
846 cmd_obj = self.command_obj[command] = klass(self)
856 self._set_command_options(cmd_obj, options)
858 return cmd_obj
970 cmd_obj = self.get_command_obj(command)
971 cmd_obj.ensure_finalized()
972 cmd_obj.run()
Dcmd.py311 cmd_obj = self.distribution.get_command_obj(command, create)
312 cmd_obj.ensure_finalized()
313 return cmd_obj
/external/python/cpython3/Lib/distutils/
Ddist.py851 cmd_obj = self.command_obj.get(command)
852 if not cmd_obj and create:
858 cmd_obj = self.command_obj[command] = klass(self)
868 self._set_command_options(cmd_obj, options)
870 return cmd_obj
983 cmd_obj = self.get_command_obj(command)
984 cmd_obj.ensure_finalized()
985 cmd_obj.run()
Dcmd.py298 cmd_obj = self.distribution.get_command_obj(command, create)
299 cmd_obj.ensure_finalized()
300 return cmd_obj
/external/iproute2/devlink/
Ddevlink.c2547 static const char *cmd_obj(uint8_t cmd) in cmd_obj() function
2567 pr_out("[%s,%s] ", cmd_obj(cmd), cmd_name(cmd)); in pr_out_mon_header()
2572 const char *obj = cmd_obj(cmd); in cmd_filter_check()