/Zephyr-Core-3.7.0/doc/_extensions/zephyr/ |
D | application.py | 208 content = [] 239 content.append(paragraph) 240 content.append(self._lit_block(w)) 242 content.extend(w) 250 content.append(paragraph) 251 content.append(self._lit_block(c)) 253 content.extend(c) 256 content = [self._lit_block(content)] 258 return content 260 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.7.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.7.0/tests/net/lib/lwm2m/interop/pytest/ |
D | leshan.py | 220 def _decode_resource(cls, content: dict): 224 if content['kind'] == 'singleResource' or content['kind'] == 'resourceInstance': 225 return {content['id']: cls._decode_value(content['type'], content['value'])} 226 elif content['kind'] == 'multiResource': 228 for riid, value in content['values'].items(): 229 values.update({int(riid): cls._decode_value(content['type'], value)}) 230 return {content['id']: values} 234 def _decode_obj_inst(cls, content): argument 239 for resource in content['resources']: 241 return {content['id']: resources} [all …]
|
/Zephyr-Core-3.7.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.7.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.7.0/modules/mbedtls/ |
D | create_psa_files.py | 63 content = file.readlines() 64 for line in content: 92 def generate_output_file(content: str, file_name: str): 94 output_file.write(content) 96 def check_file(content: str, file_name: str): 100 if file_content != content:
|
/Zephyr-Core-3.7.0/subsys/bindesc/ |
D | gen_bindesc_build_time_h.cmake | 37 file(READ ${IN_FILE} content) 38 string(CONFIGURE "${content}" content) 39 file(WRITE ${OUT_FILE} "${content}")
|
/Zephyr-Core-3.7.0/scripts/pylib/twister/twisterlib/ |
D | testinstance.py | 282 content = "" 300 content = "\n".join(new_config_list) 304 content = content + "\nCONFIG_COVERAGE=y" 305 content = content + "\nCONFIG_COVERAGE_DUMP=y" 309 content = content + "\nCONFIG_ASAN=y" 313 content = content + "\nCONFIG_UBSAN=y" 315 if content: 319 f.write(content) 321 return content
|
/Zephyr-Core-3.7.0/samples/net/sockets/dumb_http_server/src/ |
D | socket_dumb_http.c | 35 static const char content[] = { variable 132 data = content; in main() 133 len = sizeof(content); in main()
|
/Zephyr-Core-3.7.0/subsys/bluetooth/audio/ |
D | mpl.c | 304 struct net_buf_simple *content; member 313 .content = NET_BUF_SIMPLE(CONFIG_BT_MPL_MAX_OBJ_SIZE) 325 net_buf_simple_reset(obj.content); in setup_icon_object() 332 net_buf_simple_add_u8(obj.content, k); in setup_icon_object() 335 return obj.content->len; in setup_icon_object() 343 net_buf_simple_reset(obj.content); in setup_segments_object() 356 if (tot_size + seg_size > obj.content->size) { in setup_segments_object() 360 net_buf_simple_add_u8(obj.content, seg->name_len); in setup_segments_object() 361 net_buf_simple_add_mem(obj.content, seg->name, in setup_segments_object() 363 net_buf_simple_add_le32(obj.content, seg->pos); in setup_segments_object() [all …]
|
/Zephyr-Core-3.7.0/doc/kernel/services/other/ |
D | version.rst | 12 :content-only:
|
/Zephyr-Core-3.7.0/scripts/west_commands/fetchers/ |
D | http.py | 20 open(path, "wb").write(resp.content)
|
/Zephyr-Core-3.7.0/ |
D | .yamllint | 9 min-spaces-from-content: 1
|
/Zephyr-Core-3.7.0/boards/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.7.0/tests/drivers/interrupt_controller/multi_level_backend/ |
D | Kconfig | 16 bool "Enable to dump the content of intc table"
|
/Zephyr-Core-3.7.0/doc/connectivity/networking/api/ |
D | http_server.rst | 25 instance provide resource content, or process request payload). 29 * Static resources - content defined compile-time, cannot be modified at runtime 32 * Dynamic resources - content provided at runtime by respective application 154 Static resource content is defined build-time and is immutable. The following 177 The resource content and content encoding is application specific. For the above 193 Static filesystem resource content is defined build-time and is immutable. The following 211 content-encoding to the HTTP header. 213 The content type is evaluated based on the file extension. The server supports 214 .html, .js, .css, .jpg, .png and .svg. More content types can be provided with the 216 content type text/html.
|
/Zephyr-Core-3.7.0/scripts/net/ |
D | enumerate_http_status.py | 33 tree = html.fromstring(page.content)
|
/Zephyr-Core-3.7.0/doc/hardware/peripherals/ |
D | video.rst | 30 particular requirement on the content. The requirement for the content is
|
/Zephyr-Core-3.7.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()
|