Home
last modified time | relevance | path

Searched refs:item_cur (Results 1 – 2 of 2) sorted by relevance

/utopia/UTPA2-700.0.x/projects/build/scripts/kconfig/lxdialog/
H A Dutil.c534 struct dialog_list *item_cur; variable
547 item_cur = &item_nil; in item_reset()
556 item_cur->next = p; in item_make()
559 item_cur = p; in item_make()
563 vsnprintf(item_cur->node.str, sizeof(item_cur->node.str), fmt, ap); in item_make()
572 avail = sizeof(item_cur->node.str) - strlen(item_cur->node.str); in item_add_str()
575 vsnprintf(item_cur->node.str + strlen(item_cur->node.str), in item_add_str()
577 item_cur->node.str[sizeof(item_cur->node.str) - 1] = '\0'; in item_add_str()
583 item_cur->node.tag = tag; in item_set_tag()
587 item_cur->node.data = ptr; in item_set_data()
[all …]
H A Ddialog.h178 extern struct dialog_list *item_cur;
189 for (item_cur = item_head ? item_head: item_cur; \
190 item_cur && (item_cur != &item_nil); item_cur = item_cur->next)