Home
last modified time | relevance | path

Searched refs:command_name (Results 1 – 25 of 43) sorted by relevance

12

/external/python/absl-py/absl/tests/
Dcommand_name_test.py24 from absl import command_name
71 command_name.set_kernel_process_name(new_name)
79 with mock.patch.object(command_name, 'open', mock_open, create=True):
81 command_name.set_kernel_process_name(new_name)
90 with mock.patch.object(command_name, 'open', mock_open, create=True):
95 command_name.set_kernel_process_name(new_name)
103 command_name.make_process_name_useful()
/external/angle/src/libANGLE/renderer/gl/
Dgenerate_gl_dispatch_table.py302 command_name = command.attrib['name']
303 safe_append(api_feature_info, command_name, (api, name, number))
313 command_name = command.attrib['name']
316 if '_KHR_' in extension_name and not command_name.endswith('KHR'):
317 safe_append(gl_extension_commands, command_name, extension_name)
318 safe_append(gles2_extension_commands, command_name, extension_name)
320 safe_append(both_extension_commands, command_name, extension_name)
322 safe_append(gl_extension_commands, command_name, extension_name)
324 safe_append(gles2_extension_commands, command_name, extension_name)
466 command_name = proto.find('name').text
[all …]
/external/crosvm/argh_helpers/src/
Dlib.rs49 fn from_args(command_name: &[&str], args: &[&str]) in flatten_subcommand()
52 let subcommand_name = if let Some(subcommand_name) = command_name.last() { in flatten_subcommand()
64 return <#variant_ty as argh::FromArgs>::from_args(command_name, args) in flatten_subcommand()
72 …fn redact_arg_values(command_name: &[&str], args: &[&str]) -> std::result::Result<Vec<String>, arg… in flatten_subcommand()
73 let subcommand_name = if let Some(subcommand_name) = command_name.last() { in flatten_subcommand()
86 command_name, in flatten_subcommand()
/external/autotest/server/hosts/
Drpc_server_tracker.py41 def _setup_port(self, port, command_name, remote_pid=None): argument
82 self._rpc_proxy_map[port] = (command_name, tunnel_proc, remote_pid)
86 def _setup_rpc(self, port, command_name, remote_pid=None): argument
98 port, command_name, remote_pid=remote_pid)
111 def xmlrpc_connect(self, command, port, command_name=None, argument
173 rpc_url = self._setup_rpc(port, command_name, remote_pid=remote_pid)
175 server_desc = "<%s '%s:%s'>" % (command_name or 'XMLRPC',
/external/python/absl-py/absl/
DBUILD11 ":command_name",
18 name = "command_name",
19 srcs = ["command_name.py"],
70 ":command_name",
Dapp.py36 from absl import command_name
366 command_name.make_process_name_useful()
/external/autotest/utils/frozen_chromite/cli/
Dcommand.py90 def CommandDecorator(command_name): argument
103 _commands[command_name] = original_class
104 original_class.command_name = command_name
/external/python/cpython2/Lib/distutils/
Ddist.py869 command_name = command_obj.get_command_name()
871 option_dict = self.get_option_dict(command_name)
874 self.announce(" setting options for '%s' command:" % command_name)
899 % (source, command_name, option))
924 command_name = command
925 command = self.get_command_obj(command_name)
927 command_name = command.get_command_name()
933 self.have_run[command_name] = 0
/external/python/cpython3/Lib/distutils/
Ddist.py881 command_name = command_obj.get_command_name()
883 option_dict = self.get_option_dict(command_name)
886 self.announce(" setting options for '%s' command:" % command_name)
912 % (source, command_name, option))
937 command_name = command
938 command = self.get_command_obj(command_name)
940 command_name = command.get_command_name()
946 self.have_run[command_name] = 0
/external/python/setuptools/setuptools/_distutils/
Ddist.py882 command_name = command_obj.get_command_name()
884 option_dict = self.get_option_dict(command_name)
887 self.announce(" setting options for '%s' command:" % command_name)
913 % (source, command_name, option))
938 command_name = command
939 command = self.get_command_obj(command_name)
941 command_name = command.get_command_name()
947 self.have_run[command_name] = 0
/external/rust/crates/argh_derive/src/
Dlib.rs977 command_name, args) { in impl_from_args_enum()
985 command_name, args) { in impl_from_args_enum()
1001 fn from_args(command_name: &[&str], args: &[&str]) in impl_from_args_enum()
1004 let subcommand_name = if let Some(subcommand_name) = command_name.last() { in impl_from_args_enum()
1013 <#variant_ty as argh::FromArgs>::from_args(command_name, args)? in impl_from_args_enum()
1023 …fn redact_arg_values(command_name: &[&str], args: &[&str]) -> std::result::Result<Vec<String>, arg… in impl_from_args_enum()
1024 let subcommand_name = if let Some(subcommand_name) = command_name.last() { in impl_from_args_enum()
1032 … return <#variant_ty as argh::FromArgs>::redact_arg_values(command_name, args); in impl_from_args_enum()
/external/angle/scripts/
Dgenerate_entry_points.py2834 def is_get_pointer_command(command_name): argument
2835 return command_name.endswith('Pointerv') and command_name.startswith('glGet')
2842 def format_replay_params(api, command_name, param_text_list, packed_enums, resource_id_types): argument
2853 if command_name == 'glCreateShaderProgramvEXT' and i == 2:
2856 cmd_no_suffix = strip_suffix(api, command_name)
2876 for command_name, cmd_param_texts in sorted(command_to_param_types_mapping.items()):
2877 entry_point_name = strip_api_prefix(command_name)
2882 params=format_replay_params(api, command_name, cmd_param_texts, gl_packed_enums,
2884 call=command_name,
2903 command_name = command_node.find('proto').find('name').text
[all …]
/external/python/parse_type/bin/
Dtoxcmd.py179 command_name = getattr(func, "name", command_name0)
180 commands.append(Command(command_name, func))
/external/grpc-grpc/src/ruby/spec/
Dspec_helper.rb28 SimpleCov.command_name ENV['COVERAGE_NAME']
/external/rust/crates/argh/src/
Dlib.rs448 fn from_args(command_name: &[&str], args: &[&str]) -> Result<Self, EarlyExit>; in from_args()
624 command_name: &[&str], in try_redact_arg_values()
635 fn try_from_args(command_name: &[&str], args: &[&str]) -> Option<Result<Self, EarlyExit>>; in try_from_args()
/external/autotest/server/cros/network/
Dapmanager_service_provider.py27 command_name=constants.APMANAGER_XMLRPC_SERVER_CLEANUP_PATTERN,
Dwifi_client.py75 command_name = constants.SHILL_XMLRPC_SERVER_CLEANUP_PATTERN
82 command_name=command_name,
/external/rust/crates/argh/tests/
Dlib.rs149 command_name: &[&str], in dynamic_subcommand_example()
152 let command_name = match command_name.last() { in dynamic_subcommand_example() localVariable
156 let description = Self::commands().iter().find(|x| x.name == command_name)?.description; in dynamic_subcommand_example()
1085 command_name: &[&str], in try_from_args()
1088 if command_name.last() != Some(&"plugin") { in try_from_args()
/external/autotest/server/cros/
Dinteractive_client.py34 command_name=
Ddark_resume_utils.py128 command_name=
/external/autotest/client/cros/bluetooth/
Dhcitool.py186 def check_command_supported(self, command_name): argument
195 return command_name in supported_commands
/external/python/bumble/apps/
Dcontroller_info.py160 print(' ', HCI_Command.command_name(command))
/external/python/setuptools/setuptools/
Ddist.py783 command_name = command_obj.get_command_name()
785 option_dict = self.get_option_dict(command_name)
788 self.announce(" setting options for '%s' command:" % command_name)
812 % (source, command_name, option)
/external/autotest/server/cros/faft/
Drpc_proxy.py108 command_name=self._client_config.rpc_command_short,
/external/python/bumble/bumble/
Dhci.py561 command_code: command_name for (command_name, command_code) in globals().items()
562 if command_name.startswith('HCI_') and command_name.endswith('_COMMAND')
1436 error_namespace=HCI_Command.command_name(response.command_opcode),
1952 def command_name(op_code): member in HCI_Command
1963 super().__init__(HCI_Command.command_name(op_code))
4830 ('command_opcode', {'size': 2, 'mapper': HCI_Command.command_name}),
4898 ('command_opcode', {'size': 2, 'mapper': HCI_Command.command_name}),

12