/Zephyr-Core-3.5.0/doc/_extensions/zephyr/ |
D | application.py | 177 content = [] 205 content.append(paragraph) 206 content.append(self._lit_block(w)) 208 content.extend(w) 216 content.append(paragraph) 217 content.append(self._lit_block(c)) 219 content.extend(c) 222 content = [self._lit_block(content)] 224 return content 226 def _lit_block(self, content): argument [all …]
|
D | doxyrunner.py | 160 content = f.read() 162 content = re.sub( 165 content, 169 content = re.sub( 172 content, 176 content = re.sub( 179 content, 192 content = content.replace(fmt_pattern.format(var), value) 194 return content
|
D | html_redirects.py | 78 content = REDIRECT_TEMPLATE.replace("$NEWURL", new_url) 82 rp.write(content)
|
D | external_content.py | 85 content = f.read() 87 r"\.\. (" + "|".join(directives) + r")::\s*([^`\n]+)", _adjust, content 112 for content in app.config.external_content_contents: 113 prefix_src, glob = content
|
/Zephyr-Core-3.5.0/scripts/build/ |
D | gen_image_info.py | 29 content = [] 32 content.append(f'#ifndef {filename_we}_H') 33 content.append(f'#define {filename_we}_H') 34 content.append(f'') 35 content.append(f'#define SEGMENT_NUM {len(segments)}') 36 content.append(f'#define ADJUSTED_LMA {adjusted_lma}') 44 content.append(f'') 45 content.append(f'#define SEGMENT_LMA_ADDRESS_{idx} {hex_lma_addr}') 46 content.append(f'#define SEGMENT_VMA_ADDRESS_{idx} {hex_vma_addr}') 47 content.append(f'#define SEGMENT_SIZE_{idx} {hex_size}') [all …]
|
D | file2hex.py | 59 with io.BytesIO() as content: 62 with gzip.GzipFile(fileobj=content, mode='w', 67 content.seek(0) 68 for chunk in iter(lambda: content.read(8), b''):
|
/Zephyr-Core-3.5.0/scripts/utils/ |
D | pinctrl_nrf_migrate.py | 190 content = open(pinctrl_file).readlines() 191 for i, line in enumerate(content[::-1]): 193 last_line = len(content) - (i + 1) 202 for line in content[:last_line]: 236 for line in content[last_line:]: 242 def board_is_nrf(content: List[str]) -> bool: 252 for line in content: 277 content = "" 280 content += f"\t\tgroup{i + 1} {{\n" 290 content += ( [all …]
|
D | migrate_sys_init.py | 46 content = "" 58 content += f"{b}int {sys_init}(void){e}\n" 66 content += line 70 content += line 73 content += line 79 f.write(content)
|
D | migrate_includes.py | 41 content = "" 46 content += ( 58 content += ( 68 content += line 74 f.write(content)
|
/Zephyr-Core-3.5.0/tests/net/lib/lwm2m/interop/pytest/ |
D | leshan.py | 77 content = resp['content'] 78 if content['kind'] == 'instance': 79 return content['resources'] 80 elif content['kind'] == 'singleResource': 81 return content['value'] 82 elif content['kind'] == 'multiResource': 83 return content['values'] 99 …content = '{"servers":{"0":{"binding":"U","defaultMinPeriod":1,"lifetime":86400,"notifIfDisabled":… 100 self.post(f'/bootstrap/{endpoint}', content)
|
/Zephyr-Core-3.5.0/doc/_static/css/ |
D | custom.css | 24 .rst-content .toctree-wrapper p.caption, 37 .rst-content .toctree-wrapper p.caption { 42 .rst-content div.figure p.caption { 49 .rst-content div.figure.figure-w480 { 58 .rst-content ol.arabic, 59 .rst-content .section ul, 60 .rst-content .toctree-wrapper ul, 61 .rst-content .section ol { 67 .rst-content table.docutils thead { 98 .rst-content .toc-backref { [all …]
|
/Zephyr-Core-3.5.0/scripts/pylib/twister/twisterlib/ |
D | testinstance.py | 242 content = "" 260 content = "\n".join(new_config_list) 264 content = content + "\nCONFIG_COVERAGE=y" 265 content = content + "\nCONFIG_COVERAGE_DUMP=y" 269 content = content + "\nCONFIG_ASAN=y" 273 content = content + "\nCONFIG_UBSAN=y" 275 if content: 279 f.write(content) 281 return content
|
/Zephyr-Core-3.5.0/samples/net/sockets/dumb_http_server/src/ |
D | socket_dumb_http.c | 35 static const char content[] = { variable 116 data = content; in main() 117 len = sizeof(content); in main()
|
/Zephyr-Core-3.5.0/subsys/bluetooth/audio/ |
D | mpl.c | 282 struct net_buf_simple *content; member 291 .content = NET_BUF_SIMPLE(CONFIG_BT_MPL_MAX_OBJ_SIZE) 303 net_buf_simple_reset(obj.content); in setup_icon_object() 310 net_buf_simple_add_u8(obj.content, k); in setup_icon_object() 313 return obj.content->len; in setup_icon_object() 321 net_buf_simple_reset(obj.content); in setup_segments_object() 334 if (tot_size + seg_size > obj.content->size) { in setup_segments_object() 338 net_buf_simple_add_u8(obj.content, seg->name_len); in setup_segments_object() 339 net_buf_simple_add_mem(obj.content, seg->name, in setup_segments_object() 341 net_buf_simple_add_le32(obj.content, seg->pos); in setup_segments_object() [all …]
|
D | Kconfig.mcs | 84 Sets the size (in octets) of the buffer used for receiving the content 89 int "Total memory size to use for storing the content of objects" 93 Sets the total memory size (in octets) to use for storing the content 96 is allocated when reading object content.
|
D | Kconfig.mpl | 88 int "Total memory size to use for storing the content of objects" 92 Sets the total memory size (in octets) to use for storing the content of objects. 94 is allocated when sending object content.
|
/Zephyr-Core-3.5.0/doc/kernel/services/other/ |
D | version.rst | 12 :content-only:
|
/Zephyr-Core-3.5.0/scripts/west_commands/fetchers/ |
D | http.py | 20 open(path, "wb").write(resp.content)
|
/Zephyr-Core-3.5.0/ |
D | .yamllint | 9 min-spaces-from-content: 1
|
/Zephyr-Core-3.5.0/boards/nios2/qemu_nios2/doc/ |
D | index.rst | 121 * `Embedded Peripherals IP User Guide <https://www.altera.com/content/dam/altera-www/global/en_US/p… 122 * `MAX 10 FPGA Configuration User Guide <https://www.altera.com/content/dam/altera-www/global/en_US… 123 * `MAX 10 FPGA Development Kit User Guide <https://www.altera.com/content/dam/altera-www/global/en_… 124 * `Nios II Command-Line Tools <https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/lite… 125 * `Quartus II Scripting Reference Manual <https://www.altera.com/content/dam/altera-www/global/en_U…
|
/Zephyr-Core-3.5.0/doc/contribute/documentation/ |
D | guidelines.rst | 12 Zephyr Project content is written using the `reStructuredText`_ markup 15 view this content either in its raw form as .rst markup files, or (with 17 to generate the documentation in HTML or PDF format. The HTML content can 18 then be viewed using a web browser. This same .rst content is served by the 51 some content goes here 110 content:: 138 apply to the next non-comment element (e.g., paragraph), or to content 270 link to the "raw" content, 315 The content immediately following 404 line of the code-block body, and the body content is indented three [all …]
|
/Zephyr-Core-3.5.0/scripts/net/ |
D | enumerate_http_status.py | 33 tree = html.fromstring(page.content)
|
/Zephyr-Core-3.5.0/doc/hardware/peripherals/ |
D | video.rst | 30 particular requirement on the content. The requirement for the content is
|
/Zephyr-Core-3.5.0/samples/net/sockets/http_client/src/ |
D | main.c | 93 const char *content[] = { in payload_cb() local 101 for (i = 0; i < ARRAY_SIZE(content); i++) { in payload_cb() 104 (unsigned int)strlen(content[i]), in payload_cb() 105 content[i]); in payload_cb()
|
/Zephyr-Core-3.5.0/doc/safety/images/ |
D | zephyr-safety-process.svg | 1 …content="<mxfile scale="1" border="10"><diagram id="V9lRK6TX4MIP…
|