/Zephyr-latest/boards/arm/fvp_baser_aemv8r/doc/ |
D | debug-with-arm-ds.rst | 37 Create a new configuration database 40 Create a new configuration database by selecting ``File -> New -> Other... -> Configuration Databas… 42 .. image:: images/create-new-configuration-database.jpg 44 :alt: Arm DS create new configuration database 48 .. image:: images/create-new-configuration-database_database-name.jpg 50 :alt: Arm DS create new configuration database: choose database name 54 .. image:: images/create-new-configuration-database_shown-in-project-explorer.jpg 56 :alt: Arm DS create new configuration database: shown in project explorer 58 Create a new model configuration 63 .. image:: images/create-new-model-configuration.jpg [all …]
|
/Zephyr-latest/tests/cmake/yaml/ |
D | CMakeLists.txt | 153 NAME ${CMAKE_CURRENT_FUNCTION}_yaml-create 157 yaml_set(actual NAME ${CMAKE_CURRENT_FUNCTION}_yaml-create 161 yaml_save(NAME ${CMAKE_CURRENT_FUNCTION}_yaml-create) 177 NAME ${CMAKE_CURRENT_FUNCTION}_yaml-create 181 yaml_set(actual NAME ${CMAKE_CURRENT_FUNCTION}_yaml-create 185 yaml_save(NAME ${CMAKE_CURRENT_FUNCTION}_yaml-create) 209 NAME ${CMAKE_CURRENT_FUNCTION}_yaml-create 213 yaml_set(actual NAME ${CMAKE_CURRENT_FUNCTION}_yaml-create 217 yaml_save(NAME ${CMAKE_CURRENT_FUNCTION}_yaml-create) 233 NAME ${CMAKE_CURRENT_FUNCTION}_yaml-create [all …]
|
/Zephyr-latest/boards/sifive/hifive_unleashed/support/ |
D | openocd_hifive_unleashed.cfg | 14 target create $_TARGETNAME.0 riscv -chain-position $_TARGETNAME -rtos hwthread 15 target create $_TARGETNAME.1 riscv -chain-position $_TARGETNAME -coreid 1 16 target create $_TARGETNAME.2 riscv -chain-position $_TARGETNAME -coreid 2 17 target create $_TARGETNAME.3 riscv -chain-position $_TARGETNAME -coreid 3 18 target create $_TARGETNAME.4 riscv -chain-position $_TARGETNAME -coreid 4
|
/Zephyr-latest/boards/sifive/hifive_unmatched/support/ |
D | openocd_hifive_unmatched.cfg | 14 target create $_TARGETNAME.0 riscv -chain-position $_TARGETNAME -rtos hwthread 15 target create $_TARGETNAME.1 riscv -chain-position $_TARGETNAME -coreid 1 16 target create $_TARGETNAME.2 riscv -chain-position $_TARGETNAME -coreid 2 17 target create $_TARGETNAME.3 riscv -chain-position $_TARGETNAME -coreid 3 18 target create $_TARGETNAME.4 riscv -chain-position $_TARGETNAME -coreid 4
|
/Zephyr-latest/tests/posix/common/src/ |
D | key.c | 53 zassert_ok(pthread_key_create(&key, NULL), "insufficient memory to create key"); in make_key() 60 "insufficient memory to create keys"); in make_keys() 68 * create a key via pthread_key_create() API. It then sets the 82 zassert_ok(pthread_once(&key_once, make_key), "attempt to create key failed"); in ZTEST() 88 "attempt to create thread %d failed", i); in ZTEST() 102 zassert_ok(pthread_once(&keys_once, make_keys), "attempt to create keys failed"); in ZTEST() 107 "attempt to create thread failed"); in ZTEST() 121 zassert_ok(pthread_key_create(&key, NULL), "failed to create key %zu", i); in ZTEST() 133 zassert_ok(pthread_key_create(&keys[i], NULL), "failed to create key %zu", i); in ZTEST() 138 zassert_ok(pthread_key_create(&keys[j], NULL), "failed to create key %zu", j); in ZTEST() [all …]
|
/Zephyr-latest/scripts/ci/es_upload/ |
D | README.md | 8 An index map file allows to create destination index files on ElasticSearch server 33 Execute the upload script once for the first time to create your index at the ElasticSearch 36 python3 ./scripts/ci/upload_test_results_es.py --create-index \ 72 Create the index: 74 python3 ./scripts/ci/upload_test_results_es.py --create-index \ 93 Create the index: 95 python3 ./scripts/ci/upload_test_results_es.py --create-index \ 117 Create the index: 119 python3 ./scripts/ci/upload_test_results_es.py --create-index \ 140 Create the index: [all …]
|
/Zephyr-latest/boards/renesas/rcar_spider_s4/support/ |
D | openocd.cfg | 22 dap create $_DAPNAME -chain-position $_CHIPNAME.cpu 24 cti create $_CTINAME -dap $_DAPNAME -ap-num 1 -baseaddr $CR52_CTIBASE 25 target create $_TARGETNAME armv8r -dap $_DAPNAME -ap-num 1 -dbgbase $CR52_DBGBASE -cti $_CTINAME
|
/Zephyr-latest/scripts/west_commands/ |
D | spdx.py | 26 'create SPDX bill of materials', 77 self.err("Couldn't create CMake file-based API query directory") 78 … self.err("You can manually create an empty file at $BUILDDIR/.cmake/api/v1/query/codemodel-v2") 84 # create the SPDX files 90 # create default namespace according to SPDX spec 103 # make sure SPDX directory exists, or create it if it doesn't 110 # create the directory
|
/Zephyr-latest/boards/renesas/rcar_salvator_x/support/ |
D | openocd.cfg | 18 dap create $_CHIPNAME.dap -chain-position $_CHIPNAME.cpu 20 cti create $_CHIPNAME.r7.cti -dap $_CHIPNAME.dap -ap-num 1 -baseaddr $CR7_CTIBASE 21 target create $_CHIPNAME.r7 cortex_r4 -dap $_CHIPNAME.dap -ap-num 1 -dbgbase $CR7_DBGBASE -defer-ex… 25 cti create $_CHIPNAME.a57.0.cti -dap $_CHIPNAME.dap -ap-num 1 -baseaddr $CA57_0_CTIBASE 26 target create $_CHIPNAME.a57.0 aarch64 -dap $_CHIPNAME.dap -ap-num 1 -dbgbase $CA57_0_DBGBASE -cti …
|
/Zephyr-latest/.github/workflows/ |
D | release.yml | 1 name: Create a Release 35 - name: Create empty release notes body 39 - name: Create Release 41 uses: actions/create-release@v1
|
/Zephyr-latest/tests/subsys/fs/ext2/src/ |
D | testfs_dirops.c | 23 /* Create some directories */ in ZTEST() 24 zassert_equal(fs_mkdir("/sml/dir1"), 0, "Create dir1 failed"); in ZTEST() 25 zassert_equal(fs_mkdir("/sml/dir2"), 0, "Create dir2 failed"); in ZTEST() 27 /* Create some files */ in ZTEST() 28 zassert_equal(fs_open(&file, "/sml/file1", FS_O_CREATE), 0, "Create file1 failed"); in ZTEST() 30 zassert_equal(fs_open(&file, "/sml/dir1/file2", FS_O_CREATE), 0, "Create file2 failed"); in ZTEST() 32 zassert_equal(fs_open(&file, "/sml/dir2/file3", FS_O_CREATE), 0, "Create file3 failed"); in ZTEST()
|
/Zephyr-latest/tests/bluetooth/uuid/src/ |
D | test_bt_uuid_create.c | 25 /* Create UUID from LE 16 bit byte array */ in ZTEST() 27 "Unable create UUID"); in ZTEST() 41 /* Create UUID from BE 16 bit byte array */ in ZTEST() 43 "Unable create UUID"); in ZTEST()
|
/Zephyr-latest/samples/net/sockets/http_server/src/certs/ |
D | gen_server_cert.sh | 18 # Create a file containing server CSR extensions 26 # Create a server certificate by signing the server CSR using the CA cert/key 39 # Create DER encoded versions of server certificate and private key
|
/Zephyr-latest/boards/digilent/arty_a7/support/ |
D | openocd_arty_a7_arm_designstart.cfg | 2 dap create $_CHIPNAME.dap -chain-position $_CHIPNAME.cpu 5 target create $_TARGETNAME cortex_m -dap $_CHIPNAME.dap
|
/Zephyr-latest/samples/cpp/cpp_synchronization/ |
D | sample.yaml | 15 - "Create semaphore (.*)" 32 - "Create semaphore (.*)"
|
/Zephyr-latest/boards/sc/scobc_module1/support/ |
D | openocd.cfg | 13 dap create $_CHIPNAME.dap -chain-position $_CHIPNAME.cpu 16 target create $_TARGETNAME cortex_m -dap $_CHIPNAME.dap
|
D | scobc-module1.cfg | 23 dap create $_CHIPNAME.dap -chain-position $_CHIPNAME.cpu 26 target create $_TARGETNAME cortex_m -dap $_CHIPNAME.dap
|
/Zephyr-latest/dts/bindings/led_strip/ |
D | worldsemi,ws2812-gpio.yaml | 81 Number of NOP assembly operations to create a delay for a 1 bit, high 87 Number of NOP assembly operations to create a delay for a 1 bit, low 93 Number of NOP assembly operations to create a delay for a 0 bit, high 99 Number of NOP assembly operations to create a delay for a 0 bit, low
|
/Zephyr-latest/tests/kernel/sched/schedule_api/src/ |
D | test_sched_is_preempt_thread.c | 58 * @details Create a preemptive thread, lock the scheduler 60 * call k_is_preempt_thread() again. Create a cooperative 72 /* create preempt thread */ in ZTEST() 79 /* create coop thread */ in ZTEST()
|
/Zephyr-latest/doc/connectivity/bluetooth/shell/host/ |
D | iso.rst | 19 create-big :Create a BIG as a broadcaster [enc <broadcast code>] 26 1. [Central] Create CIG:
|
/Zephyr-latest/drivers/disk/nvme/ |
D | nvme_controller_cmd.c | 53 * TODO: create an identify command data structure in nvme_ctrlr_cmd_identify_namespace() 76 * TODO: create a create io completion queue command data in nvme_ctrlr_cmd_create_io_cq() 104 * TODO: create a create io submission queue command data in nvme_ctrlr_cmd_create_io_sq() 132 * TODO: create a delete io completion queue command data in nvme_ctrlr_cmd_delete_io_cq() 156 * TODO: create a delete io submission queue command data in nvme_ctrlr_cmd_delete_io_sq()
|
/Zephyr-latest/arch/x86/ |
D | gen_gdt.py | 32 we additionally create descriptors for the main and double- 34 double-fault handling. If userspace is enabled, we also create 77 """Create pseudo GDT descriptor""" 78 debug("create pseudo descriptor: %x %x" % (addr, size)) 100 """Create GDT entry for code or data""" 101 debug("create code or data entry: %x %x %x %x %x" % 129 """Create GDT TSS entry""" 130 debug("create TSS entry: %x %x %x" % (base, limit, dpl))
|
/Zephyr-latest/scripts/west_commands/zspdx/ |
D | sbom.py | 36 # create Cmake file-based API directories and query file 40 # check that query dir exists as a directory, or else create it 48 # create the directory 51 # check that codemodel-v2 exists as a file, or else create it 60 # file doesn't exist, let's create an empty file
|
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/ |
D | ull_llcp.h | 182 * @brief Initiate a CIS Create Procedure. 187 * @brief Resume CIS create after CIS offset calculation. 193 * @brief Is ongoing create cis procedure expecting a reply? 198 * @brief Is ongoing create cis procedure expecting an established event? 203 * @brief Cancel ongoing create cis procedure 208 * @brief Get handle of ongoing create cis procedure. 214 * @brief Accept the remote device’s request to create cis. 219 * @brief Reject the remote device’s request to create cis.
|
/Zephyr-latest/tests/kernel/timer/timer_error_case/src/ |
D | main.c | 39 * @details Create a thread and set k_timer_start() input to NULL 78 * @details Create a thread and set k_timer_stop() input to NULL 116 * @details Create a thread and set k_timer_status_get() input to NULL 154 * @details Create a thread and set k_timer_status_sync() input to NULL 192 * @details Create a thread and set k_timer_remaining_ticks() input to NULL 230 * @details Create a thread and set k_timer_expires_ticks() input to NULL 267 * @details Create a thread and set k_timer_user_data_get() input to NULL 306 * @details Create a thread and set k_timer_user_data_set() input to NULL
|