/Zephyr-Core-3.6.0/modules/openthread/platform/ |
D | crypto_psa.c | 140 psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT; in otPlatCryptoImportKey() local 174 psa_set_key_type(&attributes, toPsaKeyType(aKeyType)); in otPlatCryptoImportKey() 175 psa_set_key_algorithm(&attributes, toPsaAlgorithm(aKeyAlgorithm)); in otPlatCryptoImportKey() 176 psa_set_key_usage_flags(&attributes, toPsaKeyUsage(aKeyUsage)); in otPlatCryptoImportKey() 180 psa_set_key_lifetime(&attributes, PSA_KEY_LIFETIME_PERSISTENT); in otPlatCryptoImportKey() 181 psa_set_key_id(&attributes, *aKeyRef); in otPlatCryptoImportKey() 184 psa_set_key_lifetime(&attributes, PSA_KEY_LIFETIME_VOLATILE); in otPlatCryptoImportKey() 188 status = psa_import_key(&attributes, aKey, aKeyLen, aKeyRef); in otPlatCryptoImportKey() 189 psa_reset_key_attributes(&attributes); in otPlatCryptoImportKey() 211 psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT; in otPlatCryptoHasKey() local [all …]
|
/Zephyr-Core-3.6.0/subsys/net/lib/coap/ |
D | coap_link_format.c | 134 static bool match_attributes(const char * const *attributes, in match_attributes() argument 143 for (attr = attributes; attr && *attr; attr++) { in match_attributes() 163 const char * const *attributes = NULL; in match_queries_resource() local 170 if (meta && meta->attributes) { in match_queries_resource() 171 attributes = meta->attributes; in match_queries_resource() 174 if (!attributes) { in match_queries_resource() 187 return match_attributes(attributes, query); in match_queries_resource() 323 static int format_attributes(const char * const *attributes, in format_attributes() argument 331 if (!attributes) { in format_attributes() 336 for (attr = attributes; *attr; attr++) { in format_attributes() [all …]
|
/Zephyr-Core-3.6.0/soc/xtensa/espressif_esp32/esp32/ |
D | gdbstub.c | 21 .attributes = GDB_MEM_REGION_RW, 28 .attributes = GDB_MEM_REGION_RW, 35 .attributes = GDB_MEM_REGION_RW, 42 .attributes = GDB_MEM_REGION_RO, 49 .attributes = GDB_MEM_REGION_RW, 56 .attributes = GDB_MEM_REGION_RO, 63 .attributes = GDB_MEM_REGION_RW, 70 .attributes = GDB_MEM_REGION_RW, 77 .attributes = GDB_MEM_REGION_RW, 87 .attributes = GDB_MEM_REGION_RO, [all …]
|
/Zephyr-Core-3.6.0/subsys/bluetooth/mesh/ |
D | crypto_psa.c | 183 psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT; in bt_mesh_sha256_hmac_raw_key() local 190 psa_set_key_usage_flags(&attributes, PSA_KEY_USAGE_SIGN_MESSAGE); in bt_mesh_sha256_hmac_raw_key() 191 psa_set_key_lifetime(&attributes, PSA_KEY_LIFETIME_VOLATILE); in bt_mesh_sha256_hmac_raw_key() 192 psa_set_key_algorithm(&attributes, PSA_ALG_HMAC(PSA_ALG_SHA_256)); in bt_mesh_sha256_hmac_raw_key() 193 psa_set_key_type(&attributes, PSA_KEY_TYPE_HMAC); in bt_mesh_sha256_hmac_raw_key() 194 psa_set_key_bits(&attributes, 256); in bt_mesh_sha256_hmac_raw_key() 196 status = psa_import_key(&attributes, key, 32, &key_id); in bt_mesh_sha256_hmac_raw_key() 202 psa_reset_key_attributes(&attributes); in bt_mesh_sha256_hmac_raw_key() 305 psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT; in bt_mesh_dhkey_gen() local 308 psa_set_key_usage_flags(&attributes, PSA_KEY_USAGE_DERIVE); in bt_mesh_dhkey_gen() [all …]
|
/Zephyr-Core-3.6.0/scripts/footprint/ |
D | size_report | 82 if 'DW_AT_location' in die.attributes: 83 loc_attr = die.attributes['DW_AT_location'] 96 if 'DW_AT_low_pc' in die.attributes: 97 low = die.attributes['DW_AT_low_pc'].value 99 high_pc = die.attributes['DW_AT_high_pc'] 223 file_index = die.attributes['DW_AT_decl_file'].value 285 if 'DW_AT_location' in die.attributes: 291 if ('DW_AT_abstract_origin' in die.attributes) or ( 292 'DW_AT_specification' in die.attributes): 297 elif 'DW_AT_low_pc' in die.attributes: [all …]
|
/Zephyr-Core-3.6.0/include/zephyr/linker/ |
D | debug-sections.ld | 12 SECTION_PROLOGUE(.gnu.build.attributes, 0,) { *(.gnu.build.attributes .gnu.build.attributes.*) }
|
/Zephyr-Core-3.6.0/doc/services/mem_mgmt/ |
D | index.rst | 6 It is possible in the devicetree to mark the memory regions with attributes by 11 The set of general attributes that can be specified in the property are defined 34 architecture-specific and software-specific custom attributes that can be 51 marked with attributes is by using the provided ``mem-attr`` helper library by 53 list of memory regions and their attributes are compiled in a user-accessible 55 and act on regions and attributes (see next section for more details). 92 memory from with certain attributes / capabilities. 95 with one of the memory attributes listed in in 98 certain attributes. 100 Here a non exhaustive list of possible attributes: [all …]
|
/Zephyr-Core-3.6.0/scripts/build/ |
D | gen_kobject_list.py | 160 fileinfo = files[die.attributes["DW_AT_decl_file"].value - 1] 165 lineno = die.attributes["DW_AT_decl_line"].value 355 if 'DW_AT_specification' not in die.attributes: 358 spec_val = die.attributes["DW_AT_specification"].value 367 if 'DW_AT_name' not in die.attributes: 372 return die.attributes["DW_AT_name"].value.decode("utf-8") 376 if 'DW_AT_type' not in die.attributes: 381 return die.attributes["DW_AT_type"].value + die.cu.cu_offset 385 if 'DW_AT_byte_size' not in die.attributes: 388 return die.attributes["DW_AT_byte_size"].value [all …]
|
/Zephyr-Core-3.6.0/drivers/mm/ |
D | mm_drv_intel_adsp_regions.c | 24 uint32_t attributes, uint32_t position, uint32_t *total_size) in append_region() argument 28 virtual_memory_regions[position].attr = attributes; in append_region()
|
/Zephyr-Core-3.6.0/scripts/generate_usb_vif/ |
D | generate_vif.py | 45 def add_attributes_to_xml_element(xml_ele, attributes): argument 46 for key, value in attributes.items(): 50 def add_element_to_xml(xml_ele, name, text=None, attributes=None): argument 54 if attributes: 55 add_attributes_to_xml_element(new_xml_ele, attributes) 62 attributes = elements[element_name].get(other_constants.ATTRIBUTES, 65 attributes)
|
/Zephyr-Core-3.6.0/samples/net/sockets/coap_server/src/ |
D | core.c | 64 .attributes = core_1_attributes, 79 .attributes = core_2_attributes,
|
/Zephyr-Core-3.6.0/samples/subsys/usb/common/ |
D | sample_usbd_init.c | 27 static const uint8_t attributes = (IS_ENABLED(CONFIG_SAMPLE_USBD_SELF_POWERED) ? variable 33 attributes,
|
/Zephyr-Core-3.6.0/drivers/usb/udc/ |
D | udc_common.c | 206 static uint8_t ep_attrib_get_transfer(uint8_t attributes) in ep_attrib_get_transfer() argument 208 return attributes & USB_EP_TRANSFER_TYPE_MASK; in ep_attrib_get_transfer() 214 const uint8_t attributes, in ep_check_config() argument 242 switch (ep_attrib_get_transfer(attributes)) { in ep_check_config() 272 const uint8_t attributes, in ep_update_mps() argument 284 switch (ep_attrib_get_transfer(attributes)) { in ep_update_mps() 302 const uint8_t attributes, in udc_ep_try_config() argument 317 ret = ep_check_config(dev, cfg, ep, attributes, *mps, interval); in udc_ep_try_config() 319 ep_update_mps(dev, cfg, attributes, mps); in udc_ep_try_config() 329 const uint8_t attributes, in udc_ep_enable_internal() argument [all …]
|
/Zephyr-Core-3.6.0/doc/kernel/memory_management/ |
D | shared_multi_heap.rst | 8 attributes (cacheable, non-cacheable, etc...). 62 correct set of attributes for the needed memory. The framework will take 75 Adding new attributes 78 The API does not enforce any attributes, but at least it defines the two most
|
/Zephyr-Core-3.6.0/scripts/logging/dictionary/ |
D | database_gen.py | 306 return die.attributes['DW_AT_name'].value.decode('ascii'), is_const 309 if not 'DW_AT_type' in die.attributes: 317 type_attr = die.attributes['DW_AT_type'] 358 if ('DW_AT_type' in die.attributes 359 and 'DW_AT_location' in die.attributes 364 loc_attr = die.attributes['DW_AT_location'] 377 'name': die.attributes['DW_AT_name'].value,
|
/Zephyr-Core-3.6.0/doc/connectivity/bluetooth/api/ |
D | gatt.rst | 12 attributes the service contains. The helper macro :c:macro:`BT_GATT_SERVICE()` 71 field only attributes which matches will be discovered, in contrast setting it 72 to NULL allows all attributes to be discovered. 75 Caching discovered attributes is not supported. 79 more attributes can be set, though setting multiple handles requires the option:
|
/Zephyr-Core-3.6.0/include/zephyr/net/ |
D | coap_link_format.h | 73 const char * const *attributes; member
|
/Zephyr-Core-3.6.0/samples/bluetooth/peripheral_hids/ |
D | Kconfig | 11 read and write attributes as authentication required.
|
/Zephyr-Core-3.6.0/include/zephyr/debug/ |
D | gdbstub.h | 38 uint16_t attributes; member
|
/Zephyr-Core-3.6.0/samples/subsys/ipc/openamp/boards/ |
D | mimxrt1160_evk_cm7.overlay | 16 * Note that shared memory must have specific MPU attributes set.
|
D | mimxrt1170_evk_cm7.overlay | 16 * Note that shared memory must have specific MPU attributes set.
|
D | mimxrt1170_evkb_cm7.overlay | 16 * Note that shared memory must have specific MPU attributes set.
|
/Zephyr-Core-3.6.0/include/zephyr/drivers/usb/ |
D | udc.h | 116 uint8_t attributes; member 536 const uint8_t attributes, 560 const uint8_t attributes,
|
/Zephyr-Core-3.6.0/subsys/bluetooth/services/ |
D | Kconfig.hrs | 15 Default permissions for HRS characteristic attributes
|
/Zephyr-Core-3.6.0/cmake/linker_script/arm/ |
D | linker.cmake | 197 zephyr_linker_section(NAME .ARM.attributes ADDRESS 0 NOINPUT) 198 zephyr_linker_section_configure(SECTION .ARM.attributes INPUT ".ARM.attributes" KEEP) 199 zephyr_linker_section_configure(SECTION .ARM.attributes INPUT ".gnu.attributes" KEEP)
|