/Zephyr-Core-3.6.0/doc/_extensions/zephyr/ |
D | gh_utils.py | 44 from typing import Final, Optional, Tuple 167 def git_info_filter(app: Sphinx, pagename) -> Optional[Tuple[str, str]]: 168 """Return a tuple with the date and SHA1 of the last commit made to a page. 175 Optional[Tuple[str, str]] -- Tuple with the date and SHA1 of the last commit made to the
|
D | domain.py | 49 from typing import Any, Dict, Iterator, List, Tuple 279 def get_object_synopses(self) -> Iterator[Tuple[Tuple[str, str], str]]:
|
D | external_content.py | 24 a tuple with two fields: the external base directory and a file glob pattern.
|
/Zephyr-Core-3.6.0/scripts/ci/ |
D | pylintrc | 182 trailing-comma-tuple, 205 assert-on-tuple, 221 unbalanced-tuple-unpacking, 228 raising-format-tuple,
|
/Zephyr-Core-3.6.0/scripts/west_commands/zspdx/ |
D | util.py | 15 Returns: tuple of (SHA1, SHA256, MD5) hashes for filePath, or
|
/Zephyr-Core-3.6.0/scripts/ |
D | set_assignees.py | 252 labels = tuple(sorted(labels)) 261 if tuple([area]) not in label_to_maintainer: 262 label_to_maintainer[tuple([area])] = maintainers 267 if tuple([label_name]) not in label_to_maintainer: 271 issue_labels = tuple(sorted(issue_labels))
|
D | get_maintainer.py | 525 # e.g. to only check non-globbing filenames. The tuple() is 527 paths = tuple(root.glob(glob_pattern))
|
/Zephyr-Core-3.6.0/subsys/net/lib/zperf/ |
D | zperf_session.h | 36 /* Tuple for UDP */
|
/Zephyr-Core-3.6.0/include/zephyr/sd/ |
D | sd_spec.h | 874 #define SDIO_TPL_CODE_NULL 0x00 /*!< NULL CIS tuple code */ 875 #define SDIO_TPL_CODE_MANIFID 0x20 /*!< manufacturer ID CIS tuple code */ 876 #define SDIO_TPL_CODE_FUNCID 0x21 /*!< function ID CIS tuple code */ 877 #define SDIO_TPL_CODE_FUNCE 0x22 /*!< function extension CIS tuple code */ 878 #define SDIO_TPL_CODE_END 0xFF /*!< End CIS tuple code */ 896 * @brief SDIO common CIS tuple properties 898 * CIS tuple properties. Note that additional properties exist for 902 /* Manufacturer ID string tuple */ 905 /* Function identification tuple */
|
D | sd.h | 51 struct sdio_cis cis; /*!< CIS tuple data for this function */
|
/Zephyr-Core-3.6.0/dts/bindings/spi/ |
D | nxp,imx-flexspi.yaml | 70 The tuple fields correspond to the following register bitfields:
|
/Zephyr-Core-3.6.0/dts/bindings/gpio/ |
D | nxp,s32-gpio.yaml | 64 as in a tuple `<gpio-pin wkpu-interrupt-source>`.
|
/Zephyr-Core-3.6.0/subsys/sd/ |
D | sdio.c | 325 LOG_WRN("Unknown CIS tuple %d", tpl_code); in sdio_decode_cis() 354 /* Read CIS tuples until we have read all requested CIS tuple codes */ in sdio_read_cis() 356 /* Read tuple code */ in sdio_read_cis() 363 /* End of tuple chain */ in sdio_read_cis() 367 /* Skip NULL tuple */ in sdio_read_cis() 370 /* Read tuple link */ in sdio_read_cis() 377 /* End of tuple chain */ in sdio_read_cis() 380 /* Check to see if read tuple matches any we should look for */ in sdio_read_cis() 388 /* tuple chains may be maximum of 255 bytes long */ in sdio_read_cis()
|
/Zephyr-Core-3.6.0/doc/_extensions/zephyr/kconfig/ |
D | __init__.py | 37 from typing import Any, Dict, Iterable, List, Optional, Tuple 67 def kconfig_load(app: Sphinx) -> Tuple[kconfiglib.Kconfig, Dict[str, str]]: 188 def get_objects(self) -> Iterable[Tuple[str, str, str, str, str, int]]:
|
/Zephyr-Core-3.6.0/scripts/dts/python-devicetree/src/devicetree/ |
D | dtlib.py | 24 NamedTuple, NoReturn, Optional, Set, Tuple, TYPE_CHECKING, Union 311 self._label_offset_lst: List[Tuple[str, int]] = [] 630 # while the value is built. We use a list instead of a tuple to be able 711 (e.g., 'x = label_1: < 1 label2: 2 >;') to a (prop, offset) tuple, where 745 An iterable (e.g. list or tuple) containing paths to search for 759 self.label2prop_offset: Dict[str, Tuple[Property, int]] = {} 761 self.memreserves: List[Tuple[Set[str], int, int]] = [] 1203 # tuple. 1800 # The tuple() avoids a 'dictionary changed size during iteration' 1802 for prop in tuple(node.props.values()): [all …]
|
D | edtlib.py | 74 Optional, Set, TYPE_CHECKING, Tuple, Union 1588 # Number of cells for one translation 3-tuple in 'ranges' 1954 self._compat2binding: Dict[Tuple[str, Optional[str]], Binding] = {} 2715 # Gives the size of each component in a translation 3-tuple in 'ranges' 2720 # Number of cells for one translation 3-tuple in 'ranges' 2792 def _interrupts(node: dtlib_Node) -> List[Tuple[dtlib_Node, bytes]]: 2793 # Returns a list of (<controller>, <data>) tuples, with one tuple per 2802 ret: List[Tuple[dtlib_Node, bytes]] = [] 2829 ) -> Tuple[dtlib_Node, bytes]: 2832 # (<controller>, <data>) tuple with the final destination after mapping. [all …]
|
/Zephyr-Core-3.6.0/scripts/logging/dictionary/dictionary_parser/ |
D | log_parser_v1.py | 218 the binary arglist and return a tuple usable with 305 return tuple(args)
|
/Zephyr-Core-3.6.0/scripts/build/ |
D | process_gperf.py | 77 return "(char *)0x%02x%02x%02x%02x%02x%02x%02x%02x" % tuple(addr_vals)
|
D | gen_relocate_app.py | 54 from typing import Tuple 298 def section_kinds_from_memory_region(memory_region: str) -> 'Tuple[set[SectionKind], str]': 505 # Returns a 4-tuple with them: (mem_region, program_header, flags, files)
|
/Zephyr-Core-3.6.0/scripts/west_commands/runners/ |
D | jlink.py | 159 # Get the J-Link version as a (major, minor, rev) tuple of integers. 199 # Converts the numeric revision tuple to something human-readable.
|
/Zephyr-Core-3.6.0/scripts/release/ |
D | bug_bash.py | 103 top_ten.append(tuple([score, user]))
|
/Zephyr-Core-3.6.0/scripts/kconfig/ |
D | menuconfig.py | 359 # Converts an 888 RGB color to a 3-tuple (nice in that it's hashable) 371 return tuple(0 if x < 48 else int(round(max(1, (x - 55)/40))) for x in rgb) 377 return tuple(0 if x == 0 else 40*x + 55 for x in r6g6b6) 401 return 3*(10*index + 8,) # Returns a 3-tuple 502 d = dist(rgb, tuple(int(round(255*c/1000)) 552 # a (fg_color, bg_color, attributes) tuple. 633 # (<foreground color>, <background color>) tuple. 2677 if isinstance(val, tuple): 2717 if isinstance(term, tuple): 2889 # An (s, i, hscroll) tuple for the new state [all …]
|
/Zephyr-Core-3.6.0/scripts/pylib/pytest-twister-harness/src/twister_harness/device/ |
D | hardware_adapter.py | 64 def _prepare_runner_args(self) -> tuple[list[str], list[str]]:
|
/Zephyr-Core-3.6.0/include/zephyr/sys/ |
D | util_internal.h | 32 * two-argument tuple to the preprocessor only in the case where the
|
/Zephyr-Core-3.6.0/doc/connectivity/networking/ |
D | net_config_guide.rst | 79 5-tuple that is used when listening or sending network traffic. Each BSD socket in the
|