Home
last modified time | relevance | path

Searched refs:lines (Results 1 – 25 of 30) sorted by relevance

12

/openthread-latest/third_party/mbedtls/repo/tests/data_files/
Dprint_c.pl24 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/
Dupdate-makefiles.py54 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/
Dgenerate_pkcs7_tests.py59 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]))
Dcheck_files.py97 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/
Dopen_thread_controller.py61 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 = []
Dharness_case.py916 lines = self._hc.tail()
917 if 'SUCCESS: The process "dumpcap.exe" with PID ' in lines:
/openthread-latest/tests/scripts/misc/
Dtest_multicast_join.py40lines = 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/
Dc_parsing_helper.py93 lines = enumerate(content.splitlines(), 1)
94 for line_number, line in lines:
101 _, more = next(lines) #pylint: disable=stop-iteration-return
Dtest_case.py35 def add_comment(self, *lines: str) -> None:
36 self.comments += lines
Dmacro_collector.py486 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.pylintrc3 min-similarity-lines=10
43 # [too-many-lines]
44 max-module-lines=2000
D.uncrustify.cfg10 # Wrap lines at 100 characters
239 # last lines are the same length
/openthread-latest/tests/scripts/thread-cert/
Dnode.py271 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/
D00README.md44 spans multiple lines.
67 lines start with 5 spaces. Lines wrap at 79 characters.
/openthread-latest/tools/harness-thci/
DOpenThread_BR.py612lines = 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/
Dcommand_handlers.py186 lines = self.wait(1)
189 for line in lines:
Dotci.py261lines = 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/
Dtls13-support.md265 - 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/
Dtest_suite_pem.data13 PEM write (exactly two lines)
16 PEM write (exactly two lines + 1)
Dtest_suite_debug.function40 /* Detect if debug messages output partial lines and mark them */
Dtest_suite_pkwrite.function89 * Git treats PEM files as text, so when on Windows, it replaces new lines
/openthread-latest/tests/toranj/
DREADME_CLI.md141 …ases, if any test fails, to help with debugging of the issue, the last 30 lines of logs of every n…
/openthread-latest/
DSTYLE_GUIDE.md41 …- 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/
DREADME.md63 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/
Dspi_interface.cpp208 req.lines = 1; in SetupGpioHandle()

12