Home
last modified time | relevance | path

Searched refs:node_p (Results 1 – 9 of 9) sorted by relevance

/device/soc/beken/bk7235/liteos_m/bk_sdk_armino/middleware/driver/rtc/
Daon_rtc_driver.c61 static void alarm_dump_node(alarm_node_t *node_p) in alarm_dump_node() argument
66 AON_RTC_LOGD("node_p=0x%x\r\n", node_p); in alarm_dump_node()
67 if(node_p) in alarm_dump_node()
69 AON_RTC_LOGD("next=0x%x\r\n", node_p->next); in alarm_dump_node()
70 AON_RTC_LOGD("name=%s\r\n", node_p->name); in alarm_dump_node()
71 AON_RTC_LOGD("period_tick=0x%x\r\n", node_p->period_tick); in alarm_dump_node()
72 AON_RTC_LOGD("period_cnt=%d\r\n", node_p->period_cnt); in alarm_dump_node()
73 AON_RTC_LOGD("start_tick=0x%x\r\n", node_p->start_tick); in alarm_dump_node()
74 AON_RTC_LOGD("expired_tick=0x%x\r\n", node_p->expired_tick); in alarm_dump_node()
125 static void aon_rtc_release_node(aon_rtc_id_t id, alarm_node_t *node_p) in aon_rtc_release_node() argument
[all …]
/device/board/kaihong/khdvk_3566b/wifi/bcmdhd_hdf/bcmdhd/include/
Dbcmutils.h1121 static INLINE void dll_init(dll_t *node_p) in dll_init() argument
1123 node_p->next_p = node_p; in dll_init()
1124 node_p->prev_p = node_p; in dll_init()
1138 static INLINE dll_t *dll_next_p(dll_t *node_p) in dll_next_p() argument
1140 return (node_p)->next_p; in dll_next_p()
1143 static INLINE dll_t *dll_prev_p(dll_t *node_p) in dll_prev_p() argument
1145 return (node_p)->prev_p; in dll_prev_p()
1153 static INLINE bool dll_end(dll_t *list_p, dll_t *node_p) in dll_end() argument
1155 return (list_p == node_p); in dll_end()
1167 static INLINE void dll_append(dll_t *list_p, dll_t *node_p) in dll_append() argument
[all …]
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/include/
Dbcmutils.h1145 dll_init(dll_t *node_p) in dll_init() argument
1147 node_p->next_p = node_p; in dll_init()
1148 node_p->prev_p = node_p; in dll_init()
1165 dll_next_p(dll_t *node_p) in dll_next_p() argument
1167 return (node_p)->next_p; in dll_next_p()
1171 dll_prev_p(dll_t *node_p) in dll_prev_p() argument
1173 return (node_p)->prev_p; in dll_prev_p()
1183 dll_end(dll_t *list_p, dll_t * node_p) in dll_end() argument
1185 return (list_p == node_p); in dll_end()
1199 dll_append(dll_t *list_p, dll_t *node_p) in dll_append() argument
[all …]
/device/board/isoftstone/zhiyuan/kernel/driver/drivers/net/wireless/bcmdhd/include/
Dbcmutils.h1201 dll_init(dll_t *node_p) in dll_init() argument
1203 node_p->next_p = node_p; in dll_init()
1204 node_p->prev_p = node_p; in dll_init()
1223 dll_next_p(dll_t *node_p) in dll_next_p() argument
1225 return (node_p)->next_p; in dll_next_p()
1230 dll_prev_p(dll_t *node_p) in dll_prev_p() argument
1232 return (node_p)->prev_p; in dll_prev_p()
1244 dll_end(dll_t *list_p, dll_t * node_p) in dll_end() argument
1246 return (list_p == node_p); in dll_end()
1261 dll_append(dll_t *list_p, dll_t *node_p) in dll_append() argument
[all …]
/device/board/isoftstone/yangfan/kernel/src/driv/net/rockchip_wlan/rkwifi/bcmdhd/include/
Dbcmutils.h1343 dll_init(dll_t *node_p) in dll_init() argument
1345 node_p->next_p = node_p; in dll_init()
1346 node_p->prev_p = node_p; in dll_init()
1363 BCMPOSTTRAPFN(dll_next_p)(dll_t *node_p) in BCMPOSTTRAPFN()
1365 return (node_p)->next_p; in BCMPOSTTRAPFN()
1369 BCMPOSTTRAPFN(dll_prev_p)(dll_t *node_p) in BCMPOSTTRAPFN()
1371 return (node_p)->prev_p; in BCMPOSTTRAPFN()
1381 BCMPOSTTRAPFN(dll_end)(dll_t *list_p, dll_t * node_p) in BCMPOSTTRAPFN()
1383 return (list_p == node_p); in BCMPOSTTRAPFN()
1397 BCMPOSTTRAPFN(dll_append)(dll_t *list_p, dll_t *node_p) in BCMPOSTTRAPFN()
[all …]
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/
Dbcmutils.c1406 dll_t * node_p = (dll_t *)elem_p; in dll_pool_free() local
1407 dll_prepend(&dll_pool_p->free_list, node_p); in dll_pool_free()
1414 dll_t * node_p = (dll_t *)elem_p; in dll_pool_free_tail() local
1415 dll_append(&dll_pool_p->free_list, node_p); in dll_pool_free_tail()
/device/board/isoftstone/zhiyuan/kernel/driver/drivers/net/wireless/bcmdhd/
Dbcmutils.c3924 dll_t * node_p = (dll_t *)elem_p; in dll_pool_free() local
3925 dll_prepend(&dll_pool_p->free_list, node_p); in dll_pool_free()
3933 dll_t * node_p = (dll_t *)elem_p; in dll_pool_free_tail() local
3934 dll_append(&dll_pool_p->free_list, node_p); in dll_pool_free_tail()
/device/board/kaihong/khdvk_3566b/wifi/bcmdhd_hdf/bcmdhd/
Dbcmutils.c1391 dll_t *node_p = (dll_t *)elem_p; in dll_pool_free() local
1392 dll_prepend(&dll_pool_p->free_list, node_p); in dll_pool_free()
1398 dll_t *node_p = (dll_t *)elem_p; in dll_pool_free_tail() local
1399 dll_append(&dll_pool_p->free_list, node_p); in dll_pool_free_tail()
/device/board/isoftstone/yangfan/kernel/src/driv/net/rockchip_wlan/rkwifi/bcmdhd/
Dbcmutils.c2424 dll_t * node_p = (dll_t *)elem_p; in BCMPOSTTRAPFN() local
2425 dll_prepend(&dll_pool_p->free_list, node_p); in BCMPOSTTRAPFN()
2432 dll_t * node_p = (dll_t *)elem_p; in dll_pool_free_tail() local
2433 dll_append(&dll_pool_p->free_list, node_p); in dll_pool_free_tail()