/Zephyr-latest/subsys/mgmt/osdp/src/ |
D | osdp_cp.c | 80 sys_slist_append(&pd->cmd.queue, &cmd->node); in cp_cmd_enqueue() 85 sys_snode_t *node; in cp_cmd_dequeue() local 87 node = sys_slist_peek_head(&pd->cmd.queue); in cp_cmd_dequeue() 88 if (node == NULL) { in cp_cmd_dequeue() 91 sys_slist_remove(&pd->cmd.queue, NULL, node); in cp_cmd_dequeue() 92 *cmd = CONTAINER_OF(node, struct osdp_cmd, node); in cp_cmd_dequeue()
|
/Zephyr-latest/kernel/ |
D | mmu.c | 401 sys_sfnode_t *node; in free_page_frame_list_get() local 404 node = sys_sflist_get(&free_page_frame_list); in free_page_frame_list_get() 405 if (node != NULL) { in free_page_frame_list_get() 407 pf = CONTAINER_OF(node, struct k_mem_page_frame, node); in free_page_frame_list_get() 422 sys_sfnode_init(&pf->node, K_MEM_PAGE_FRAME_FREE); in free_page_frame_list_put() 423 sys_sflist_append(&free_page_frame_list, &pf->node); in free_page_frame_list_put()
|
/Zephyr-latest/subsys/bluetooth/host/ |
D | gatt.c | 1224 sys_slist_append(&db, &svc->node); in gatt_insert() 1229 SYS_SLIST_FOR_EACH_CONTAINER(&db, tmp, node) { in gatt_insert() 1232 sys_slist_insert(&db, &prev->node, &svc->node); in gatt_insert() 1234 sys_slist_prepend(&db, &svc->node); in gatt_insert() 1256 last = SYS_SLIST_PEEK_TAIL_CONTAINER(&db, last, node); in gatt_register() 1594 sys_slist_append(&callback_list, &cb->node); in bt_gatt_cb_register() 1675 if (!sys_slist_find_and_remove(&db, &svc->node)) { in gatt_unregister() 1784 sys_snode_t *node; in bt_gatt_service_is_registered() local 1787 SYS_SLIST_FOR_EACH_NODE(&db, node) { in bt_gatt_service_is_registered() 1788 if (&svc->node == node) { in bt_gatt_service_is_registered() [all …]
|
D | conn.c | 286 const sys_snode_t *node = sys_slist_get_not_empty(&conn->tx_complete); in tx_notify_process() local 288 tx = CONTAINER_OF(node, struct bt_conn_tx, node); in tx_notify_process() 740 sys_slist_append(&conn->tx_pending, &tx->node); in send_buf() 757 (void)sys_slist_find_and_remove(&conn->tx_pending, &tx->node); in send_buf() 906 sys_snode_t *node = sys_slist_peek_head(&bt_dev.le.conn_ready); in get_conn_ready() local 908 if (node == NULL) { in get_conn_ready() 918 struct bt_conn *conn = CONTAINER_OF(node, struct bt_conn, _conn_ready); in get_conn_ready() 951 __ASSERT_NO_MSG(s == node); in get_conn_ready() 1125 sys_snode_t *node; in process_unack_tx() local 1127 node = sys_slist_get(&conn->tx_pending); in process_unack_tx() [all …]
|
/Zephyr-latest/drivers/interrupt_controller/ |
D | intc_miwu.c | 107 SYS_SLIST_FOR_EACH_CONTAINER_SAFE(cb_list, cb, tmp, node) { in intc_miwu_dispatch_isr() 390 if (!sys_slist_find_and_remove(cb_list, &cb->node)) { in npcx_miwu_manage_callback() 398 sys_slist_prepend(cb_list, &cb->node); in npcx_miwu_manage_callback()
|
/Zephyr-latest/subsys/net/l2/openthread/ |
D | openthread.c | 244 SYS_SLIST_FOR_EACH_CONTAINER_SAFE(&ot_context->state_change_cbs, entry, next, node) { in ot_state_changed_handler() 678 sys_slist_append(&ot_context->state_change_cbs, &cb->node); in openthread_state_changed_cb_register() 694 removed = sys_slist_find_and_remove(&ot_context->state_change_cbs, &cb->node); in openthread_state_changed_cb_unregister()
|
/Zephyr-latest/subsys/net/lib/ptp/ |
D | msg.c | 189 sys_slist_append(&msg->tlvs, &tlv_container->node); in msg_tlv_post_recv() 202 tlv_container = CONTAINER_OF(iter, struct ptp_tlv_container, node); in msg_tlv_free() 211 SYS_SLIST_FOR_EACH_CONTAINER(&msg->tlvs, tlv_container, node) { in msg_tlv_pre_send()
|
/Zephyr-latest/boards/actinius/icarus_som_dk/doc/ |
D | index.rst | 54 | # | Label | Description | Device-tree node | 131 | nRF9160 pin | Function | Device-tree node | 186 the ``sim`` property in the ``sim_select`` node.
|
/Zephyr-latest/drivers/gpio/ |
D | gpio_imx.c | 268 #define PINMUX_INIT(node, prop, idx) MCUX_IMX_PINMUX(DT_PROP_BY_IDX(node, prop, idx)), argument
|
D | gpio_mcux_igpio.c | 362 #define PINMUX_INIT(node, prop, idx) MCUX_IMX_PINMUX(DT_PROP_BY_IDX(node, prop, idx)), argument
|
/Zephyr-latest/boards/nordic/nrf9280pdk/ |
D | nrf9280pdk_nrf9280_cpuapp.dts | 14 /delete-node/ &cpurad_cpusys_ipc; 15 /delete-node/ &cpusec_cpurad_ipc;
|
/Zephyr-latest/dts/arm/st/f4/ |
D | stm32f412.dtsi | 9 /delete-node/ &dac1; 10 /delete-node/ &rng;
|
/Zephyr-latest/samples/subsys/zbus/hello_world/src/ |
D | main.c | 118 SYS_SLIST_FOR_EACH_CONTAINER_SAFE(&chan->data->observers, obs_nd, tmp, node) { in print_channel_data_iterator()
|
/Zephyr-latest/drivers/net/ |
D | nsos.h | 168 int nsos_adapt_getaddrinfo(const char *node, const char *service,
|
/Zephyr-latest/boards/shields/adafruit_winc1500/doc/ |
D | index.rst | 50 for Arduino connectors and defines node aliases for SPI and GPIO interfaces
|
/Zephyr-latest/samples/subsys/fs/fs_sample/boards/ |
D | nrf52840dk_nrf52840_ram_disk_region.overlay | 11 /delete-node/ &sram0;
|
/Zephyr-latest/boards/st/stm32wb5mmg/ |
D | stm32wb5mmg.dts | 41 /* To select another clock, enable the node */
|
/Zephyr-latest/boards/infineon/cy8cproto_063_ble/ |
D | cy8cproto_063_ble.dts | 33 /delete-node/ cpu@0;
|
/Zephyr-latest/subsys/net/lib/shell/ |
D | virtual.c | 70 ctx, tmp, node) { in attached_iface_cb()
|
/Zephyr-latest/boards/nxp/lpcxpresso55s69/ |
D | lpcxpresso55s69_lpc55s69_cpu0_ns.dts | 18 /delete-node/ cpu@1;
|
/Zephyr-latest/subsys/retention/ |
D | Kconfig | 55 byte must be created and set as the "zephyr,boot-mode" chosen node
|
/Zephyr-latest/drivers/display/ |
D | Kconfig.mcux_elcdif | 51 Use the PXP for display rotation. This requires the LCDIF node 52 have a "nxp,pxp" devicetree property pointing to the PXP device node.
|
/Zephyr-latest/boards/nordic/nrf54h20dk/ |
D | nrf54h20dk_nrf54h20_cpuapp.dts | 12 /delete-node/ &cpurad_cpusys_ipc; 13 /delete-node/ &cpusec_cpurad_ipc;
|
/Zephyr-latest/boards/nxp/mimxrt1050_evk/ |
D | mimxrt1050_evk.dtsi | 43 * This node describes the GPIO pins of the parallel FPC interface, 56 * This node describes the GPIO pins of the I2C display FPC interface,
|
/Zephyr-latest/dts/arm/nordic/ |
D | nrf52811.dtsi | 136 * This i2c node can be TWI, TWIM, or TWIS, 155 * This spi node can be SPI, SPIM, or SPIS, 173 * This spi node can be SPI, SPIM, or SPIS,
|