/Zephyr-latest/tests/drivers/can/host/pytest/ |
D | can_shell.py | 57 for line in lines: 58 m = regex_compiled.match(line) 99 for line in lines: 100 m = regex_compiled.match(line) 125 for line in lines: 126 m = regex_compiled.match(line) 175 for line in lines: 176 m = regex_compiled.match(line)
|
/Zephyr-latest/doc/_extensions/zephyr/ |
D | doxyrunner.py | 99 for line in doxyfile.splitlines(): 101 m = option_re.match(line) 108 m = multiline_re.match(line) 237 def process_doxygen_output(line: str, silent: bool) -> None: 249 m = re.match(r"(.*):(\d+): ([a-z]+): (.*)", line) 260 logger.info(line) 278 line = p.stdout.readline() # type: ignore 279 if line: 280 process_doxygen_output(line.rstrip(), silent)
|
/Zephyr-latest/tests/subsys/logging/log_frontend_stmesp_demux/src/ |
D | main.c | 38 int line) in claim_packet() argument 43 zassert_equal(exp_len, 0, "%d: Expected a packet", line); in claim_packet() 49 line, packet.log->timestamp, packet.log->timestamp, exp_ts, exp_ts); in claim_packet() 51 line, packet.log->hdr.major, exp_m_idx); in claim_packet() 52 zassert_equal(exp_len, packet.log->hdr.total_len, "%d: Unexpected len:%d (exp:%d)", line, in claim_packet() 56 "%d: Unexpected data(%d) at %d index (exp:%d)", line, in claim_packet() 67 uint32_t *exp_data, int line) in claim_trace_point() argument 73 "%d: Unexpected ts %llu/%x (exp:%llu/%x)", line, in claim_trace_point() 75 zassert_equal(exp_id, packet.trace_point->id, "%d: Unexpected id:%d (exp:%d)", line, in claim_trace_point() 78 "%d: Unexpected major:%d (exp:%d)", line, packet.trace_point->major, in claim_trace_point() [all …]
|
/Zephyr-latest/scripts/profiling/ |
D | stackcollapse.py | 46 line = prev_func 51 line += ";" + func 53 print(line, 1)
|
/Zephyr-latest/scripts/utils/ |
D | migrate_includes.py | 42 for line in lines: 43 m = re.match(r"^(.*)#include <(.*\.h)>(.*)$", line) 67 content += line
|
/Zephyr-latest/scripts/west_commands/runners/ |
D | uf2.py | 63 def split_uf2_info(line: str): 64 k, _, val = line.partition(':') 67 return {k: v for k, v in (split_uf2_info(line) for line in lines) if k and v}
|
/Zephyr-latest/include/zephyr/dt-bindings/interrupt-controller/ |
D | infineon-xmc4xxx-intc.h | 27 #define XMC4XXX_INTC_SET_LINE_MAP(port, pin, eru_src, line) \ argument 29 (eru_src) << XMC4XXX_INTC_ERU_SRC_POS | (line) << XMC4XXX_INTC_LINE_POS)
|
/Zephyr-latest/scripts/west_commands/zspdx/ |
D | cmakecache.py | 19 for line in lines: 20 sline = line.strip()
|
D | scanner.py | 41 def parseLineForExpression(line): argument 43 p = line.partition("SPDX-License-Identifier:") 69 for line in f: 73 expression = parseLineForExpression(line)
|
/Zephyr-latest/samples/boards/nxp/mimxrt1170_evk_cm7/magic_addr/pytest/ |
D | test_magic_addr.py | 23 ret = any('Magic DTCM address accessed' in line for line in lines)
|
/Zephyr-latest/lib/net_buf/ |
D | buf.c | 228 int line) in net_buf_alloc_len_debug() argument 240 NET_BUF_DBG("%s():%d: pool %p size %zu", func, line, pool, size); in net_buf_alloc_len_debug() 287 func, line, pool->name); in net_buf_alloc_len_debug() 290 func, line, pool); in net_buf_alloc_len_debug() 295 func, line, pool->name, in net_buf_alloc_len_debug() 299 func, line, pool, in net_buf_alloc_len_debug() 310 NET_BUF_ERR("%s():%d: Failed to get free buffer", func, line); in net_buf_alloc_len_debug() 325 func, line); in net_buf_alloc_len_debug() 354 int line) in net_buf_alloc_fixed_debug() argument 357 line); in net_buf_alloc_fixed_debug() [all …]
|
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/helpers/ |
D | shell.py | 44 line = self._device.readline(timeout=0.5, print_output=False) 48 if self.prompt in line: 146 for line in cmd_output: 147 if m := re_area.search(line): 150 if m := re_key.search(line):
|
/Zephyr-latest/samples/net/mdns_responder/src/ |
D | service.c | 43 uint8_t line[64]; in service() local 135 r = recv(client_fd, line, sizeof(line), 0); in service() 143 r = send(client_fd, line, len, 0); in service()
|
/Zephyr-latest/boards/native/common/extra_args/ |
D | Kconfig | 6 string "Extra command line arguments" 8 Extra command line options/arguments which will be handled like if they were passed to the
|
/Zephyr-latest/dts/riscv/sifive/ |
D | riscv64-fu540.dtsi | 38 i-cache-line-size = <0x4000>; 53 i-cache-line-size = <0x8000>; 54 d-cache-line-size = <0x8000>; 70 i-cache-line-size = <0x8000>; 71 d-cache-line-size = <0x8000>; 87 i-cache-line-size = <0x8000>; 88 d-cache-line-size = <0x8000>; 104 i-cache-line-size = <0x8000>; 105 d-cache-line-size = <0x8000>;
|
/Zephyr-latest/boards/phytec/reel_board/ |
D | reel_board.dts | 71 dummy-line = <0x1a>; 72 gate-line-width = <0x08>; 86 dummy-line = <0x1a>; 87 gate-line-width = <0x08>;
|
/Zephyr-latest/samples/modules/tflite-micro/magic_wand/train/ |
D | data_prepare_test.py | 43 for idx, line in enumerate(lines): # pylint: disable=unused-variable 44 if len(line) == 3 and line[2] == "-":
|
/Zephyr-latest/scripts/logging/dictionary/dictionary_parser/ |
D | utils.py | 19 for line in hfile.readlines(): 20 hex_str = line.strip()
|
/Zephyr-latest/samples/drivers/auxdisplay/boards/ |
D | esp_wrover_kit.overlay | 22 enable-line-rise-delay-us = <1000>; 23 enable-line-fall-delay-us = <500>;
|
/Zephyr-latest/ |
D | .ruff.toml | 6 line-length = 100 30 line-ending = "lf"
|
/Zephyr-latest/scripts/ci/ |
D | errno.py | 24 for line in f: 25 m = r.match(line)
|
/Zephyr-latest/doc/hardware/peripherals/sensor/ |
D | triggers.rst | 8 digital line signaling for easy capture by a micro controller. The events can 10 the digital line signaling to occur.
|
/Zephyr-latest/include/zephyr/dt-bindings/pinctrl/ |
D | stm32-pinctrl.h | 62 #define STM32_PINMUX(port, line, mode) \ argument 64 (((line) & STM32_LINE_MASK) << STM32_LINE_SHIFT) | \
|
D | stm32f1-pinctrl.h | 44 #define STM32F1_PINMUX(port, line, mode, remap) \ argument 46 (((line) & STM32_LINE_MASK) << STM32_LINE_SHIFT) | \
|
/Zephyr-latest/tests/subsys/logging/log_link_order/src/ |
D | main.c | 71 static void check_msg(int exp_timestamp, int line) in check_msg() argument 79 zassert_equal(msg, NULL, "%d: Unexpected msg", line); in check_msg() 83 zassert_true(msg != NULL, "%d: Unexpected msg", line); in check_msg() 85 line, (int)msg->log.hdr.timestamp, exp_timestamp); in check_msg()
|