/Zephyr-latest/subsys/demand_paging/backing_store/ |
D | Kconfig | 5 prompt "Backing store algorithms" 9 bool "Custom backing store implementation" 11 This option is chosen when the backing store will be implemented in 16 bool "RAM-based test backing store" 18 This implements a backing store using physical RAM pages that the 23 bool "Flash-based backing store on qemu_x86_tiny" 26 This uses the "flash" memory area (in DTS) as the backing store 33 bool "Backing store for on-demand linker section using semihosting" 45 int "Number of pages for RAM backing store" 48 Number of pages of backing store memory to reserve in RAM. All test [all …]
|
/Zephyr-latest/tests/arch/arc/arc_dsp_sharing/ |
D | README.txt | 7 1) Test load and store dsp registers (including arch specific registers) 25 Load and store OK after 0 (high) + 84 (low) tests 26 Load and store OK after 100 (high) + 11926 (low) tests 27 Load and store OK after 200 (high) + 23767 (low) tests 28 Load and store OK after 300 (high) + 35607 (low) tests 29 Load and store OK after 400 (high) + 47448 (low) tests 30 Load and store OK after 500 (high) + 59287 (low) tests
|
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/ |
D | ll_settings.c | 45 settings_read_cb read_cb, void *store) in ctlr_set() argument 55 len = read_cb(store, &company_id, sizeof(company_id)); in ctlr_set() 65 len = read_cb(store, &subversion, sizeof(subversion)); in ctlr_set() 78 len = read_cb(store, &smi_tx, sizeof(smi_tx)); in ctlr_set()
|
/Zephyr-latest/subsys/bluetooth/services/ |
D | dis.c | 306 static int dis_set(const char *name, size_t len_rd, settings_read_cb read_cb, void *store) in dis_set() argument 314 len = read_cb(store, &dis_manuf, sizeof(dis_manuf) - 1); in dis_set() 325 len = read_cb(store, &dis_model, sizeof(dis_model) - 1); in dis_set() 337 len = read_cb(store, &dis_serial_number, sizeof(dis_serial_number) - 1); in dis_set() 350 len = read_cb(store, &dis_fw_rev, sizeof(dis_fw_rev) - 1); in dis_set() 363 len = read_cb(store, &dis_hw_rev, sizeof(dis_hw_rev) - 1); in dis_set() 376 len = read_cb(store, &dis_sw_rev, sizeof(dis_sw_rev) - 1); in dis_set() 389 dis_update_udi_value(store, BT_DIS_UDI_LABEL_STR_REF, read_cb, "label"); in dis_set() 394 dis_update_udi_value(store, BT_DIS_UDI_DI_STR_REF, read_cb, "device information"); in dis_set() 399 dis_update_udi_value(store, BT_DIS_UDI_ISSUER_STR_REF, read_cb, "issuer"); in dis_set() [all …]
|
/Zephyr-latest/subsys/secure_storage/ |
D | Kconfig.its_store | 5 prompt "ITS store module implementation" 13 bool "ITS store module implementation using ZMS for storage" 19 This implementation of the ITS store module makes direct use of ZMS for storage. 28 bool "ITS store module implementation using the settings subsystem for storage" 39 bool "No ITS store module implementation" 42 bool "Custom ITS store module implementation" 44 Implement the functions declared in <zephyr/secure_storage/its/store.h>. 66 string "Subtree in which to store the settings, with a trailing slash. Can be empty."
|
/Zephyr-latest/tests/kernel/fpu_sharing/generic/ |
D | README.txt | 7 1) load and store floating point registers and check for corruption 60 Load and store OK after 0 (high) + 63 (low) tests 61 Load and store OK after 100 (high) + 6540 (low) tests 62 Load and store OK after 200 (high) + 12965 (low) tests 63 Load and store OK after 300 (high) + 19366 (low) tests 64 Load and store OK after 400 (high) + 25756 (low) tests 65 Load and store OK after 500 (high) + 32128 (low) tests
|
/Zephyr-latest/doc/kernel/memory_management/ |
D | demand_paging.rst | 15 the corresponding data page from backing store into physical memory if 20 written back into the backing store. If no modifications is done or 21 after written back into backing store, the data page is now considered 23 then invokes the backing store to page in the data page corresponding to 24 the location of the requested data. The backing store copies that data 44 or be paged out to some backing store. Its location can always be looked 54 store metadata. Flags for each page frame: 73 in the backing store. 76 The virtual address of a special page provided to the backing store to: 80 scratch needs to be mapped read/write for backing store code to access. [all …]
|
/Zephyr-latest/subsys/bluetooth/mesh/ |
D | rpl.c | 38 static ATOMIC_DEFINE(store, CONFIG_BT_MESH_CRPL); 61 atomic_clear_bit(store, rpl_idx(rpl)); in clear_rpl() 74 atomic_set_bit(store, rpl_idx(entry)); in schedule_rpl_store() 137 !atomic_test_bit(store, i)) { in bt_mesh_rpl_check() 231 atomic_set_bit_to(store, i, !rpl->old_iv); in bt_mesh_rpl_reset() 374 } else if (atomic_test_and_clear_bit(store, i)) { in bt_mesh_rpl_pending_store() 386 if (atomic_test_and_clear_bit(store, i)) { in bt_mesh_rpl_pending_store() 388 atomic_set_bit(store, i - shift); in bt_mesh_rpl_pending_store()
|
D | cdb.c | 595 bool store) in update_cdb_node_settings() argument 603 update->clear = !store; in update_cdb_node_settings() 609 if (store) { in update_cdb_node_settings() 618 free_slot->clear = !store; in update_cdb_node_settings() 653 bool store) in update_cdb_subnet_settings() argument 656 uint8_t clear = store ? 0U : 1U; in update_cdb_subnet_settings() 668 if (store) { in update_cdb_subnet_settings() 685 bool store) in update_cdb_app_key_settings() argument 688 uint8_t clear = store ? 0U : 1U; in update_cdb_app_key_settings() 700 if (store) { in update_cdb_app_key_settings() [all …]
|
/Zephyr-latest/doc/connectivity/networking/api/ |
D | ptp_time.rst | 14 The PTP time struct can store time information in high precision 15 format (nanoseconds). The extended timestamp format can store the
|
/Zephyr-latest/include/zephyr/bluetooth/mesh/ |
D | cdb.h | 161 void bt_mesh_cdb_node_del(struct bt_mesh_cdb_node *node, bool store); 264 void bt_mesh_cdb_subnet_del(struct bt_mesh_cdb_subnet *sub, bool store); 345 void bt_mesh_cdb_app_key_del(struct bt_mesh_cdb_app_key *key, bool store);
|
/Zephyr-latest/scripts/coredump/coredump_parser/ |
D | elf_parser.py | 114 store = False 120 store = True 130 store = True 133 if store:
|
/Zephyr-latest/doc/develop/sca/ |
D | codechecker.rst | 63 - Skip parsing the analysis, useful if you simply want to store the results. 65 - Run the ``store`` command after analysis. 67 - Arguments passed to the ``store`` command directly. Implies ``CODECHECKER_STORE``. 70 - Pass an identifier ``--tag`` to the ``store`` command.
|
/Zephyr-latest/subsys/secure_storage/src/its/ |
D | CMakeLists.txt | 28 store/zms.c 31 store/settings.c
|
/Zephyr-latest/cmake/sca/codechecker/ |
D | sca.cmake | 155 add_custom_target(codechecker-store ALL 156 COMMAND ${CODECHECKER_EXE} store 166 add_dependencies(codechecker-store codechecker) 167 add_dependencies(codechecker-cleanup codechecker-store)
|
/Zephyr-latest/boards/st/stm32h750b_dk/ |
D | Kconfig.defconfig | 10 # MEMC needs to be enabled in order to store
|
/Zephyr-latest/tests/drivers/pinctrl/api/ |
D | Kconfig | 12 This option should be selected by unit tests that want to store the
|
/Zephyr-latest/subsys/fs/ext2/ |
D | Kconfig | 31 are used to store fetched blocks. 38 are used to store fetched blocks.
|
/Zephyr-latest/arch/riscv/core/ |
D | asm_macros.inc | 10 /* register-wide load/store based on ld/sd (XLEN = 64) */ 21 /* register-wide load/store based on lw/sw (XLEN = 32) */
|
/Zephyr-latest/doc/develop/west/ |
D | workspaces.rst | 68 your GitHub password in a graphical window once, then store it for future use 72 In general, you can store your credentials on disk using the "store" git 73 credential helper. See the `git-credential-store`_ manual page for details. 79 west forall -c "git config credential.helper store" 85 west forall -c "git config credential.helper store" foo bar 91 git config --global credential.helper store 98 You can use the Git credential store to authenticate with a GitHub PAT 105 If you don't want to store any credentials on the file system, you can store 115 .. _git-credential-store: 116 https://git-scm.com/docs/git-credential-store#_examples
|
/Zephyr-latest/soc/st/stm32/stm32wb0x/ |
D | ram_sections.ld | 11 * SRAM0 unused, even though it could store data.
|
/Zephyr-latest/samples/subsys/demand_paging/ |
D | README.rst | 19 store implementation with access to the compiled Zephyr binary. 20 For demonstration purposes, the ondemand_semihost backing store is used on
|
/Zephyr-latest/boards/st/stm32f746g_disco/ |
D | Kconfig.defconfig | 20 # MEMC needs to be enabled in order to store
|
/Zephyr-latest/boards/st/stm32f7508_dk/ |
D | Kconfig.defconfig | 17 # MEMC needs to be enabled in order to store
|
/Zephyr-latest/doc/build/dts/ |
D | zephyr-user-node.rst | 20 You can store numeric or array values in ``/zephyr,user`` if you want them to 54 You can store :ref:`phandles <dt-phandles>` in ``/zephyr,user`` if you want to 100 The ``/zephyr,user`` node is a convenient place to store application-specific
|