/Zephyr-latest/drivers/sensor/st/vl53l0x/ |
D | vl53l0x.c | 74 dev->name); in vl53l0x_setup_single_shot() 83 dev->name); in vl53l0x_setup_single_shot() 92 dev->name); in vl53l0x_setup_single_shot() 100 dev->name); in vl53l0x_setup_single_shot() 109 dev->name); in vl53l0x_setup_single_shot() 118 dev->name); in vl53l0x_setup_single_shot() 128 dev->name); in vl53l0x_setup_single_shot() 137 dev->name); in vl53l0x_setup_single_shot() 145 dev->name); in vl53l0x_setup_single_shot() 154 dev->name); in vl53l0x_setup_single_shot() [all …]
|
/Zephyr-latest/subsys/settings/src/ |
D | settings_nvs.c | 33 static int settings_nvs_save(struct settings_store *cs, const char *name, 79 static void settings_nvs_cache_add(struct settings_nvs *cf, const char *name, in settings_nvs_cache_add() argument 82 uint16_t name_hash = crc16_ccitt(0xffff, name, strlen(name)); in settings_nvs_cache_add() 90 static uint16_t settings_nvs_cache_match(struct settings_nvs *cf, const char *name, in settings_nvs_cache_match() argument 93 uint16_t name_hash = crc16_ccitt(0xffff, name, strlen(name)); in settings_nvs_cache_match() 112 if (strcmp(name, rdname)) { in settings_nvs_cache_match() 129 char name[SETTINGS_MAX_NAME_LEN + SETTINGS_EXTRA_LEN + 1]; in settings_nvs_load() local 154 * entries one for the setting's name and one with the in settings_nvs_load() 157 rc1 = nvs_read(&cf->cf_nvs, name_id, &name, sizeof(name)); in settings_nvs_load() 178 * NVS entry for its name or value is either missing in settings_nvs_load() [all …]
|
/Zephyr-latest/tests/drivers/counter/counter_basic_api/src/ |
D | test_counter.c | 192 "%s: Setting top value to default failed", dev->name); in counter_tear_down_instance() 195 zassert_equal(0, err, "%s: Counter failed to stop", dev->name); in counter_tear_down_instance() 209 TC_PRINT("Testing %s\n", devices[i]->name); in test_all_instances() 212 TC_PRINT("Skipped for %s\n", devices[i]->name); in test_all_instances() 248 "%s: Unexpected callback", dev->name); in top_handler() 277 zassert_equal(0, err, "%s: Counter failed to start", dev->name); in test_set_top_value_with_alarm_instance() 282 zassert_true(err == 0, "%s: Counter read failed (err: %d)", dev->name, in test_set_top_value_with_alarm_instance() 290 zassert_true(err == 0, "%s: Counter should progress", dev->name); in test_set_top_value_with_alarm_instance() 294 dev->name, err); in test_set_top_value_with_alarm_instance() 302 dev->name, top_handler_cnt); in test_set_top_value_with_alarm_instance() [all …]
|
/Zephyr-latest/tests/subsys/settings/src/ |
D | settings_test_commit.c | 12 char name[80]; in ZTEST() local 15 strcpy(name, "bar"); in ZTEST() 16 rc = settings_runtime_commit(name); in ZTEST() 27 strcpy(name, "myfoo"); in ZTEST() 28 rc = settings_runtime_commit(name); in ZTEST()
|
D | settings_test_getset_int.c | 12 char name[80]; in ZTEST() local 18 strcpy(name, "myfoo/mybar"); in ZTEST() 19 rc = settings_runtime_set(name, &small_value, sizeof(small_value)); in ZTEST() 26 strcpy(name, "myfoo/mybar"); in ZTEST() 27 rc = settings_runtime_get(name, tmp, sizeof(tmp)); in ZTEST()
|
/Zephyr-latest/include/zephyr/devicetree/ |
D | io-channels.h | 55 * io-channels property by name 74 * @param name lowercase-and-underscores name of an io-channels element 79 #define DT_IO_CHANNELS_CTLR_BY_NAME(node_id, name) \ argument 80 DT_PHANDLE_BY_NAME(node_id, io_channels, name) 105 * property by name 107 * @param name lowercase-and-underscores name of an io-channels element 112 #define DT_INST_IO_CHANNELS_CTLR_BY_NAME(inst, name) \ argument 113 DT_IO_CHANNELS_CTLR_BY_NAME(DT_DRV_INST(inst), name) 165 * @brief Get an io-channels specifier input cell by name 198 * @param name lowercase-and-underscores name of an io-channels element [all …]
|
/Zephyr-latest/tests/subsys/fs/ext2/src/ |
D | utils.c | 35 const char *name = (const char *)id; in wipe_partition() local 38 TC_PRINT("Wiping %s\n", name); in wipe_partition() 40 rc = disk_access_init(name); in wipe_partition() 45 rc = sectors_info(name, §or_size, §or_count); in wipe_partition() 59 rc = disk_access_write(name, zeros, start_sector + i, 1); in wipe_partition() 70 const char *name = (const char *)id; in get_partition_size() local 73 sectors_info(name, §or_size, §or_count); in get_partition_size()
|
/Zephyr-latest/subsys/tracing/test/ |
D | tracing_test_syscall.h | 15 #define sys_port_trace_syscall_enter(id, name, ...) \ argument 16 sys_trace_syscall_enter(id, #name) 18 #define sys_port_trace_syscall_exit(id, name, ...) \ argument 19 sys_trace_syscall_exit(id, #name)
|
/Zephyr-latest/subsys/retention/ |
D | blinfo_mcuboot.c | 73 /* Return IO error as a valid key name was provided but the TLV was not found in in blinfo_lookup() 80 static int blinfo_handle_get(const char *name, char *val, int val_len_max); 81 static int blinfo_handle_set(const char *name, size_t len, settings_read_cb read_cb, void *cb_arg); 84 .name = "blinfo", 89 static int blinfo_handle_get(const char *name, char *val, int val_len_max) in blinfo_handle_get() argument 97 if (settings_name_steq(name, "mode", &next) && !next) { in blinfo_handle_get() 99 } else if (settings_name_steq(name, "signature_type", &next) && !next) { in blinfo_handle_get() 101 } else if (settings_name_steq(name, "recovery", &next) && !next) { in blinfo_handle_get() 103 } else if (settings_name_steq(name, "running_slot", &next) && !next) { in blinfo_handle_get() 105 } else if (settings_name_steq(name, "bootloader_version", &next) && !next) { in blinfo_handle_get() [all …]
|
/Zephyr-latest/.github/workflows/ |
D | daily_test_version.yml | 4 name: Publish commit for daily testing 19 - name: Configure AWS Credentials 26 - name: install-pip 30 - name: checkout 35 - name: Upload to AWS S3
|
D | errno.yml | 1 name: Error numbers 16 - name: Apply container owner mismatch workaround 24 - name: checkout 27 - name: Environment Setup 31 - name: Run errno.py
|
D | twister_tests_blackbox.yml | 4 name: Twister BlackBox TestSuite 20 name: Twister Black Box Tests 30 - name: Apply Container Owner Mismatch Workaround 38 - name: Checkout 41 - name: Environment Setup 55 - name: Set Up Python ${{ matrix.python-version }} 60 - name: Go Into Venv 68 - name: Install Packages 72 - name: Run Pytest For Twister Black Box Tests
|
/Zephyr-latest/soc/openisa/rv32m1/ |
D | soc.yml | 2 - name: openisa_rv32m1 4 - name: zero_riscy 5 - name: ri5cy
|
/Zephyr-latest/soc/starfive/jh71xx/ |
D | soc.yml | 2 - name: starfive_jh71xx 4 - name: jh7100 5 - name: jh7110
|
/Zephyr-latest/soc/aspeed/ |
D | soc.yml | 2 - name: aspeed 4 - name: ast10x0 6 - name: ast1030
|
/Zephyr-latest/soc/intel/intel_socfpga_std/ |
D | soc.yml | 2 - name: intel_socfpga_std 4 - name: cyclonev 6 - name: cyclonev
|
/Zephyr-latest/soc/nuvoton/npcm/ |
D | soc.yml | 2 - name: npcm 4 - name: npcm4 6 - name: npcm400
|
/Zephyr-latest/soc/nuvoton/numicro/ |
D | soc.yml | 2 - name: numicro 4 - name: m48x 6 - name: m487
|
/Zephyr-latest/soc/andestech/ |
D | soc.yml | 2 - name: andes_v5 4 - name: ae350 6 - name: ae350
|
/Zephyr-latest/soc/snps/nsim/arc_v/ |
D | soc.yml | 2 - name: nsim_arc_v 4 - name: rmx 6 - name: rmx100
|
/Zephyr-latest/soc/telink/tlsr/ |
D | soc.yml | 2 - name: telink_tlsr 4 - name: tlsr951x 6 - name: tlsr9518
|
/Zephyr-latest/soc/nxp/layerscape/ |
D | soc.yml | 2 - name: nxp_layerscape 4 - name: ls1046a 6 - name: ls1046a
|
/Zephyr-latest/include/zephyr/drivers/usb/ |
D | udc_buf.h | 68 * @param name Buffer name 71 #define UDC_STATIC_BUF_DEFINE(name, size) \ argument 73 name[ROUND_UP(size, UDC_BUF_GRANULARITY)]; 87 #define UDC_HEAP_DEFINE(name, bytes, in_section) \ argument 89 kheap_##name[MAX(bytes, Z_HEAP_MIN_SIZE)]; \ 90 STRUCT_SECTION_ITERABLE(k_heap, name) = { \ 92 .init_mem = kheap_##name, \ 97 #define UDC_K_HEAP_DEFINE(name, size) \ argument 99 (UDC_HEAP_DEFINE(name, size, __nocache)), \ 100 (UDC_HEAP_DEFINE(name, size, __noinit))) [all …]
|
/Zephyr-latest/scripts/pylib/build_helpers/ |
D | domains.py | 37 name: 53 formatter = logging.Formatter('%(name)s - %(levelname)s - %(message)s') 72 d['name']: Domain(d['name'], d['build_dir']) 77 # must not name any domains that aren't listed under "domains". 109 def get_domain(self, name): argument 110 found = self._domains.get(name) 112 logger.critical(f'domain "{name}" not found, ' 127 name: str
|
/Zephyr-latest/subsys/emul/ |
D | emul.c | 17 const struct emul *emul_get_binding(const char *name) in emul_get_binding() argument 20 if (strcmp(emul_it->dev->name, name) == 0) { in emul_get_binding() 39 LOG_INF("Registering %d emulator(s) for %s", cfg->num_children, dev->name); in emul_init_for_bus() 41 const struct emul *emul = emul_get_binding(elp->dev->name); in emul_init_for_bus() 44 LOG_WRN("Cannot find emulator for '%s'", elp->dev->name); in emul_init_for_bus() 71 elp->dev->name, rc); in emul_init_for_bus() 103 elp->dev->name); in emul_init_for_bus() 107 LOG_WRN("Failed to register emulator for %s: %d", elp->dev->name, rc); in emul_init_for_bus()
|