/Zephyr-latest/tests/cmake/yaml/ |
D | test.yaml | 3 key-string: "Simple string" 4 key-int: 42 5 key-list-int: 6 - 4 7 - 10 8 - 2 9 key-list-string: 10 - "a" 11 - "list" 12 - "of" [all …]
|
D | CMakeLists.txt | 1 # SPDX-License-Identifier: Apache-2.0 42 set(expected "Simple string") 43 yaml_get(actual NAME yaml-test KEY cmake test key-string) 46 COMMENT "yaml key value does not match expectation." 52 yaml_length(actual NAME yaml-test KEY cmake test key-list-string) 58 yaml_get(actual NAME yaml-test KEY cmake test key-list-string) 69 yaml_get(actual NAME yaml-test KEY cmake test key-int) 72 COMMENT "yaml key value does not match expectation." 78 yaml_length(actual NAME yaml-test KEY cmake test key-list-int) 84 yaml_get(actual NAME yaml-test KEY cmake test key-list-int) [all …]
|
/Zephyr-latest/cmake/modules/ |
D | yaml.cmake | 1 # SPDX-License-Identifier: Apache-2.0 9 # It supports basic key-value pairs, like 12 # basic key-object pairs, like 18 # - foo1 19 # - foo2 20 # - foo3 27 # - alpha 28 # - beta 29 # - gamma 35 # - bar: val1 [all …]
|
/Zephyr-latest/subsys/mgmt/mcumgr/util/include/mgmt/mcumgr/util/ |
D | zcbor_bulk.h | 2 * Copyright (c) 2022-2023 Nordic Semiconductor ASA 4 * SPDX-License-Identifier: Apache-2.0 18 struct zcbor_string key; /* Map key string */ member 19 zcbor_decoder_t *decoder; /* Key corresponding decoder */ 24 /** @brief Define single key-decoder mapping 28 * @param k key is "" enclosed string representing key; 32 * @param vp non-NULL pointer for result of decoding; should correspond 39 .len = sizeof(k) - 1, \ 46 /** @brief Define single key-value decode mapping 54 * @param k key; the @p k will be stringified so should be given [all …]
|
/Zephyr-latest/subsys/mgmt/osdp/ |
D | Kconfig.cp | 4 # SPDX-License-Identifier: Apache-2.0 16 string "List of connected Peripheral Device addresses" 20 string should exactly match the number of connected PDs specified above 48 string "Secure Channel Master Key" 51 Hexadecimal string representation of the 16 byte OSDP Secure Channel 52 master Key. This is a mandatory key when secure channel is enabled.
|
/Zephyr-latest/scripts/build/ |
D | gen_app_partitions.py | 5 # SPDX-License-Identifier: Apache-2.0 10 Applications may declare build-time memory domain partitions with 13 route all their data into appropriately-sized memory areas which meet the 18 tool generates is a necessary pre-condition for kernel linking. We extract 26 - The base directory to look for compiled objects 27 - key/value pairs mapping static library files to what partitions their globals 55 SMEM_PARTITION_ALIGN(z_data_smem_{0}_bss_end - z_data_smem_{0}_part_start); 75 SMEM_PARTITION_ALIGN(z_data_smem_{0}_bss_end - z_data_smem_{0}_part_start); 104 z_data_smem_{0}_part_size = z_data_smem_{0}_part_end - z_data_smem_{0}_part_start; 105 z_data_smem_{0}_bss_size = z_data_smem_{0}_bss_end - z_data_smem_{0}_bss_start; [all …]
|
/Zephyr-latest/subsys/mgmt/mcumgr/util/src/ |
D | zcbor_bulk.c | 2 * Copyright (c) 2022-2023 Nordic Semiconductor ASA 4 * SPDX-License-Identifier: Apache-2.0 7 #include <string.h> 22 return -EBADMSG; in zcbor_map_decode_bulk() 29 struct zcbor_string key; in zcbor_map_decode_bulk() local 33 ok = zcbor_tstr_decode(zsd, &key); in zcbor_map_decode_bulk() 40 if (key.len == dptr->key.len && in zcbor_map_decode_bulk() 41 memcmp(key.value, dptr->key.value, key.len) == 0) { in zcbor_map_decode_bulk() 43 if (dptr->found) { in zcbor_map_decode_bulk() 44 return -EADDRINUSE; in zcbor_map_decode_bulk() [all …]
|
/Zephyr-latest/samples/net/lwm2m_client/ |
D | Kconfig | 4 # SPDX-License-Identifier: Apache-2.0 9 string "LwM2M Client identity" 17 string "PSK key" 20 PSK key as a hex string. 31 string "LwM2M server address"
|
/Zephyr-latest/dts/bindings/watchdog/ |
D | nxp,s32-swt.yaml | 1 # Copyright 2022-2024 NXP 2 # SPDX-License-Identifier: Apache-2.0 6 compatible: "nxp,s32-swt" 20 master-access-mask: 26 are chip-specific. 29 reset-on-invalid-access: 34 service-mode: 35 type: string 38 - "fixed" 39 - "keyed" [all …]
|
/Zephyr-latest/include/zephyr/settings/ |
D | settings.h | 5 * SPDX-License-Identifier: Apache-2.0 46 #define SETTINGS_EXTRA_LEN ((SETTINGS_MAX_DIR_DEPTH - 1) + 2) 58 * @return positive: Number of bytes read, 0: key-value pair is deleted. 59 * On error returns -ERRNO code. 76 int (*h_get)(const char *key, char *val, int val_len_max); 80 * - key[in] the name with skipped part that was used as name in 82 * - val[out] buffer to receive value. 83 * - val_len_max[in] size of that buffer. 88 int (*h_set)(const char *key, size_t len, settings_read_cb read_cb, 93 * - key[in] the name with skipped part that was used as name in [all …]
|
/Zephyr-latest/subsys/net/lib/config/ |
D | Kconfig | 4 # SPDX-License-Identifier: Apache-2.0 7 module-dep = NET_LOG 8 module-str = Log level for network config library 9 module-help = Enables net config library to output debug messages. 19 some link-layer dedicated settings like the channel. 84 string "My IPv6 address" 89 string "Peer IPv6 address" 100 string "My IPv4 address" 105 string "My IPv4 netmask" 112 string "My IPv4 gateway" [all …]
|
/Zephyr-latest/scripts/ci/ |
D | pylintrc | 2 # SPDX-License-Identifier: Apache-2.0 8 # pylint3 --rcfile=ci-tools/scripts/pylintrc <Python file> 12 # pylint3 --rcfile=ci-tools/scripts/pylintrc $(git ls-files '*.py') 35 # 'pylint3 --list-msgs' to list messages and their IDs. 39 # no-member 40 # arguments-differ 41 # redefine-in-handler 42 # abstract-method 46 # no-else-return 47 # consider-using-get [all …]
|
/Zephyr-latest/samples/subsys/nvs/src/ |
D | main.c | 10 * 1. A string representing an IP-address: stored at id=1, data="192.168.1.1" 11 * 2. A binary blob representing a key: stored at id=2, data=FF FE FD FC FB FA 14 * 4. A string: stored at id=4, data="DATA" (used to illustrate deletion of 23 * At the 10th reboot the string item with id=4 is deleted (or marked for 26 * At the 11th reboot the string item with id=4 can no longer be read with the 33 * latest values of address, key and reboot_counter is kept. 37 * SPDX-License-Identifier: Apache-2.0 44 #include <string.h> 72 uint8_t key[8], longarray[128]; in main() local 83 printk("Flash device %s is not ready\n", fs.flash_device->name); in main() [all …]
|
/Zephyr-latest/scripts/west_commands/ |
D | boards.py | 3 # SPDX-License-Identifier: Apache-2.0 25 # Keep this in sync with the string in west-commands.yml. 39 -------------- 41 Boards are listed using a Python 3 format string. Arguments 42 to the format string are accessed by name. 44 The default format string is: 50 - name: board name 51 - full_name: board full name (typically, its commercial name) 52 - qualifiers: board qualifiers (will be empty for legacy boards) 53 - arch: board architecture (deprecated) [all …]
|
/Zephyr-latest/samples/net/cloud/tagoio_http_post/ |
D | Kconfig | 2 # SPDX-License-Identifier: Apache-2.0 12 string "TagoIO Main Server" 17 string "The Device Identification Token" 33 string "WIFI SSID - Network name" 37 string "WIFI PSK - Network password key" 43 module-str = TagoIO IoT Cloud Platform 44 module-help = Enables logging for TagoIO IoT Cloud Platform.
|
/Zephyr-latest/tests/boot/test_mcuboot/ |
D | sysbuild.cmake | 2 # SPDX-License-Identifier: Apache-2.0 4 # Add the mcuboot key file to the secondary swapped app 5 # This must be done here to ensure that the same key file is used for signing 8 \"${SB_CONFIG_BOOT_SIGNATURE_KEY_FILE}\" CACHE STRING 9 "Signature key file for signing" FORCE) 19 # - mcuboot 20 # - swapped app 21 # - primary app (test_mcuboot)
|
/Zephyr-latest/boards/intel/adsp/ |
D | board.cmake | 1 # Copyright (c) 2022-2024 Intel Corporation 3 # SPDX-License-Identifier: Apache-2.0 8 board_set_flasher_ifnset(misc-flasher) 9 board_finalize_runner_args(misc-flasher) 14 set(RIMAGE_SIGN_KEY "otc_private_key_3k.pem" CACHE STRING "default in cavs25/board.cmake") 21 board_set_rimage_target(tgl-h) 30 set(RIMAGE_SIGN_KEY "otc_private_key_3k.pem" CACHE STRING "default in ace15_mtpm/board.cmake") 40 set(RIMAGE_SIGN_KEY "otc_private_key_3k.pem" CACHE STRING "default in ace20_lnl/board.cmake") 46 set(RIMAGE_SIGN_KEY "otc_private_key.pem" CACHE STRING "default rimage key")
|
/Zephyr-latest/dts/bindings/input/ |
D | gpio-keys.yaml | 2 # SPDX-License-Identifier: Apache-2.0 8 is defined in a child node of the gpio-keys node and defines a specific key 13 #include <zephyr/dt-bindings/input/input-event-codes.h> 17 compatible = "gpio-keys"; 26 compatible: "gpio-keys" 31 debounce-interval-ms: 38 polling-mode: 41 Do not use interrupts for the key GPIOs, poll the pin periodically at the 42 specified debounce-interval-ms instead. 44 no-disconnect: [all …]
|
/Zephyr-latest/samples/net/sockets/echo_client/ |
D | Kconfig | 1 # Private config options for echo-client sample app 4 # SPDX-License-Identifier: Apache-2.0 6 mainmenu "Networking echo-client sample application" 9 string "My IPv6 address for second interface" 14 string "My IPv4 address for second interface" 28 string "My IPv6 address for third interface" 33 string "My IPv4 address for third interface" 47 string "Header file containing PSK" 52 pre-shared key.
|
/Zephyr-latest/tests/bsim/bluetooth/host/gatt/settings_clear/src/ |
D | bt_settings_hook.c | 4 * SPDX-License-Identifier: Apache-2.0 8 #include <string.h> 20 char *key; member 28 static void add_key(const char *key) in add_key() argument 31 size_t key_size = strlen(key); in add_key() 40 if (strcmp(loop_node->key, key) == 0) { in add_key() 49 new_node->key = k_malloc(sizeof(char) * key_size); in add_key() 50 TEST_ASSERT(new_node->key != NULL, "Failed to malloc new_node->key"); in add_key() 52 memcpy(new_node->key, key, sizeof(char) * key_size); in add_key() 54 sys_slist_append(&settings_list, &new_node->node); in add_key() [all …]
|
/Zephyr-latest/modules/openthread/ |
D | Kconfig.thread | 4 # SPDX-License-Identifier: Apache-2.0 15 string "Default network name" 21 string "Default Extended PAN ID" 28 string "Default Thread Network Key" 30 Network Key for OpenThread with format 38 string "Default pre shared key for the Joiner" 48 bool "FTD - Full Thread Device" 50 bool "MTD - Minimal Thread Device" 54 bool "SED - Sleepy End Device" 73 string "The platform-specific string to insert into the OpenThread version string" [all …]
|
/Zephyr-latest/samples/subsys/mgmt/updatehub/ |
D | Kconfig | 1 # Copyright (c) 2018-2020 O.S.Systems 2 # SPDX-License-Identifier: Apache-2.0 25 string "WIFI SSID - Network name" 28 string "WIFI PSK - Network password key"
|
/Zephyr-latest/subsys/bluetooth/crypto/ |
D | bt_crypto_psa.c | 2 * SPDX-License-Identifier: Apache-2.0 6 #include <string.h> 19 int bt_crypto_aes_cmac(const uint8_t *key, const uint8_t *in, size_t len, uint8_t *out) in bt_crypto_aes_cmac() argument 32 status = psa_import_key(&key_attr, key, 16, &key_id); in bt_crypto_aes_cmac() 34 LOG_ERR("Failed to import AES key %d", status); in bt_crypto_aes_cmac() 35 return -EIO; in bt_crypto_aes_cmac() 42 return -EIO; in bt_crypto_aes_cmac()
|
/Zephyr-latest/subsys/net/lib/lwm2m/ |
D | lwm2m_senml_cbor.cddl | 10 vs => tstr // ; String Value 14 0*5 key-value-pair ; To handle unordered maps; length-first ordered map keys 18 key-value-pair = ( int => value ) 24 bn = -2 25 bt = -3
|
/Zephyr-latest/modules/ |
D | Kconfig.mcuboot | 3 # Copyright (c) 2014-2015 Wind River Systems, Inc. 6 # SPDX-License-Identifier: Apache-2.0 20 or in other words that the image is to be chain-loaded by MCUboot. 27 * Activating SW_VECTOR_RELAY_CLIENT on Cortex-M0 28 (or Armv8-M baseline) targets with no built-in vector relocation 39 string "Path to the mcuboot signing key file" 43 The file contains a key pair whose public half is verified 46 If set to a non-empty value, the build system tries to 47 sign the final binaries using a 'west sign -t imgtool' command. 66 string "Path to the mcuboot encryption key file" [all …]
|