Searched refs:lines (Results 1 – 25 of 30) sorted by relevance
12
| /openthread-latest/third_party/mbedtls/repo/tests/data_files/ |
| D | print_c.pl | 24 my @lines = map {chomp; s/([\\"])/\\$1/g; "\"$_\\r\\n\""} <STDIN>; 27 foreach ("#define $pp_name", @lines[0..@lines-2]) { 30 print "$lines[@lines-1]\n"; 34 foreach (@lines) {
|
| /openthread-latest/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-latest/third_party/mbedtls/repo/tests/scripts/ |
| D | generate_pkcs7_tests.py | 59 lines = [line.strip() for line in data.split('\n') if len(line.strip()) > 1] 61 while i < len(lines): 62 if "depends" in lines[i+1]: 63 tests.append(Test(lines[i], lines[i+1], lines[i+2])) 66 tests.append(Test(lines[i], None, lines[i+1]))
|
| D | check_files.py | 97 for filename, lines in sorted(self.files_with_issues.items()): 98 if lines: 100 filename, ", ".join(str(x) for x in lines)
|
| /openthread-latest/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-latest/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-latest/third_party/mbedtls/repo/scripts/mbedtls_dev/ |
| D | c_parsing_helper.py | 93 lines = enumerate(content.splitlines(), 1) 94 for line_number, line in lines: 101 _, more = next(lines) #pylint: disable=stop-iteration-return
|
| D | test_case.py | 35 def add_comment(self, *lines: str) -> None: 36 self.comments += lines
|
| D | macro_collector.py | 486 with read_file_lines(filename, binary=True) as lines: 487 for line in lines: 535 with read_file_lines(filename) as lines: 536 for line in lines:
|
| /openthread-latest/third_party/mbedtls/repo/ |
| D | .pylintrc | 3 min-similarity-lines=10 43 # [too-many-lines] 44 max-module-lines=2000
|
| D | .uncrustify.cfg | 10 # Wrap lines at 100 characters 239 # last lines are the same length
|
| /openthread-latest/tests/scripts/thread-cert/ |
| D | node.py | 271 lines = [] 279 lines.append(line) 285 raise subprocess.CalledProcessError(proc.returncode, cmd, ''.join(lines)) 287 return lines 858 lines = [] 868 lines.append(line) 871 return lines 1159 lines = self._expect_command_output() 1161 while lines: 1164 host['fullname'] = lines.pop(0).strip() [all …]
|
| /openthread-latest/third_party/mbedtls/repo/ChangeLog.d/ |
| D | 00README.md | 44 spans multiple lines. 67 lines start with 5 spaces. Lines wrap at 79 characters.
|
| /openthread-latest/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)
|
| /openthread-latest/tools/otci/otci/ |
| D | command_handlers.py | 186 lines = self.wait(1) 189 for line in lines:
|
| D | otci.py | 261 … lines = self.execute_command(cmd, timeout=(count - 1) * interval + timeout + timeout_allowance) 264 for line in lines: 1047 lines = self.execute_command(f'srp server lease') 1048 return tuple([int(line.split(':')[1].strip()) for line in lines])
|
| /openthread-latest/third_party/mbedtls/repo/docs/architecture/ |
| D | tls13-support.md | 265 - We prefer grouping "related statement lines" by not adding blank lines 309 lines in the same commit: it makes the review harder. Make one commit with 310 the longer lines and another commit with just the rewrapping. 312 - When in successive lines, functions and macros parameters should be aligned 323 - When a function's parameters span several lines, group related parameters
|
| /openthread-latest/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 | 40 /* Detect if debug messages output partial lines and mark them */
|
| D | test_suite_pkwrite.function | 89 * Git treats PEM files as text, so when on Windows, it replaces new lines
|
| /openthread-latest/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…
|
| /openthread-latest/ |
| 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-latest/third_party/mbedtls/repo/3rdparty/p256-m/p256-m/ |
| D | README.md | 63 header file, it's less than 700 lines of code, and more lines of comments 187 to use inline assembly. Without that inline assembly (22 lines for Cortex-M0,
|
| /openthread-latest/src/posix/platform/ |
| D | spi_interface.cpp | 208 req.lines = 1; in SetupGpioHandle()
|
12