Searched refs:lines (Results 1 – 25 of 26) sorted by relevance
12
/openthread-3.6.0/third_party/mbedtls/repo/tests/data_files/ |
D | print_c.pl | 36 my @lines = map {chomp; s/([\\"])/\\$1/g; "\"$_\\r\\n\""} <STDIN>; 39 foreach ("#define $pp_name", @lines[0..@lines-2]) { 42 print "$lines[@lines-1]\n"; 46 foreach (@lines) {
|
/openthread-3.6.0/script/ |
D | update-makefiles.py | 54 lines = file.readlines() 55 return lines 58 def write_txt_file(file_name, lines): argument 61 file.writelines(lines) 75 lines = read_txt_file(file_name) 79 for line in lines: 99 if new_lines != lines:
|
/openthread-3.6.0/tools/harness-automation/autothreadharness/ |
D | open_thread_controller.py | 61 self.lines = [] 156 if len(self.lines) > 1: 157 return self.lines.pop(0) 160 if len(self.lines): 161 tail = self.lines.pop() 169 self.lines += linesepx.split(tail) 170 if len(self.lines) > 1: 171 return self.lines.pop(0) 179 self.lines = []
|
D | harness_case.py | 916 lines = self._hc.tail() 917 if 'SUCCESS: The process "dumpcap.exe" with PID ' in lines:
|
/openthread-3.6.0/tests/scripts/misc/ |
D | test_multicast_join.py | 40 …lines = subprocess.run(['ot-ctl', '-I', if_name, 'ipmaddr'], stdout=subprocess.PIPE).stdout.decode… 41 return [ip_address(l) for l in lines if l.startswith('ff')]
|
/openthread-3.6.0/third_party/mbedtls/repo/scripts/ |
D | rename.pl | 97 my @lines = <$rfh>; 101 for my $line (@lines) {
|
/openthread-3.6.0/third_party/mbedtls/repo/scripts/mbedtls_dev/ |
D | test_case.py | 46 def add_comment(self, *lines: str) -> None: 47 self.comments += lines
|
D | macro_collector.py | 475 with read_file_lines(filename, binary=True) as lines: 476 for line in lines: 524 with read_file_lines(filename) as lines: 525 for line in lines:
|
/openthread-3.6.0/tests/scripts/thread-cert/ |
D | node.py | 262 lines = [] 270 lines.append(line) 276 raise subprocess.CalledProcessError(proc.returncode, cmd, ''.join(lines)) 278 return lines 821 lines = [] 831 lines.append(line) 834 return lines 1122 lines = self._expect_command_output() 1124 while lines: 1127 host['fullname'] = lines.pop(0).strip() [all …]
|
/openthread-3.6.0/third_party/mbedtls/repo/tests/suites/ |
D | test_suite_pem.data | 13 PEM write (exactly two lines) 16 PEM write (exactly two lines + 1)
|
D | test_suite_debug.function | 37 /* Detect if debug messages output partial lines and mark them */
|
/openthread-3.6.0/third_party/mbedtls/repo/tests/scripts/ |
D | check_files.py | 105 for filename, lines in sorted(self.files_with_issues.items()): 106 if lines: 108 filename, ", ".join(str(x) for x in lines)
|
/openthread-3.6.0/third_party/mbedtls/repo/ |
D | .pylintrc | 42 # [too-many-lines] 43 max-module-lines=2000
|
D | ChangeLog | 704 eliminates the need for the lines declaring the files to be part of 2753 * The PEM parser now accepts a trailing space at end of lines (#226). 3036 * Change #include lines in test files to use double quotes instead of angle 3243 * Debug module only outputs full lines instead of parts 3388 * ssl_mail_client now terminates lines with CRLF, instead of LF 3671 * ssl_mail_client now terminates lines with CRLF, instead of LF
|
/openthread-3.6.0/third_party/mbedtls/repo/ChangeLog.d/ |
D | 00README.md | 41 spans multiple lines. 64 lines start with 5 spaces. Lines wrap at 79 characters.
|
/openthread-3.6.0/tools/harness-thci/ |
D | OpenThread_BR.py | 612 … lines = self.bash_unwatched('tail +%d /var/log/syslog' % self.__syslog_skip_lines, sudo=False) 613 for line in lines: 620 self.__syslog_skip_lines += len(lines) 621 return len(lines)
|
D | OpenThread.py | 1703 lines = self.__executeCommand('netdata show') 1707 for line in lines:
|
/openthread-3.6.0/tools/otci/otci/ |
D | command_handlers.py | 176 lines = self.wait(1) 179 for line in lines:
|
D | otci.py | 242 … lines = self.execute_command(cmd, timeout=(count - 1) * interval + timeout + timeout_allowance) 245 for line in lines: 1016 lines = self.execute_command(f'srp server lease') 1017 return tuple([int(line.split(':')[1].strip()) for line in lines])
|
/openthread-3.6.0/tests/toranj/ |
D | README_CLI.md | 141 …ases, if any test fails, to help with debugging of the issue, the last 30 lines of logs of every n…
|
D | README_NCP.md | 307 …ases, if any test fails, to help with debugging of the issue, the last 30 lines of `wpantund` logs…
|
/openthread-3.6.0/ |
D | STYLE_GUIDE.md | 41 …- All `#endif` directives equal to or greater than 20 lines away from the `#if` or `#ifdef` direct… 159 - Braces should go on their own lines.
|
/openthread-3.6.0/src/posix/platform/ |
D | spi_interface.cpp | 204 req.lines = 1; in SetupGpioHandle()
|
/openthread-3.6.0/third_party/mbedtls/repo/doxygen/ |
D | mbedtls.doxyfile | 548 # The MAX_INITIALIZER_LINES tag determines the maximum number of lines 550 # the documentation. If the initializer consists of more lines than specified 756 # Note that the filter must not add or remove lines; it is applied before the 757 # code is scanned, but not when the output code is generated. If lines are added
|
/openthread-3.6.0/doc/ |
D | Doxyfile.in | 657 # The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the 659 # documentation. If the initializer consists of more lines than specified here 928 # Note that the filter must not add or remove lines; it is applied before the 929 # code is scanned, but not when the output code is generated. If lines are added
|
12