Searched refs:item (Results 51 - 75 of 525) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/dev/vxge/include/
H A Dvxge-list.h39 * struct vxge_list_t - List item.
40 * @prev: Previous list item.
41 * @next: Next list item.
81 * vxge_list_first_get - Return the first item from the linked list.
84 * Returns the next item from the header.
85 * Returns NULL if the next item is header itself
101 * vxge_list_remove - Remove the specified item from the linked list.
102 * @item: element of the list
104 * Remove item from a list.
107 static inline void vxge_list_remove(vxge_list_t *item) argument
[all...]
/freebsd-11-stable/contrib/tcpdump/
H A Dmakemib230 function dump(item, c, s) {
231 # newitem=sofar"."item"("oid[item]")"
232 # printf "/* %s c=%s s=%s */\n", newitem, child[item], sibling[item]
234 if (child[item] != "") {
235 dump(child[item])
236 c = "&_"child[item]"_obj"
239 if (sibling[item] != "") {
240 dump(sibling[item])
[all...]
/freebsd-11-stable/sys/cddl/compat/opensolaris/kern/
H A Dopensolaris_sunddi.c89 ddi_get_soft_state_locked(struct ddi_soft_state *ss, int item) argument
96 if (itemp->ssi_item == item)
103 ddi_get_soft_state(void *state, int item) argument
109 data = ddi_get_soft_state_locked(ss, item);
115 ddi_soft_state_zalloc(void *state, int item) argument
121 itemp->ssi_item = item;
125 if (ddi_get_soft_state_locked(ss, item) != NULL) {
137 ddi_soft_state_free_locked(struct ddi_soft_state *ss, int item) argument
144 if (itemp->ssi_item == item)
155 ddi_soft_state_free(void *state, int item) argument
182 int item; local
[all...]
/freebsd-11-stable/contrib/dialog/
H A Dformbox.c43 is_readonly(DIALOG_FORMITEM * item) argument
45 return ((item->type & 2) != 0) || (item->text_flen <= 0);
49 is_hidden(DIALOG_FORMITEM * item) argument
51 return ((item->type & 1) != 0);
75 * Print form item
78 print_item(WINDOW *win, DIALOG_FORMITEM * item, int scrollamt, bool choice) argument
83 if (ok_move(win, scrollamt, item->name_y, item->name_x)) {
84 len = item
135 print_form(WINDOW *win, DIALOG_FORMITEM * item, int total, int scrollamt, int choice) argument
151 set_choice(DIALOG_FORMITEM item[], int choice, int item_no, bool * noneditable) argument
178 form_limit(DIALOG_FORMITEM item[]) argument
192 is_first_field(DIALOG_FORMITEM item[], int choice) argument
206 is_last_field(DIALOG_FORMITEM item[], int choice, int item_no) argument
223 tab_next(WINDOW *win, DIALOG_FORMITEM item[], int item_no, int stepsize, int *choice, int *scrollamt) argument
288 scroll_next(WINDOW *win, DIALOG_FORMITEM item[], int stepsize, int *choice, int *scrollamt) argument
342 real_length(DIALOG_FORMITEM * item) argument
355 make_FORM_ELTs(DIALOG_FORMITEM * item, int item_no, int *min_height, int *min_width) argument
[all...]
/freebsd-11-stable/sys/netgraph/
H A Dng_ether_echo.c90 ngee_rcvmsg(node_p node, item_p item, hook_p lasthook) argument
95 NGI_GET_MSG(item, msg);
97 NG_RESPOND_MSG(error, node, item, msg);
105 ngee_rcvdata(hook_p hook, item_p item) argument
114 NGI_GET_M(item, m);
118 NG_FREE_ITEM(item);
129 NG_FWD_NEW_DATA(error, item, hook, m);
H A Dng_echo.c86 nge_rcvmsg(node_p node, item_p item, hook_p lasthook) argument
91 NGI_GET_MSG(item, msg);
93 NG_RESPOND_MSG(error, node, item, msg);
101 nge_rcvdata(hook_p hook, item_p item) argument
105 NG_FWD_ITEM_HOOK(error, item, hook);
H A Dng_UI.c136 ng_UI_rcvmsg(node_p node, item_p item, hook_p lasthook) argument
142 msg = NGI_MSG(item); /* only peeking */
146 NG_FWD_ITEM_HOOK(error, item, priv->uplink);
151 NG_FWD_ITEM_HOOK(error, item, priv->downlink);
157 NG_FREE_ITEM(item);
168 ng_UI_rcvdata(hook_p hook, item_p item) argument
175 NGI_GET_M(item, m);
189 NG_FWD_NEW_DATA(error, item, priv->uplink, m); /* m -> NULL */
195 NG_FWD_NEW_DATA(error, item, priv->downlink, m); /* m -> NULL */
201 if (item)
[all...]
H A Dnetgraph.h99 typedef int ng_rcvmsg_t(node_p node, item_p item, hook_p lasthook);
100 typedef int ng_rcvdata_t(hook_p hook, item_p item);
102 typedef int ng_rcvitem (node_p node, hook_p hook, item_p item);
622 typedef int ng_item_fn2(node_p node, struct ng_item *item, hook_p hook);
651 * Optional callback called when item is being applied,
678 * Get the mbuf (etc) out of an item.
679 * Sets the value in the item to NULL in case we need to call NG_FREE_ITEM()
681 * If you don't want to zero out the item then realise that the
682 * item still owns it.
714 void dumpitem(item_p item, cha
727 _ngi_check(item_p item, char *file, int line) argument
734 _ngi_m(item_p item, char *file, int line) argument
741 _ngi_msg(item_p item, char *file, int line) argument
748 _ngi_retaddr(item_p item, char *file, int line) argument
755 _ngi_fn(item_p item, char *file, int line) argument
762 _ngi_fn2(item_p item, char *file, int line) argument
769 _ngi_arg1(item_p item, char *file, int line) argument
776 _ngi_arg2(item_p item, char *file, int line) argument
783 _ngi_node(item_p item, char *file, int line) argument
790 _ngi_hook(item_p item, char *file, int line) argument
[all...]
/freebsd-11-stable/lib/libc/db/test/hash.tests/
H A Dtcreat3.c58 DBT item, key; local
81 item.data = wp2;
86 * put info in structure, and structure in the item
89 item.size = strlen(wp2);
94 if ((dbp->put)(dbp, &key, &item, R_NOOVERWRITE) != NULL) {
96 item.data);
/freebsd-11-stable/contrib/dialog/samples/
H A Dchecklist28 $DIALOG --item-help --backtitle "No Such Organization" \
H A Dchecklist38 $DIALOG --item-help --backtitle "No Such Organization" \
H A Dchecklist48 $DIALOG --help-button --item-help --backtitle "No Such Organization" \
H A Dchecklist58 $DIALOG --help-button --item-help --backtitle "No Such Organization" \
H A Dchecklist69 $DIALOG --help-button --item-help --colors --backtitle "\Z1No Such\Zn Organization" \
H A Dchecklist710 --item-help \
H A Dradiolist38 $DIALOG --item-help --ok-label Okay \
/freebsd-11-stable/contrib/unbound/util/
H A Dtube.c226 struct tube_res_list* item = tube->res_list; local
233 if(!item) {
238 if(tube->res_write < sizeof(item->len)) {
239 r = write(c->fd, ((uint8_t*)&item->len) + tube->res_write,
240 sizeof(item->len) - tube->res_write);
253 if(tube->res_write < sizeof(item->len))
256 r = write(c->fd, item->buf + tube->res_write - sizeof(item->len),
257 item->len - (tube->res_write - sizeof(item
457 struct tube_res_list* item; local
582 struct tube_res_list* item = NULL; local
619 struct tube_res_list* item = NULL; local
691 struct tube_res_list* item; local
[all...]
/freebsd-11-stable/contrib/ncurses/menu/
H A Dm_post.c44 | Function : void _nc_Post_Item(MENU *menu, ITEM *item)
46 | Description : Draw the item in the menus window at the current
52 _nc_Post_Item(const MENU * menu, const ITEM * item) argument
67 - it is a onevalued menu and it is the current item
71 if (item->value || (item == menu->curitem))
79 item. */
80 if (!(menu->opt & O_ONEVALUE) && item->value && item != menu->curitem)
102 if (!(item
202 ITEM *item = menu->items[0]; local
[all...]
/freebsd-11-stable/sys/dev/drm/
H A Ddrm_hashtab.c91 int drm_ht_insert_item(struct drm_open_hash *ht, struct drm_hash_item *item) argument
96 unsigned long key = item->key;
109 LIST_INSERT_AFTER(parent, item, head);
111 LIST_INSERT_HEAD(h_list, item, head);
117 * Just insert an item and return any "bits" bit key that hasn't been
120 int drm_ht_just_insert_please(struct drm_open_hash *ht, struct drm_hash_item *item, argument
131 item->key = (unshifted_key << shift) + add;
132 ret = drm_ht_insert_item(ht, item);
145 struct drm_hash_item **item)
153 *item
144 drm_ht_find_item(struct drm_open_hash *ht, unsigned long key, struct drm_hash_item **item) argument
169 drm_ht_remove_item(struct drm_open_hash *ht, struct drm_hash_item *item) argument
[all...]
H A Dsis_ds.h57 int setAdd(set_t * set, ITEM_TYPE item);
58 int setDel(set_t * set, ITEM_TYPE item);
59 int setFirst(set_t * set, ITEM_TYPE * item);
60 int setNext(set_t * set, ITEM_TYPE * item);
/freebsd-11-stable/sys/dev/drm2/
H A Ddrm_hashtab.c92 int drm_ht_insert_item(struct drm_open_hash *ht, struct drm_hash_item *item) argument
97 unsigned long key = item->key;
110 LIST_INSERT_AFTER(parent, item, head);
112 LIST_INSERT_HEAD(h_list, item, head);
119 * Just insert an item and return any "bits" bit key that hasn't been
122 int drm_ht_just_insert_please(struct drm_open_hash *ht, struct drm_hash_item *item, argument
133 item->key = (unshifted_key << shift) + add;
134 ret = drm_ht_insert_item(ht, item);
148 struct drm_hash_item **item)
156 *item
147 drm_ht_find_item(struct drm_open_hash *ht, unsigned long key, struct drm_hash_item **item) argument
173 drm_ht_remove_item(struct drm_open_hash *ht, struct drm_hash_item *item) argument
[all...]
/freebsd-11-stable/usr.sbin/nscd/
H A Dcacheplcs.c98 cache_queue_policy_destroy_item(struct cache_policy_item_ *item) argument
102 assert(item != NULL);
103 free(item);
109 struct cache_policy_item_ *item)
116 queue_item = (struct cache_queue_policy_item_ *)item;
123 struct cache_policy_item_ *item)
130 queue_item = (struct cache_queue_policy_item_ *)item;
160 struct cache_policy_item_ *item)
167 queue_item = (struct cache_queue_policy_item_ *)item;
175 struct cache_policy_item_ *item)
108 cache_queue_policy_add_item(struct cache_policy_ *policy, struct cache_policy_item_ *item) argument
122 cache_queue_policy_remove_item(struct cache_policy_ *policy, struct cache_policy_item_ *item) argument
159 cache_queue_policy_get_next_item(struct cache_policy_ *policy, struct cache_policy_item_ *item) argument
174 cache_queue_policy_get_prev_item(struct cache_policy_ *policy, struct cache_policy_item_ *item) argument
245 cache_fifo_policy_update_item(struct cache_policy_ *policy, struct cache_policy_item_ *item) argument
284 cache_lru_policy_update_item(struct cache_policy_ *policy, struct cache_policy_item_ *item) argument
348 cache_lfu_policy_destroy_item(struct cache_policy_item_ *item) argument
362 cache_lfu_policy_add_item(struct cache_policy_ *policy, struct cache_policy_item_ *item) argument
383 cache_lfu_policy_update_item(struct cache_policy_ *policy, struct cache_policy_item_ *item) argument
423 cache_lfu_policy_remove_item(struct cache_policy_ *policy, struct cache_policy_item_ *item) argument
480 cache_lfu_policy_get_next_item(struct cache_policy_ *policy, struct cache_policy_item_ *item) argument
506 cache_lfu_policy_get_prev_item(struct cache_policy_ *policy, struct cache_policy_item_ *item) argument
[all...]
/freebsd-11-stable/sys/dev/twa/
H A Dtw_cl_share.h274 /* Insert an item at the head of the queue. */
275 #define TW_CL_Q_INSERT_HEAD(head, item) do { \
276 (item)->next = (head)->next; \
277 (item)->prev = head; \
278 (head)->next->prev = item; \
279 (head)->next = item; \
283 /* Insert an item at the tail of the queue. */
284 #define TW_CL_Q_INSERT_TAIL(head, item) do { \
285 (item)->next = head; \
286 (item)
[all...]
/freebsd-11-stable/contrib/ofed/opensm/opensm/
H A Dosm_ucast_updn.c193 /* Insert updn_switch item into the list */
214 cl_map_item_t *item; local
224 for (item = cl_qmap_head(&p_updn->p_osm->subn.sw_guid_tbl);
225 item != cl_qmap_end(&p_updn->p_osm->subn.sw_guid_tbl);
226 item = cl_qmap_next(item)) {
227 p_sw = (osm_switch_t *)item;
305 cl_map_item_t *item; local
314 for (item = cl_qmap_head(&p_updn->p_osm->subn.sw_guid_tbl);
315 item !
414 cl_map_item_t *item; local
511 dump_roots(cl_map_item_t *item, FILE *file, void *cxt) argument
573 cl_map_item_t *item; local
[all...]
/freebsd-11-stable/contrib/gperf/src/
H A Dhash-table.h46 KeywordExt * insert (KeywordExt *item);

Completed in 133 milliseconds

1234567891011>>