Lines Matching refs:l_item
57 sys_dnode_t *l_item; /* list item */ in z_shell_history_get() local
72 l_item = sys_dlist_peek_prev_no_check(&history->list, in z_shell_history_get()
75 l_item = (history->current == NULL) ? in z_shell_history_get()
81 history->current = l_item; in z_shell_history_get()
82 h_item = CONTAINER_OF(l_item, struct shell_history_item, dnode); in z_shell_history_get()
84 if (l_item) { in z_shell_history_get()
108 sys_dnode_t *l_item; /* list item */ in remove_from_tail() local
116 l_item = sys_dlist_peek_tail(&history->list); in remove_from_tail()
117 sys_dlist_remove(l_item); in remove_from_tail()
119 h_item = CONTAINER_OF(l_item, struct shell_history_item, dnode); in remove_from_tail()
137 sys_dnode_t *l_item; /* list item */ in z_shell_history_put() local
157 l_item = sys_dlist_peek_head(&history->list); in z_shell_history_put()
158 h_prev_item = CONTAINER_OF(l_item, struct shell_history_item, dnode); in z_shell_history_put()
160 if (l_item && in z_shell_history_put()