HomeSort by relevance Sort by last modified time
    Searched refs:command_name (Results 26 - 50 of 69) sorted by null

12 3

  /external/libweave/src/
device_manager.h 65 const std::string& command_name,
83 void AddCommandHandler(const std::string& command_name,
component_manager_impl.h 99 // |command_name| is a full path of the command, including trait name and
103 const std::string& command_name,
113 // Finds a command definition, where |command_name| is in the form of
116 const std::string& command_name) const override;
119 bool GetMinimalRole(const std::string& command_name,
component_manager_impl.cc 310 const std::string& command_name,
312 // If both component_path and command_name are empty, we are adding the
314 if (!component_path.empty() || !command_name.empty()) {
315 CHECK(FindCommandDefinition(command_name)) << "Command undefined: "
316 << command_name;
318 command_queue_.AddCommandHandler(component_path, command_name, callback);
335 const std::string& command_name) const {
337 std::vector<std::string> components = Split(command_name, ".", true, false);
338 // Make sure the |command_name| came in form of trait_name.command_name
    [all...]
  /external/autotest/server/cros/faft/
rpc_proxy.py 89 command_name=self._client_config.rpc_command_short,
  /external/libweave/src/commands/
command_instance.cc 192 std::string command_name; local
193 if (!json->GetString(commands::attributes::kCommand_Name, &command_name)) {
202 "Failed to validate command '%s'", command_name.c_str());
205 instance.reset(new CommandInstance{command_name, origin, *parameters});
command_queue.h 40 const std::string& command_name,
  /system/weaved/libweaved/
service.h 66 // |command_name| is the name of the command to handle (e.g. "reboot").
71 const std::string& command_name,
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/
gen_protorpc.py 289 command_name = positional[0]
290 command = commands.get(command_name)
292 sys.stderr.write("Unknown command '%s'\n\n" % command_name)
  /external/chromium-trace/catapult/third_party/gsutil/gslib/tests/testcase/
unit_testcase.py 135 def RunCommand(self, command_name, args=None, headers=None, debug=0,
147 command_name: The name of the command being run.
166 command_line = ' '.join([command_name] + args)
187 logging.getLogger(command_name).addHandler(mock_log_handler)
192 command_name, args=args, headers=headers, debug=debug,
199 logging.getLogger(command_name).removeHandler(mock_log_handler)
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
__main__.py 345 command_name = 'version'
347 command_name = 'help'
349 command_name = args[0]
357 command_runner, command_name, args=args[1:], headers=headers,
518 def _RunNamedCommandAndHandleExceptions(command_runner, command_name, args=None,
535 return command_runner.RunNamedCommand(command_name, args, headers,
  /external/autotest/server/cros/
dark_resume_utils.py 165 command_name=
  /external/libweave/include/weave/test/
mock_device.h 56 const std::string& command_name,
  /external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
logging.py 246 state_subcommand, self.command_name, action_subcommand))
250 (action_subcommand, self.command_name))
rm.py 250 self.command_name, self.debug, self.logger, self.gsutil_api,
307 self.command_name, self.debug,
web.py 230 (action_subcommand, self.command_name))
acl.py 386 self.command_name))
472 (action_subcommand, self.command_name))
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
dist.py 180 # command_options = { command_name : { option : (source, value) } }
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
dist.py 180 # command_options = { command_name : { option : (source, value) } }
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
dist.py 180 # command_options = { command_name : { option : (source, value) } }
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
dist.py 180 # command_options = { command_name : { option : (source, value) } }
    [all...]
  /device/google/contexthub/util/nanotool/
nanotool.cpp 62 static NanotoolCommand StrToCommand(const char *command_name) {
76 if (!command_name) {
85 if (name.compare(command_name) == 0) {
  /external/autotest/server/cros/bluetooth/
bluetooth_device.py 37 command_name=
bluetooth_tester.py 41 command_name=
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/scripts/
oauth2l_test.py 36 def _GetCommandOutput(t, command_name, command_argv):
41 command = appcommands.GetCommandByName(command_name)
43 t.fail('Unknown command: %s' % command_name)
48 command.CommandRun([command_name] + command_argv)
  /external/tpm2/generator/
command_generator.py 34 #include "%(command_name)s_fp.h"
36 _COMMAND_DISPATCHER_INCLUDES = '#include "%(command_name)s_fp.h"\n'
54 return Exec_%(command_name)s(tag, &request_parameter_buffer,
121 #ifdef TPM_CC_%(command_name)s
122 case TPM_CC_%(command_name)s:
123 return "%(command_name)s";
156 } %(command_name)s_%(direction)s;
159 // Executes %(command_name)s with request handles and parameters from
161 TPM_RC TPM2_%(command_name)s(
162 %(command_name)s_In *in
    [all...]

Completed in 423 milliseconds

12 3