Home
last modified time | relevance | path

Searched refs:command (Results 1 – 25 of 130) sorted by relevance

123456

/openthread-latest/third_party/build_gn/toolchain/
DBUILD.gn7command = "gcc -MMD -MF $depfile {{defines}} {{include_dirs}} {{cflags}} {{cflags_c}} -c {{source}…
16command = "g++ -MMD -MF $depfile {{defines}} {{include_dirs}} {{cflags}} {{cflags_cc}} -c {{source…
25 command = "rm -f {{output}} && ar rcs {{output}} @$rspfile"
38 command = "g++ -shared {{ldflags}} -o $sofile -Wl,-soname=$soname @$rspfile"
58command = "g++ {{ldflags}} -o $outfile -Wl,--start-group @$rspfile {{solibs}} -Wl,--end-group {{li…
67 command = "touch {{output}}"
71 command = "cp -af {{source}} {{output}}"
/openthread-latest/tools/harness-automation/doc/
Dquickstart.rst32 # windows command line
43 # windows command line
56 # windows command line
67 # windows command line
78 # windows command line
/openthread-latest/tools/tcat_ble_client/cli/
Dcli.py107 command = command_parts[0]
110 if command not in self._commands.keys():
111 raise Exception('Invalid command: {}'.format(command))
113 return await self._commands[command].execute(args, self._context)
Dbase_commands.py37 from cli.command import Command, CommandResultNone, CommandResultTLV
52 for name, command in commands.items():
54 command.print_help(indent=1)
/openthread-latest/src/cli/
Dcli_joiner.cpp233 const Command *command; in Process() local
255 command = BinarySearch::Find(aArgs[0].GetCString(), kCommands); in Process()
256 VerifyOrExit(command != nullptr); in Process()
258 error = (this->*command->mHandler)(aArgs + 1); in Process()
Dcli_mac_filter.cpp463 const Command *command; in Process() local
497 command = BinarySearch::Find(aArgs[0].GetCString(), kCommands); in Process()
498 VerifyOrExit(command != nullptr); in Process()
500 error = (this->*command->mHandler)(aArgs + 1); in Process()
Dcli_bbr.cpp482 const Command *command; in Process() local
484 command = BinarySearch::Find(aArgs[0].GetCString(), kCommands); in Process()
485 VerifyOrExit(command != nullptr); in Process()
487 error = (this->*command->mHandler)(aArgs + 1); in Process()
Dcli_tcat.cpp305 const Command *command; in Process() local
313 command = BinarySearch::Find(aArgs[0].GetCString(), kCommands); in Process()
314 VerifyOrExit(command != nullptr); in Process()
316 error = (this->*command->mHandler)(aArgs + 1); in Process()
Dcli_udp.cpp439 const Command *command; in Process() local
447 command = BinarySearch::Find(aArgs[0].GetCString(), kCommands); in Process()
448 VerifyOrExit(command != nullptr); in Process()
450 error = (this->*command->mHandler)(aArgs + 1); in Process()
Dcli_srp_server.cpp558 const Command *command; in Process() local
566 command = BinarySearch::Find(aArgs[0].GetCString(), kCommands); in Process()
567 VerifyOrExit(command != nullptr); in Process()
569 error = (this->*command->mHandler)(aArgs + 1); in Process()
Dcli_link_metrics.cpp392 const Command *command; in Process() local
400 command = BinarySearch::Find(aArgs[0].GetCString(), kCommands); in Process()
401 VerifyOrExit(command != nullptr); in Process()
403 error = (this->*command->mHandler)(aArgs + 1); in Process()
DREADME_TCP.md34 After running the `tcp connect` command on node 2, you should see a printout on node 2 similar to b…
47 After running the `tcp send` command on node 2, you should see a printout on node 1 similar to belo…
83 … with the example TCP endpoint (this TCP connection must be established before using this command).
96 …f the benchmark is ongoing, it will show that benchmark is ongoing. This command is used for test …
139 > Note: The command will return `InvalidState` when the preferred NAT64 prefix is unavailable.
Dcli_commissioner.cpp687 const Command *command; in Process() local
695 command = BinarySearch::Find(aArgs[0].GetCString(), kCommands); in Process()
696 VerifyOrExit(command != nullptr); in Process()
698 error = (this->*command->mHandler)(aArgs + 1); in Process()
/openthread-latest/third_party/mbedtls/repo/tests/scripts/
Drun-test-suites.pl87 my $command = "$prefix$suite";
89 $command .= ' -v';
91 my $result = `$command`;
Ddepends.py200 for command in self.commands:
201 log_command(command)
205 ret = subprocess.call(command, env=env)
207 if command[0] not in ['make', options.make_command]:
208 log_line('*** [{}] Error {}'.format(' '.join(command), ret))
/openthread-latest/tests/scripts/thread-cert/
DTest_Cli.py45 for command in commands:
46 self.nodes[LEADER].send_command(command + ' -h')
DCert_8_1_06_Commissioning.py32 import command
100 command.check_joiner_commissioning_messages(joiner_messages.commissioning_messages, URL_2)
102command.check_commissioner_commissioning_messages(commissioner_messages.commissioning_messages,
105command.check_joiner_router_commissioning_messages(commissioner_messages.commissioning_messages)
DCert_8_1_01_Commissioning.py32 import command
100 command.check_joiner_commissioning_messages(joiner_messages.commissioning_messages)
102command.check_commissioner_commissioning_messages(commissioner_messages.commissioning_messages)
104command.check_joiner_router_commissioning_messages(commissioner_messages.commissioning_messages)
Dmessage.py189 for tlv in self.mle.command.tlvs:
197 assert self.mle.command.type == command_type
212 for tlv in self.mle.command.tlvs:
240 for tlv in self.mle.command.tlvs:
252 for tlv in self.mle.command.tlvs:
428 if m.mle.command.type == command_type:
460 if m.mle.command.type == command_type:
534 if m.mle.command.type == command_type:
563 for tlv in message.mle.command.tlvs:
Dmle.py1251 def __init__(self, command): argument
1252 self._command = command
1255 def command(self): member in MleMessage
1259 return "MleMessage(command={})".format(self.command)
1264 def __init__(self, aux_sec_hdr, command, mic): argument
1265 super(MleMessageSecured, self).__init__(command)
1278 … "MleMessageSecured(aux_sec_hdr={}, command={}, mic=\"{}\")".format(self.aux_sec_hdr, self.command,
1299 command = self._mle_command_factory.parse(io.BytesIO(dec_data), message_info)
1301 return MleMessageSecured(aux_sec_hdr, command, mic)
1304 command = self._mle_command_factory.parse(data, message_info)
[all …]
Dtest_mle.py1734 self.assertEqual(11, actual_mle_message.command.type)
1737 actual_mle_message.command.tlvs[0])
1739 self.assertEqual(mle.LinkLayerFrameCounter(0), actual_mle_message.command.tlvs[1])
1741 self.assertEqual(mle.MleFrameCounter(1), actual_mle_message.command.tlvs[2])
1744 actual_mle_message.command.tlvs[3])
1746 self.assertEqual(mle.Timeout(240), actual_mle_message.command.tlvs[4])
1748 self.assertEqual(mle.Version(2), actual_mle_message.command.tlvs[5])
1753 ]), actual_mle_message.command.tlvs[6])
1755 self.assertEqual(mle.TlvRequest(tlvs=[10, 12, 9]), actual_mle_message.command.tlvs[7])
1784 self.assertEqual(8, actual_mle_message.command.type)
[all …]
/openthread-latest/third_party/mbedtls/repo/scripts/
Dconfig.py572 if args.command is None:
575 elif args.command == 'get':
581 elif args.command == 'set':
588 elif args.command == 'set-all':
590 elif args.command == 'unset':
592 elif args.command == 'unset-all':
/openthread-latest/third_party/mbedtls/repo/programs/test/
Dmetatest.c444 const char *command = argv[1]; in main() local
445 while (*command == '-') { in main()
446 ++command; in main()
482 argv0, command); in main()
/openthread-latest/tests/scripts/expect/
D_common.exp38 proc wait_for {command success {failure {[\r\n]FAILURE_NOT_EXPECTED[\r\n]}}} {
41 if {$command != ""} {
42 send "$command\n"
/openthread-latest/tools/cp-caps/
Drcp_caps_test.py386 for command in commands:
387 ret = self.__dut.is_command_supported(command)
388 self.__output_format_bool(command, ret)
509 for command in commands:
510 if self.__dut.is_command_supported(command) is False:
517 for command in commands:
518 self.__output_format_bool(command, support)

123456