/Zephyr-Core-3.6.0/subsys/net/lib/zperf/ |
D | zperf_session.c | 26 struct session *active = NULL; in get_session() local 38 while (!active && i < SESSION_MAX) { in get_session() 47 active = ptr; in get_session() 57 active = ptr; in get_session() 71 if (!active && free) { in get_session() 72 active = free; in get_session() 75 active->port = addr4->sin_port; in get_session() 76 active->ip.family = AF_INET; in get_session() 77 net_ipaddr_copy(&active->ip.in_addr, &addr4->sin_addr); in get_session() 80 active->port = addr6->sin6_port; in get_session() [all …]
|
/Zephyr-Core-3.6.0/subsys/bluetooth/audio/ |
D | csip_set_coordinator.c | 82 } active; variable 111 (void)memset(&active, 0, sizeof(active)); in active_members_reset() 179 member = active.members[active.members_handled]; in get_next_active_instance() 181 svc_inst = lookup_instance_by_set_info(member, active.info); in get_next_active_instance() 183 LOG_DBG("Failed to lookup instance by set_info %p", active.info); in get_next_active_instance() 198 svc_inst_1 = lookup_instance_by_set_info(member_1, active.info); in member_rank_compare_asc() 199 svc_inst_2 = lookup_instance_by_set_info(member_2, active.info); in member_rank_compare_asc() 227 (void)memcpy(active.members, members, count * sizeof(members[0U])); in active_members_store_ordered() 228 active.members_count = count; in active_members_store_ordered() 229 active.info = info; in active_members_store_ordered() [all …]
|
/Zephyr-Core-3.6.0/subsys/fs/fcb/ |
D | fcb_append.c | 63 struct fcb_entry *active; in fcb_append() local 84 active = &fcb->f_active; in fcb_append() 85 if (active->fe_elem_off + len + cnt > active->fe_sector->fs_size) { in fcb_append() 101 rc = fcb_flash_write(fcb, active->fe_sector, active->fe_elem_off, tmp_str, cnt); in fcb_append() 106 append_loc->fe_sector = active->fe_sector; in fcb_append() 107 append_loc->fe_elem_off = active->fe_elem_off; in fcb_append() 108 append_loc->fe_data_off = active->fe_elem_off + cnt; in fcb_append() 110 active->fe_elem_off = append_loc->fe_data_off + len; in fcb_append()
|
/Zephyr-Core-3.6.0/boards/shields/st_b_lcd40_dsi1_mb1166/boards/ |
D | stm32h747i_disco_m7.overlay | 35 hsync-active = <0>; 36 vsync-active = <0>; 37 de-active = <0>; 38 pixelclk-active = <0>; 76 vs-active-high; 77 hs-active-high; 78 de-active-high;
|
/Zephyr-Core-3.6.0/tests/subsys/logging/log_backend_init/src/ |
D | main.c | 24 bool active; member 68 context->active = true; in expire_cb() 84 return context->active ? 0 : -EBUSY; in backend_is_ready() 134 zassert_false(context1.active); in ZTEST() 135 zassert_false(context2.active); in ZTEST() 139 zassert_true(context1.active); in ZTEST() 140 zassert_true(context2.active); in ZTEST()
|
/Zephyr-Core-3.6.0/subsys/logging/ |
D | log_cache.c | 24 sys_slist_init(&cache->active); in log_cache_init() 53 SYS_SLIST_FOR_EACH_CONTAINER(&cache->active, entry, node) { in log_cache_get() 61 if (&entry->node == sys_slist_peek_tail(&cache->active)) { in log_cache_get() 69 sys_slist_remove(&cache->active, prev_node, &entry->node); in log_cache_get() 70 sys_slist_prepend(&cache->active, &entry->node); in log_cache_get() 80 sys_slist_remove(&cache->active, prev_node, &entry->node); in log_cache_get() 95 sys_slist_prepend(&cache->active, &entry->node); in log_cache_put()
|
/Zephyr-Core-3.6.0/samples/userspace/prod_consumer/src/ |
D | sample_driver.h | 25 bool active); 59 __syscall int sample_driver_state_set(const struct device *dev, bool active); 62 bool active) in z_impl_sample_driver_state_set() argument 66 return api->state_set(dev, active); in z_impl_sample_driver_state_set()
|
D | sample_driver_handlers.c | 11 int z_vrfy_sample_driver_state_set(const struct device *dev, bool active) in z_vrfy_sample_driver_state_set() argument 17 return z_impl_sample_driver_state_set(dev, active); in z_vrfy_sample_driver_state_set()
|
D | sample_driver_foo.c | 52 static int sample_driver_foo_state_set(const struct device *dev, bool active) in sample_driver_foo_state_set() argument 56 LOG_DBG("%s(%p, %d)", __func__, dev, active); in sample_driver_foo_state_set() 59 if (active) { in sample_driver_foo_state_set()
|
/Zephyr-Core-3.6.0/tests/subsys/pm/policy_api/src/ |
D | main.c | 80 bool active; in ZTEST() local 86 active = pm_policy_state_lock_is_active(PM_STATE_RUNTIME_IDLE, PM_ALL_SUBSTATES); in ZTEST() 87 zassert_false(active); in ZTEST() 97 active = pm_policy_state_lock_is_active(PM_STATE_RUNTIME_IDLE, PM_ALL_SUBSTATES); in ZTEST() 98 zassert_true(active); in ZTEST() 108 active = pm_policy_state_lock_is_active(PM_STATE_RUNTIME_IDLE, PM_ALL_SUBSTATES); in ZTEST() 109 zassert_false(active); in ZTEST() 118 zassert_false(active); in ZTEST() 128 active = pm_policy_state_lock_is_active(PM_STATE_RUNTIME_IDLE, 1); in ZTEST() 129 zassert_true(active); in ZTEST() [all …]
|
/Zephyr-Core-3.6.0/tests/bluetooth/audio/cap_commander/uut/ |
D | vocs.c | 12 bool active; member 41 if (!vocs_clients[i].active) { in bt_vocs_client_free_instance_get() 42 vocs_clients[i].active = true; in bt_vocs_client_free_instance_get() 73 vocs_clients[i].active = false; in mock_bt_vocs_cleanup()
|
/Zephyr-Core-3.6.0/tests/drivers/uart/uart_pm/src/ |
D | main.c | 15 static void polling_verify(const struct device *dev, bool is_async, bool active) in polling_verify() argument 39 if (active) { in polling_verify() 63 static bool async_verify(const struct device *dev, bool active) in async_verify() argument 75 if (!active) { in async_verify() 106 static void communication_verify(const struct device *dev, bool active) in communication_verify() argument 108 bool is_async = async_verify(dev, active); in communication_verify() 110 polling_verify(dev, is_async, active); in communication_verify()
|
/Zephyr-Core-3.6.0/tests/lib/p4workq/src/ |
D | main.c | 25 bool active; member 47 item->active = true; in stress_sub() 81 &items[ii] != titem && !items[ii].active) { in stress_handler() 90 titem->active = false; in stress_handler() 200 bool active = add_new_item(pri); in ZTEST() local 202 if (!active) { in ZTEST()
|
/Zephyr-Core-3.6.0/drivers/can/ |
D | Kconfig.mcux | 32 int "Maximum number of message buffers for concurrent active instances" 39 Defines maximum number of message buffers for concurrent active instances. 42 int "Maximum number of concurrent active RX filters" 51 Defines maximum number of concurrent active RX filters
|
/Zephyr-Core-3.6.0/boards/shields/rk055hdmipi4m/ |
D | rk055hdmipi4m.overlay | 49 hsync-active = <0>; 50 vsync-active = <0>; 51 de-active = <1>; 52 pixelclk-active = <1>;
|
/Zephyr-Core-3.6.0/boards/shields/rk055hdmipi4ma0/ |
D | rk055hdmipi4ma0.overlay | 49 hsync-active = <0>; 50 vsync-active = <0>; 51 de-active = <1>; 52 pixelclk-active = <1>;
|
/Zephyr-Core-3.6.0/include/zephyr/logging/ |
D | log_backend.h | 85 bool active; member 116 .active = false, \ 282 backend->cb->active = true; in log_backend_activate() 294 backend->cb->active = false; in log_backend_deactivate() 308 return backend->cb->active; in log_backend_is_active()
|
/Zephyr-Core-3.6.0/subsys/net/lib/lwm2m/ |
D | ipso_buzzer.c | 56 bool active; /* digital state */ member 107 if (buzzer->active) { in start_buzzer() 134 if (!buzzer->active) { in stop_buzzer() 159 if (!buzzer_data[i].onoff && buzzer_data[i].active) { in onoff_post_write_cb() 161 } else if (buzzer_data[i].onoff && !buzzer_data[i].active) { in onoff_post_write_cb() 229 res_inst[avail], j, &buzzer_data[avail].active, in buzzer_create() 230 sizeof(buzzer_data[avail].active)); in buzzer_create()
|
D | ipso_timer.c | 63 bool active; member 111 if (timer->timer_mode == TIMER_MODE_OFF || timer->active || in start_timer() 141 if (!timer->active) { in stop_timer() 167 if (timer_data[i].active) { in remaining_time_read_cb() 192 if (timer_data[i].active) { in cumulative_time_read_cb() 231 if (!timer_data[i].enabled && timer_data[i].active) { in enabled_post_write_cb() 334 res_inst[avail], j, &timer_data[avail].active, in timer_inst_create() 335 sizeof(timer_data[avail].active)); in timer_inst_create()
|
/Zephyr-Core-3.6.0/drivers/audio/ |
D | dmic_nrfx_pdm.c | 25 volatile bool active; member 75 if (drv_data->active) { in event_handler() 76 drv_data->active = false; in event_handler() 285 if (drv_data->active) { in dmic_nrfx_pdm_configure() 400 drv_data->active = false; in start_transfer() 416 if (!drv_data->active) { in clock_started_callback() 428 drv_data->active = true; in trigger_start() 438 drv_data->active = false; in trigger_start() 461 if (drv_data->active) { in dmic_nrfx_pdm_trigger() 472 } else if (!drv_data->active) { in dmic_nrfx_pdm_trigger()
|
/Zephyr-Core-3.6.0/subsys/bluetooth/controller/coex/ |
D | readme.rst | 12 …ce, the coexistence ticker utilizes a single pin called BLE_GRANT, which active level (high or low… 22 …active (such as 1 for the nRF9160). state the implementation starts a ticker job, which in predefi…
|
/Zephyr-Core-3.6.0/drivers/sensor/max30101/ |
D | Kconfig | 55 active. 60 Set to operate in SpO2 mode. The red and IR LED channels are active. 66 channels are active. 87 pulse/conversion per active LED channel. In SpO2 mode, these means 148 Set which LED and pulse amplitude are active in time slot 1. 163 Set which LED and pulse amplitude are active in time slot 2. 178 Set which LED and pulse amplitude are active in time slot 3. 193 Set which LED and pulse amplitude are active in time slot 4.
|
/Zephyr-Core-3.6.0/doc/_static/css/ |
D | dark.css | 17 --navbar-background-color-active: #111417; 20 --navbar-current-background-color-active: #222528; 27 --navbar-scrollbar-active-color: #7929d2; 32 --link-color-active: #6ad; 48 --search-active-color: #202326;
|
D | light.css | 16 --navbar-background-color-active: #212d51; 19 --navbar-current-background-color-active: #131e3b; 26 --navbar-scrollbar-active-color: #7929d2; 31 --link-color-active: #105078; 47 --search-active-color: #efefef;
|
/Zephyr-Core-3.6.0/samples/drivers/w1/scanner/ |
D | ds2485.overlay | 8 active-pull-threshold = "low";
|