Searched full:content (Results 1 – 25 of 563) sorted by relevance
12345678910>>...23
/Zephyr-latest/samples/subsys/zbus/dyn_channel/ |
D | sample.yaml | 11 - "W: Content" 14 - "W: Content" 17 - "W: Content" 20 - "W: Content" 23 - "W: Content" 26 - "W: Content" 29 - "W: Content" 32 - "W: Content" 35 - "W: Content" 39 - "W: Content" [all …]
|
D | README.rst | 29 W: Content 32 W: Content 35 W: Content 38 W: Content 41 W: Content 44 W: Content 47 W: Content 50 W: Content 53 W: Content 57 W: Content [all …]
|
/Zephyr-latest/doc/_extensions/zephyr/ |
D | application.py | 124 # Build the command content as a list, then convert to string. 125 content = [] 156 content.append(paragraph) 157 content.append(self._lit_block(w)) 159 content.extend(w) 167 content.append(paragraph) 168 content.append(self._lit_block(c)) 170 content.extend(c) 173 content = [self._lit_block(content)] 175 return content [all …]
|
D | external_content.py | 2 External content 17 Paths for external content included via e.g. figure, literalinclude, etc. 47 """Default directives for included content.""" 57 """Adjust included content paths. 61 basepath: Base path to be used to resolve content location. 84 content = f.read() 86 r"\.\. (" + "|".join(directives) + r")::\s*([^`\n]+)", _adjust, content 111 for content in app.config.external_content_contents: 112 prefix_src, glob = content
|
D | doxyrunner.py | 83 doxyfile: Content of the Doxyfile. 110 raise ValueError(f"Unexpected line content: {line}") 155 Processed Doxyfile content. 159 content = f.read() 161 content = re.sub( 164 content, 168 content = re.sub( 171 content, 175 content = re.sub( 178 content, [all …]
|
/Zephyr-latest/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-latest/doc/_static/css/ |
D | custom.css | 30 .rst-content .toctree-wrapper p.caption, 42 .rst-content .toctree-wrapper p.caption { 48 .rst-content div.figure p.caption { 55 .rst-content div.figure.figure-w480 { 64 .rst-content ol.arabic, 65 .rst-content .section ul, 66 .rst-content .toctree-wrapper ul, 67 .rst-content .section ol { 73 .rst-content table.docutils thead { 104 .rst-content .toc-backref { [all …]
|
/Zephyr-latest/tests/net/lib/lwm2m/interop/pytest/ |
D | leshan.py | 74 …{self.timeout}&format={self.format}' + uri_options, data=data, headers={'content-type': 'applicati… 81 headers={'content-type': 'application/json'} 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} 231 raise RuntimeError(f'Unhandled type {content["kind"]}') [all …]
|
/Zephyr-latest/doc/_extensions/zephyr/doxytooltip/static/ |
D | doxytooltip.js | 23 * tooltip's content. 47 content: "Loading...", 90 let content; 94 content = target.parentElement.nextElementSibling; 97 content = parsedDoc.querySelector(`#details ~ div.textblock`); 104 content = target.closest('h2').nextElementSibling; 108 if (content) { 110 content.querySelectorAll('a').forEach((a) => { 117 // set the tooltip content 118 instance.setContent(content.cloneNode(true).innerHTML); [all …]
|
D | doxytooltip.css | 12 background-color: var(--content-wrap-background-color); 17 border-top-color: var(--content-wrap-background-color); 21 border-bottom-color: var(--content-wrap-background-color); 25 border-left-color: var(--content-wrap-background-color); 29 border-right-color: var(--content-wrap-background-color); 32 .tippy-box[data-theme~='doxytooltip'] .tippy-content {
|
/Zephyr-latest/samples/net/lwm2m_client/ |
D | overlay-lwm2m-1.1-core-interop.conf | 8 #Enable SenML JSON content format 13 #Enable SenML CBOR content format 18 #Enable legacy content formats
|
/Zephyr-latest/scripts/utils/ |
D | pinctrl_nrf_migrate.py | 171 # Content formatters and writers 188 # append content before last node closing 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: 246 content: DT file content as list of lines. 252 for line in 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 | 40 content = "" 45 content += ( 57 content += ( 67 content += line 73 f.write(content)
|
/Zephyr-latest/samples/boards/espressif/flash_encryption/src/ |
D | main.c | 39 LOG_HEXDUMP_INF(buffer, sizeof(buffer), "WRITE BUFFER CONTENT"); in main() 41 /* erase flash content */ in main() 47 /* read flash content without decrypting content */ in main() 52 /* read flash content and decrypt */ in main()
|
/Zephyr-latest/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-latest/include/zephyr/bluetooth/audio/ |
D | ccid.h | 3 * @brief Header for Bluetooth Audio Content Control Identifier. 15 * @brief Bluetooth Content Control Identifier (CCID) 16 * @defgroup bt_ccid Bluetooth Content Control Identifier 24 * The Content Control Identifier (CCID) API manages CCIDs for @ref BT_UUID_CCID characteristics.
|
/Zephyr-latest/drivers/firmware/scmi/ |
D | clk.c | 44 msg.content = &clk_id; in scmi_clock_rate_get() 48 reply.content = &reply_buffer; in scmi_clock_rate_get() 97 msg.content = cfg; in scmi_clock_config_set() 101 reply.content = &status; in scmi_clock_config_set() 134 msg.content = NULL; in scmi_clock_protocol_attributes() 138 reply.content = &reply_buffer; in scmi_clock_protocol_attributes()
|
/Zephyr-latest/modules/mbedtls/ |
D | create_psa_files.py | 77 content = file.readlines() 78 for line in content: 108 def generate_output_file(content: str, file_name: str): 110 output_file.write(content) 112 def check_file(content: str, file_name: str): 116 if file_content != content:
|
/Zephyr-latest/include/zephyr/logging/ |
D | log_multidomain_helper.h | 71 /** @brief Content of the logging message. */ 76 /** @brief Content of the domain count message. */ 81 /** @brief Content of the source count message. */ 87 /** @brief Content of the domain name message. */ 93 /** @brief Content of the source name message. */ 100 /** @brief Content of the message for getting logging levels. */ 108 /** @brief Content of the message for setting logging level. */ 115 /** @brief Content of the message for getting amount of dropped messages. */
|
/Zephyr-latest/tests/drivers/eeprom/api/ |
D | testcase.yaml | 8 # Tests overwrite EEPROM content, only run on select boards 18 # Tests overwrite EEPROM content, only run on select boards
|
/Zephyr-latest/include/zephyr/ipc/ |
D | icmsg_me.h | 55 * when calling this function. The content of this 79 * @ref icmsg_me_init and its content must be preserved 107 * @ref icmsg_me_init and its content must be preserved 120 * @ref icmsg_me_init and its content must be preserved 134 * @ref icmsg_me_init and its content must be preserved 160 * @ref icmsg_me_init and its content must be preserved 182 * @ref icmsg_me_init and its content must be preserved 204 * @ref icmsg_me_init and its content must be preserved 223 * @ref icmsg_me_init and its content must be preserved 235 * @ref icmsg_me_init and its content must be preserved
|
/Zephyr-latest/subsys/bluetooth/audio/ |
D | Kconfig.mcs | 81 Sets the size (in octets) of the buffer used for receiving the content 86 int "Total memory size to use for storing the content of objects" 90 Sets the total memory size (in octets) to use for storing the content 93 is allocated when reading object content. 218 bool "Support reading Content Control ID" 221 This option enables support for reading Content Control ID.
|
/Zephyr-latest/tests/bluetooth/host/keys/bt_keys_clear/src/ |
D | test_suite_bt_settings.c | 44 * - The key content is cleared and removed from persistent memory 64 "Key content wasn't cleared by 'bt_keys_clear()'"); in ZTEST() 82 * - The key content is cleared and removed from persistent memory 102 "Key content wasn't cleared by 'bt_keys_clear()'"); in ZTEST()
|
12345678910>>...23