Home
last modified time | relevance | path

Searched full:create (Results 1 – 25 of 1277) sorted by relevance

12345678910>>...52

/Zephyr-latest/boards/arm/fvp_baser_aemv8r/doc/
Ddebug-with-arm-ds.rst37 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/
DCMakeLists.txt191 NAME ${CMAKE_CURRENT_FUNCTION}_yaml-create
195 yaml_set(NAME ${CMAKE_CURRENT_FUNCTION}_yaml-create
199 yaml_save(NAME ${CMAKE_CURRENT_FUNCTION}_yaml-create)
215 NAME ${CMAKE_CURRENT_FUNCTION}_yaml-create
219 yaml_set(NAME ${CMAKE_CURRENT_FUNCTION}_yaml-create
223 yaml_save(NAME ${CMAKE_CURRENT_FUNCTION}_yaml-create)
247 NAME ${CMAKE_CURRENT_FUNCTION}_yaml-create
251 yaml_set(NAME ${CMAKE_CURRENT_FUNCTION}_yaml-create
261 yaml_set(NAME ${CMAKE_CURRENT_FUNCTION}_yaml-create
268 yaml_set(NAME ${CMAKE_CURRENT_FUNCTION}_yaml-create
[all …]
/Zephyr-latest/boards/sifive/hifive_unleashed/support/
Dopenocd_hifive_unleashed.cfg14 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/
Dopenocd_hifive_unmatched.cfg14 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/
Dkey.c53 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/
DREADME.md8 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/scripts/west_commands/
Dspdx.py26 'create SPDX bill of materials',
77 self.die("Couldn't create CMake file-based API query directory\n"
78 "You can manually create an empty file at "
85 # create the SPDX files
91 # create default namespace according to SPDX spec
104 # make sure SPDX directory exists, or create it if it doesn't
111 # create the directory
115 self.die("Failed to create SPDX output")
/Zephyr-latest/boards/renesas/rcar_spider_s4/support/
Dopenocd.cfg22 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/boards/renesas/rcar_salvator_x/support/
Dopenocd.cfg18 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/
Drelease.yml1 name: Create a Release
35 - name: Create empty release notes body
39 - name: Create Release
41 uses: actions/create-release@v1
/Zephyr-latest/tests/bluetooth/uuid/src/
Dtest_bt_uuid_create.c25 /* 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/tests/subsys/fs/ext2/src/
Dtestfs_dirops.c23 /* 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/samples/net/sockets/http_server/src/certs/
Dgen_server_cert.sh18 # 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/
Dopenocd_arty_a7_arm_designstart.cfg2 dap create $_CHIPNAME.dap -chain-position $_CHIPNAME.cpu
5 target create $_TARGETNAME cortex_m -dap $_CHIPNAME.dap
/Zephyr-latest/samples/cpp/cpp_synchronization/
Dsample.yaml15 - "Create semaphore (.*)"
32 - "Create semaphore (.*)"
/Zephyr-latest/boards/sc/scobc_module1/support/
Dopenocd.cfg13 dap create $_CHIPNAME.dap -chain-position $_CHIPNAME.cpu
16 target create $_TARGETNAME cortex_m -dap $_CHIPNAME.dap
Dscobc-module1.cfg23 dap create $_CHIPNAME.dap -chain-position $_CHIPNAME.cpu
26 target create $_TARGETNAME cortex_m -dap $_CHIPNAME.dap
/Zephyr-latest/dts/bindings/led_strip/
Dworldsemi,ws2812-gpio.yaml81 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/
Dtest_sched_is_preempt_thread.c58 * @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/
Diso.rst19 create-big :Create a BIG as a broadcaster [enc <broadcast code>]
26 1. [Central] Create CIG:
/Zephyr-latest/drivers/disk/nvme/
Dnvme_controller_cmd.c53 * 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/scripts/west_commands/zspdx/
Dsbom.py36 # 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/arch/x86/
Dgen_gdt.py32 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/modules/hal_silabs/simplicity_sdk/
DKconfig12 See AN1127 for information on how to create a custom PA curve.
20 See AN1127 for information on how to create a custom PA curve.
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/
Dull_llcp.h182 * @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.

12345678910>>...52