Searched refs:item (Results 101 - 125 of 445) sorted by relevance

1234567891011>>

/freebsd-10.2-release/sys/dev/nxge/include/
H A Dxge-queue.h66 * struct xge_queue_item_t - Queue item.
67 * @item: List item. Note that the queue is "built" on top of
81 xge_list_t item; member in struct:xge_queue_item_t
118 * item is added to the queue.
153 void* xge_queue_item_data(xge_queue_item_t *item);
165 xge_queue_item_t *item);
H A Dxgehal-mm.h52 * xge_hal_mempool_item_f - Mempool item alloc/free callback
54 * @item: Item that gets allocated or freed.
56 * @is_last: True, if this item is the last one in the pool; false - otherwise.
63 xge_hal_mempool_dma_t *dma_object, void *item,
91 * __hal_mempool_item - Returns pointer to the item in the mempool
101 * __hal_mempool_item_priv - will return pointer on per item private space
105 void *item, int *memblock_item_idx)
112 offset = (int)((char * )item - (char *)memblock);
104 __hal_mempool_item_priv(xge_hal_mempool_t *mempool, int memblock_idx, void *item, int *memblock_item_idx) argument
/freebsd-10.2-release/crypto/openssl/ssl/
H A Dd1_lib.c146 pitem *item = NULL; local
149 while ((item = pqueue_pop(s->d1->unprocessed_rcds.q)) != NULL) {
150 rdata = (DTLS1_RECORD_DATA *)item->data;
154 OPENSSL_free(item->data);
155 pitem_free(item);
158 while ((item = pqueue_pop(s->d1->processed_rcds.q)) != NULL) {
159 rdata = (DTLS1_RECORD_DATA *)item->data;
163 OPENSSL_free(item->data);
164 pitem_free(item);
167 while ((item
182 pitem *item = NULL; local
194 pitem *item = NULL; local
[all...]
H A Dd1_both.c584 pitem *item; local
590 item = pqueue_peek(s->d1->buffered_messages);
591 if (item == NULL)
594 frag = (hm_fragment *)item->data;
600 pitem_free(item);
601 item = NULL;
604 } while (item == NULL);
625 pitem_free(item);
658 pitem *item = NULL; local
670 /* Try to find item i
765 pitem *item = NULL; local
1219 pitem *item; local
1242 pitem *item; local
1313 pitem *item; local
[all...]
/freebsd-10.2-release/sys/netgraph/
H A Dng_rfc1490.c212 ng_rfc1490_rcvmsg(node_p node, item_p item, hook_p lasthook) argument
219 NGI_GET_MSG(item, msg);
265 NG_RESPOND_MSG(error, node, item, resp);
306 ng_rfc1490_rcvdata(hook_p hook, item_p item) argument
313 NGI_GET_M(item, m);
346 NG_FWD_NEW_DATA(error, item,
362 NG_FWD_NEW_DATA(error, item, priv->ethernet, m);
368 NG_FWD_NEW_DATA(error, item, priv->inet, m);
372 NG_FWD_NEW_DATA(error, item, priv->ppp, m);
384 NG_FWD_NEW_DATA(error, item, pri
[all...]
H A Dng_gif_demux.c273 ng_gif_demux_rcvmsg(node_p node, item_p item, hook_p lasthook) argument
279 NGI_GET_MSG(item, msg);
295 NG_RESPOND_MSG(error, node, item, resp);
304 ng_gif_demux_rcvdata(hook_p hook, item_p item) argument
313 /* Pull the mbuf out of the item for processing. */
314 NGI_GET_M(item, m);
323 NG_FREE_ITEM(item);
328 NG_FREE_ITEM(item);
334 NG_FREE_ITEM(item);
347 NG_FREE_ITEM(item);
[all...]
H A Dng_atmllc.c90 ng_atmllc_rcvmsg(node_p node, item_p item, hook_p lasthook) argument
96 NGI_GET_MSG(item, msg);
98 NG_RESPOND_MSG(error, node, item, msg);
146 ng_atmllc_rcvdata(hook_p hook, item_p item) argument
156 NGI_GET_M(item, m);
173 NG_FREE_ITEM(item);
208 NG_FREE_ITEM(item);
225 NG_FREE_ITEM(item);
241 NG_FREE_ITEM(item);
245 NG_FWD_NEW_DATA(error, item, outhoo
[all...]
H A Dng_hole.c146 ngh_rcvmsg(node_p node, item_p item, hook_p lasthook) argument
154 NGI_GET_MSG(item, msg);
196 NG_RESPOND_MSG(error, node, item, resp);
205 ngh_rcvdata(hook_p hook, item_p item) argument
210 hip->stats.octets += NGI_M(item)->m_pkthdr.len;
211 NG_FREE_ITEM(item);
H A Dng_sample.c244 * We actually recieve a queue item that has a pointer to the message.
245 * If we free the item, the message will be freed too, unless we remove
246 * it from the item using NGI_GET_MSG();
247 * The return address is also stored in the item, as an ng_ID_t,
248 * accessible as NGI_RETADDR(item);
259 ng_xxx_rcvmsg(node_p node, item_p item, hook_p lasthook) argument
266 NGI_GET_MSG(item, msg);
303 NG_RESPOND_MSG(error, node, item, resp);
311 * Actually we receive a queue item which holds the data.
312 * If we free the item i
[all...]
H A Dng_vjc.c291 ng_vjc_rcvmsg(node_p node, item_p item, hook_p lasthook) argument
298 NGI_GET_MSG(item, msg);
389 NG_RESPOND_MSG(error, node, item, resp);
398 ng_vjc_rcvdata(hook_p hook, item_p item) argument
405 NGI_GET_M(item, m);
414 NG_FREE_ITEM(item);
450 NG_FREE_ITEM(item);
461 NG_FREE_ITEM(item);
471 NG_FREE_ITEM(item);
481 NG_FREE_ITEM(item);
[all...]
/freebsd-10.2-release/sys/contrib/octeon-sdk/
H A Dcvmx-zone.c140 cvmx_zone_t item; local
146 item = (cvmx_zone_t)zone->freelist;
147 if(item != NULL)
149 zone->freelist = *(void **)item;
157 return(item);
/freebsd-10.2-release/sys/dev/drm/
H A Dvia_mm.c118 struct drm_memblock_item *item; local
134 item = drm_sman_alloc(&dev_priv->sman, mem->type, tmpSize, 0,
136 if (item) {
139 (item->mm->
140 offset(item->mm, item->mm_info) << VIA_MM_ALIGN_SHIFT);
141 mem->index = item->user_hash.key;
/freebsd-10.2-release/sys/dev/vxge/vxgehal/
H A Dvxge-queue.c36 * vxge_queue_item_data - Get item's data.
37 * @item: Queue item.
39 * Returns: item data(variable size). Note that vxge_queue_t
42 * user-defined portion of the queue item.
45 vxge_queue_item_data(vxge_queue_item_t *item) argument
47 return (char *) item + sizeof(vxge_queue_item_t);
51 * __queue_consume - (Lockless) dequeue an item from the specified queue.
55 * @item: Queue item
59 __queue_consume(vxge_queue_t *queue, u32 data_max_size, vxge_queue_item_t *item) argument
197 vxge_queue_item_t *item = local
408 vxge_list_t *item; local
496 vxge_queue_consume(vxge_queue_h queueh, u32 data_max_size, vxge_queue_item_t *item) argument
539 vxge_queue_item_t *item = (vxge_queue_item_t *) (void *)item_buf; local
[all...]
/freebsd-10.2-release/contrib/dialog/samples/
H A Ddialog.py162 pairs = map(lambda i, item: (i + 1, item), range(len(list)), list)
184 lambda i, item, onoff, fs=('off', 'on'): (i + 1, item, fs[onoff]),
193 objectList = filter(lambda item, list=list, indexList=indexList:
194 list.index(item) + 1 in indexList,
208 selected -- the selected item (must be between 1 and len(list)
212 triples = map(lambda i, item: (i + 1, item, 'off'),
215 i, item, tm
[all...]
/freebsd-10.2-release/contrib/gcc/doc/
H A Dmakefile.texi13 @item all
17 @item doc
21 @item dvi
24 @item pdf
27 @item html
30 @item man
33 @item info
36 @item mostlyclean
39 @item clean
42 @item distclea
[all...]
/freebsd-10.2-release/sys/netgraph/bluetooth/hci/
H A Dng_hci_main.c275 ng_hci_default_rcvmsg(node_p node, item_p item, hook_p lasthook) argument
281 NGI_GET_MSG(item, msg);
629 /* NG_RESPOND_MSG should take care of "item" and "rsp" */
630 NG_RESPOND_MSG(error, node, item, rsp);
642 ng_hci_upper_rcvmsg(node_p node, item_p item, hook_p lasthook) argument
647 switch (NGI_MSG(item)->header.typecookie) {
649 switch (NGI_MSG(item)->header.cmd) {
651 error = ng_hci_lp_con_req(unit, item, lasthook);
655 error = ng_hci_lp_discon_req(unit, item, lasthook);
659 error = ng_hci_lp_con_rsp(unit, item, lasthoo
686 ng_hci_drv_rcvdata(hook_p hook, item_p item) argument
769 ng_hci_acl_rcvdata(hook_p hook, item_p item) argument
888 ng_hci_sco_rcvdata(hook_p hook, item_p item) argument
1007 ng_hci_raw_rcvdata(hook_p hook, item_p item) argument
[all...]
H A Dng_hci_ulpi.c65 ng_hci_lp_con_req(ng_hci_unit_p unit, item_p item, hook_p hook) argument
72 NG_FREE_ITEM(item);
77 if (NGI_MSG(item)->header.arglen != sizeof(ng_hci_lp_con_req_ep)) {
81 NGI_MSG(item)->header.arglen);
83 NG_FREE_ITEM(item);
88 if (((ng_hci_lp_con_req_ep *)(NGI_MSG(item)->data))->link_type == NG_HCI_LINK_ACL)
89 return (ng_hci_lp_acl_con_req(unit, item, hook));
96 NG_FREE_ITEM(item);
101 return (ng_hci_lp_sco_con_req(unit, item, hook));
109 ng_hci_lp_acl_con_req(ng_hci_unit_p unit, item_p item, hook_ argument
309 ng_hci_lp_sco_con_req(ng_hci_unit_p unit, item_p item, hook_p hook) argument
477 ng_hci_lp_discon_req(ng_hci_unit_p unit, item_p item, hook_p hook) argument
682 ng_hci_lp_con_rsp(ng_hci_unit_p unit, item_p item, hook_p hook) argument
934 ng_hci_lp_qos_req(ng_hci_unit_p unit, item_p item, hook_p hook) argument
[all...]
/freebsd-10.2-release/contrib/subversion/subversion/libsvn_client/
H A Dcommit.c106 svn_client_commit_item3_t *item = APR_ARRAY_IDX(commit_items, i,
110 if (!item->path)
115 ctx->wc_ctx, item->path, FALSE, pool,
118 svn_hash_sets(relpath_map, relpath, item->path);
225 const svn_client_commit_item3_t *item,
237 && (item->state_flags & SVN_CLIENT_COMMIT_ITEM_ADD)
238 && (item->kind == svn_node_dir)
239 && (item->copyfrom_url))
242 remove_lock = (! keep_locks && (item->state_flags
249 if (item
105 svn_client_commit_item3_t *item = APR_ARRAY_IDX(commit_items, i, local
222 post_process_commit_item(svn_wc_committed_queue_t *queue, const svn_client_commit_item3_t *item, svn_wc_context_t *wc_ctx, svn_boolean_t keep_changelists, svn_boolean_t keep_locks, svn_boolean_t commit_as_operations, const svn_checksum_t *sha1_checksum, apr_pool_t *scratch_pool) argument
755 svn_client_commit_item3_t *item = local
773 svn_client_commit_item3_t *item = local
978 svn_client_commit_item3_t *item local
[all...]
/freebsd-10.2-release/contrib/subversion/subversion/include/
H A Dsvn_iter.h84 * @a baton is the baton passed to svn_iter_apr_array(). @a item
85 * is a pointer to the item written to the array with the APR_ARRAY_PUSH()
91 void *item,
/freebsd-10.2-release/contrib/subversion/subversion/libsvn_fs_fs/
H A Dtemp_serializer.h72 void *item,
80 svn_fs_fs__deserialize_txdelta_window(void **item,
149 void *item,
156 svn_fs_fs__deserialize_node_revision(void **item,
/freebsd-10.2-release/contrib/binutils/gas/
H A Dsb.h56 struct le *item; member in struct:sb
/freebsd-10.2-release/sys/netgraph/netflow/
H A Dnetflow_v9.c199 export9_send(priv_p priv, fib_export_p fe, item_p item, struct netflow_v9_packet_opt *t, int flags) argument
201 struct mbuf *m = NGI_M(item);
210 NG_FREE_ITEM(item);
228 NG_FWD_ITEM_HOOK_FLAGS(error, item, priv->export9, flags);
230 NG_FREE_ITEM(item);
241 export9_add(item_p item, struct netflow_v9_packet_opt *t, struct flow_entry *fle) argument
246 struct mbuf *m = NGI_M(item);
371 item_p item = NULL; local
376 item = fe->exp.item9;
383 if (item
444 return_export9_dgram(priv_p priv, fib_export_p fe, item_p item, struct netflow_v9_packet_opt *t, int flags) argument
[all...]
/freebsd-10.2-release/sys/sys/
H A Dbusdma_bufalloc.h115 void busdma_bufalloc_free_uncacheable(void *item, int size, u_int8_t pflag);
/freebsd-10.2-release/sys/dev/ath/
H A Dif_ath_beacon.h44 extern void ath_beacon_update(struct ieee80211vap *vap, int item);
/freebsd-10.2-release/usr.bin/rpcgen/
H A Drpc_util.h163 #define STOREVAL(list,item) \
164 storeval(list,item)
168 #define FINDVAL(list,item,finder) \
169 findval(list, item, finder)

Completed in 285 milliseconds

1234567891011>>