/Zephyr-latest/include/zephyr/llext/ |
D | symbol.h | 43 /** At build time, we always write to 'name'. 48 /** Name of symbol */ 49 const char *const name; member 68 /** Name of symbol */ 69 const char *name; member 97 .name = STRINGIFY(sym_name), .addr = (const void *)&sym_ident, \ 106 * @brief Exports a symbol from an extension to the base image with a custom name 109 * name for the exported symbol. 112 * @param sym_name Name associated with the symbol 142 .name = __llext_sym_name_ ## sym_name, \ [all …]
|
/Zephyr-latest/scripts/west_commands/ |
D | shields.py | 32 default_fmt = '{name}' 34 self.name, 43 to the format string are accessed by name. 51 - name: shield name 60 parser.add_argument('-n', '--name', dest='name_re', 83 if name_re is not None and not name_re.search(shield.name): 85 self.inf(args.format.format(name=shield.name, dir=shield.dir))
|
/Zephyr-latest/subsys/tracing/include/ |
D | tracing_backend.h | 40 const char *name; member 47 * @param _name Instance name. 52 .name = STRINGIFY(_name), \ 86 * @brief Get tracing backend based on the name of 89 * @param name Name of wanted tracing backend. 93 static inline struct tracing_backend *tracing_backend_get(char *name) in tracing_backend_get() argument 96 if (strcmp(backend->name, name) == 0) { in tracing_backend_get()
|
/Zephyr-latest/scripts/schemas/ |
D | board-schema.yml | 9 # information like: name, vendor, socs, variants. 16 name: 32 name: 42 name: 43 required: false # Note: either name or extend is required, but that is handled in python 45 desc: Name of the board 49 desc: Full name of the board. Typically set to the commercial name of the board. 51 required: false # Note: either name or extend is required, but that is handled in python 78 name: 82 required: false # Required for name:, but not for extend. [all …]
|
/Zephyr-latest/include/zephyr/tracing/ |
D | tracing_syscall.h | 26 * @param name Syscall name as a token (ex: k_thread_create) 29 #define sys_port_trace_syscall_enter(id, name, ...) argument 34 * @param name Syscall name as a token (ex: k_thread_create) 38 #define sys_port_trace_syscall_exit(id, name, ...) argument
|
/Zephyr-latest/arch/arm/include/cortex_m/ |
D | tz_ns.h | 26 * @brief Macro for "sandwiching" a function call (@p name) between two other 32 * exactly like the wrapped function (@p name), except that the preface function 37 * @param name The main function, i.e. the function to wrap. This function 49 #define __TZ_WRAP_FUNC_RAW(preface, name, postface, store_lr, load_lr) \ argument 51 __asm__ volatile(".global " #name "; .type " #name ", %function"); \ 57 "bl " #name "\n\t" \ 63 * @brief Macro for "sandwiching" a function call (@p name) in two other calls 95 #define __TZ_WRAP_FUNC(preface, name, postface) \ argument 96 __TZ_WRAP_FUNC_RAW(preface, name, postface, "push {r4, lr}", "pop {r4, pc}") 120 * @param name The desired name of the safe function. This assumes there is a [all …]
|
/Zephyr-latest/subsys/ipc/ipc_service/backends/ |
D | ipc_icmsg_me_follower.c | 25 char name[EP_NAME_LEN]; member 37 const struct backend_data_t *data, const char *name, size_t len) in get_ept_cached_loc() argument 43 if (strncmp(data->ept_disc_loc_cache[i]->name, name, in get_ept_cached_loc() 53 struct backend_data_t *data, const char *name, size_t len) in get_ept_cached_rmt() argument 58 if (strncmp(data->ept_disc_rmt_cache[i].name, name, in get_ept_cached_rmt() 60 strlen(data->ept_disc_rmt_cache[i].name) == len) { in get_ept_cached_rmt() 80 static int cache_ept_rmt(struct backend_data_t *data, const char *name, in cache_ept_rmt() argument 84 if (!strlen(data->ept_disc_rmt_cache[i].name)) { in cache_ept_rmt() 87 strncpy(data->ept_disc_rmt_cache[i].name, name, in cache_ept_rmt() 89 data->ept_disc_rmt_cache[i].name[copy_len] = '\0'; in cache_ept_rmt() [all …]
|
/Zephyr-latest/boards/mediatek/ |
D | twister.yaml | 12 name: MediaTek MT8195 Audio DSP 14 name: MediaTek MT8188 Audio DSP 16 name: MediaTek MT8186 Audio DSP 18 name: MediaTek MT8196 Audio DSP
|
/Zephyr-latest/soc/nxp/rw/ |
D | soc.yml | 2 - name: nxp_rw 4 - name: rw61x 6 - name: rw612 7 - name: rw610
|
/Zephyr-latest/tests/drivers/clock_control/pwm_clock/src/ |
D | main.c | 24 clk_dev->name); in pwm_clock_setup() 28 clk_dev->name, ret); in pwm_clock_setup() 32 clk_dev->name, clock_rate_dt, clock_rate); in pwm_clock_setup() 35 zassert_equal(0, ret, "%s: Unexpected err (%d) from clock_control_on", clk_dev->name, ret); in pwm_clock_setup() 47 clk_dev->name, ret); in ZTEST() 57 clk_dev->name, ret); in ZTEST() 63 clk_dev->name, ret); in ZTEST() 67 clk_dev->name, ret); in ZTEST() 70 "%s: Clock rate mismatch. Expected %dHz Fetched %dHz", clk_dev->name, in ZTEST()
|
/Zephyr-latest/include/zephyr/ |
D | bindesc.h | 107 /** The name of the host that compiled the image */ 110 /** The C compiler name */ 116 /** The C++ compiler name */ 157 * Utility macro to get the name of a bindesc entry 159 #define BINDESC_NAME(name) bindesc_entry_##name argument 162 #define __BINDESC_ENTRY_DEFINE(name) \ argument 163 __aligned(BINDESC_ALIGNMENT) const struct bindesc_entry BINDESC_NAME(name) \ 164 __in_section(_bindesc_entry, static, name) __used __noasan 177 * @note The defined string is not static, so its name must not collide with 180 * @param name Name of the descriptor [all …]
|
/Zephyr-latest/include/zephyr/stats/ |
D | stats.h | 19 * provide the optional ability to name statistics. 24 * you name the statistics themselves. 81 * @param group__ The name to assign to the structure tag. 99 * @param group__ The stats group struct name. 108 * @param var__ The name to assign to the entry. 115 * @param var__ The name to assign to the entry. 122 * @param var__ The name to assign to the entry. 129 * @param var__ The name to assign to the entry. 199 * @param name__ The name of the statistics group to register. 200 * This name must be unique among all [all …]
|
/Zephyr-latest/dts/bindings/regulator/ |
D | nordic,nrf53x-regulator-hv.yaml | 10 - name: base.yaml 11 - name: regulator.yaml 13 - regulator-name 19 regulator-name:
|
D | nordic,nrf52x-regulator-hv.yaml | 10 - name: base.yaml 11 - name: regulator.yaml 13 - regulator-name 19 regulator-name:
|
D | nordic,nrf5x-regulator.yaml | 10 - name: base.yaml 11 - name: regulator.yaml 13 - regulator-name 20 regulator-name:
|
/Zephyr-latest/subsys/mgmt/mcumgr/grp/stat_mgmt/src/ |
D | stat_mgmt.c | 31 stats_mgmt_count_plus_one(struct stats_hdr *hdr, void *arg, const char *name, uint16_t off) in stats_mgmt_count_plus_one() argument 55 stat_mgmt_walk_cb(struct stats_hdr *hdr, void *arg, const char *name, uint16_t off); 63 stat_mgmt_walk_cb(struct stats_hdr *hdr, void *arg, const char *name, uint16_t off) in stat_mgmt_walk_cb() argument 86 entry.name = name; in stat_mgmt_walk_cb() 113 bool ok = zcbor_tstr_put_term(zse, entry->name, CONFIG_MCUMGR_GRP_STAT_MAX_NAME_LEN) && in stat_mgmt_cb_encode() 131 struct zcbor_string name = { 0 }; in stat_mgmt_show() local 134 ZCBOR_MAP_DECODE_KEY_DECODER("name", zcbor_tstr_decode, &name), in stat_mgmt_show() 139 if (!ok || name.len == 0 || name.len >= ARRAY_SIZE(stat_name)) { in stat_mgmt_show() 143 memcpy(stat_name, name.value, name.len); in stat_mgmt_show() 144 stat_name[name.len] = '\0'; in stat_mgmt_show() [all …]
|
/Zephyr-latest/.github/workflows/ |
D | pylib_tests.yml | 4 name: Misc. Pylib Scripts TestSuite 24 name: Misc. Pylib Unit Tests 31 - name: checkout 33 - name: Set up Python ${{ matrix.python-version }} 37 - name: cache-pip-linux 45 - name: install-packages 48 - name: Run pytest for build_helpers
|
D | twister_tests.yml | 4 name: Twister TestSuite 31 name: Twister Unit Tests 38 - name: checkout 40 - name: Set up Python ${{ matrix.python-version }} 44 - name: cache-pip-linux 52 - name: install-packages 55 - name: Run pytest for twisterlib 62 - name: Run pytest for pytest-twister-harness
|
D | assigner.yml | 1 name: Pull Request Assigner 20 name: Pull Request Assignment 25 - name: Install Python dependencies 29 - name: Check out source code 32 - name: Run assignment script 38 FLAGS+=" -r ${{ github.event.repository.name }}"
|
/Zephyr-latest/lib/posix/options/ |
D | uname.c | 45 int uname(struct utsname *name) in uname() argument 47 memcpy(name, &z_name, sizeof(*name)); in uname() 49 strncpy(name->nodename, net_hostname_get(), sizeof(name->nodename)); in uname() 50 name->nodename[sizeof(name->nodename) - 1] = '\0'; in uname()
|
/Zephyr-latest/doc/develop/west/ |
D | manifest.rst | 69 name as a manifest revision, at the cost of being able to bisect 115 Each ``remotes`` element has a name and a "URL base". These are used to form 127 - name: remote1 129 - name: remote2 141 * - ``name`` 142 - Mandatory; a unique name for the remote. 160 repositories in the west workspace. Every project has a unique name. You can 176 - name: proj1 180 - name: proj2 187 - name: proj3 [all …]
|
/Zephyr-latest/drivers/usb_c/tcpc/ |
D | tcpci.c | 22 .name = "VENDOR_ID", 27 .name = "PRODUCT_ID", 32 .name = "DEVICE_ID", 37 .name = "USBTYPEC_REV", 42 .name = "USBPD_REV_VER", 47 .name = "PD_INTERFACE_REV", 52 .name = "ALERT", 57 .name = "ALERT_MASK", 62 .name = "POWER_STATUS_MASK", 67 .name = "FAULT_STATUS_MASK", [all …]
|
/Zephyr-latest/include/zephyr/linker/ |
D | linker-tool-lld.h | 34 * @param name Name of the output section 39 #define SECTION_PROLOGUE(name, options, align) \ argument 40 name options : align 53 * @param name Name of the output section 58 #define SECTION_DATA_PROLOGUE(name, options, align) \ argument 59 SECTION_PROLOGUE(name, options, align)
|
/Zephyr-latest/tests/subsys/llext/src/ |
D | align_ext.c | 22 #define ALIGNED_ENTRY(name, n) \ argument 23 const int name ## _ ## n __aligned(n) = n / 2 + 1 36 #define ALIGNED_SECT_ENTRY(name, n) \ argument 37 Z_GENERIC_SECTION(name ## _sect_ ## n) ALIGNED_ENTRY(name, n) 50 #define ASSERT_ENTRY(name, n) \ argument 51 zassert_equal(name ## _ ## n, n / 2 + 1); \ 52 zassert_true(IS_ALIGNED(&name ## _ ## n, n))
|
/Zephyr-latest/scripts/tests/twister/ |
D | test_platform.py | 30 'name': 'dummy empty', 77 - name: nsim 86 'name': 'dummy full', 100 'simulators': [Simulator({'name': 'nsim', 'exec': 'nsimdrv'})], 200 - name: p1e1 203 - name: s1 204 - name: p1e2 207 - name: s1 220 - name: p2 223 - name: s1 [all …]
|