Searched refs:item (Results 251 - 275 of 525) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dsorts.c168 svn_sort__item_t *item = apr_array_push(ary);
170 apr_hash_this(hi, &item->key, &item->klen, &item->value);
174 prev_item = item;
180 sorted = (comparison_func(prev_item, item) < 0);
181 prev_item = item;
166 svn_sort__item_t *item = apr_array_push(ary); local
/freebsd-11-stable/sys/netgraph/
H A Dng_tag.c347 ng_tag_rcvmsg(node_p node, item_p item, hook_p lasthook) argument
353 NGI_GET_MSG(item, msg);
490 NG_RESPOND_MSG(error, node, item, resp);
501 ng_tag_rcvdata(hook_p hook, item_p item) argument
513 m = NGI_M(item); /* 'item' still owns it.. we are peeking */
557 NG_FREE_ITEM(item);
586 NG_FWD_ITEM_HOOK(error, item, dest);
H A Dng_vlan_rotate.c220 ng_vlanrotate_rcvmsg(node_p node, item_p item, hook_p lasthook) argument
228 NGI_GET_MSG(item, msg);
303 NG_RESPOND_MSG(error, node, item, resp);
373 ng_vlanrotate_rcvdata(hook_p hook, item_p item) argument
383 NGI_GET_M(item, m);
452 NG_FWD_NEW_DATA(error, item, dst_hook, m);
459 NG_FREE_ITEM(item);
H A Dng_deflate.c215 ng_deflate_rcvmsg(node_p node, item_p item, hook_p lasthook) argument
222 NGI_GET_MSG(item, msg);
286 priv->ctrlnode = NGI_RETADDR(item);
318 NG_RESPOND_MSG(error, node, item, resp);
327 ng_deflate_rcvdata(hook_p hook, item_p item) argument
335 NG_FREE_ITEM(item);
339 NGI_GET_M(item, m);
343 NG_FREE_ITEM(item);
350 NG_FREE_ITEM(item);
367 NG_FWD_NEW_DATA(error, item, hoo
[all...]
H A Dng_pred1.c227 ng_pred1_rcvmsg(node_p node, item_p item, hook_p lasthook) argument
234 NGI_GET_MSG(item, msg);
253 priv->ctrlnode = NGI_RETADDR(item);
288 NG_RESPOND_MSG(error, node, item, resp);
297 ng_pred1_rcvdata(hook_p hook, item_p item) argument
305 NG_FREE_ITEM(item);
309 NGI_GET_M(item, m);
313 NG_FREE_ITEM(item);
320 NG_FREE_ITEM(item);
337 NG_FWD_NEW_DATA(error, item, hoo
[all...]
H A Dng_nat.c357 ng_nat_rcvmsg(node_p node, item_p item, hook_p lasthook) argument
364 NGI_GET_MSG(item, msg);
747 NG_RESPOND_MSG(error, node, item, resp);
753 ng_nat_rcvdata(hook_p hook, item_p item )
763 NG_FREE_ITEM(item);
771 m = NGI_M(item);
774 NGI_M(item) = NULL; /* avoid double free */
775 NG_FREE_ITEM(item);
779 NGI_M(item) = m;
790 NG_FREE_ITEM(item);
[all...]
H A Dng_tty.c248 ngt_rcvmsg(node_p node, item_p item, hook_p lasthook) argument
255 NGI_GET_MSG(item, msg);
301 NG_RESPOND_MSG(error, node, item, resp);
311 ngt_rcvdata(hook_p hook, item_p item) argument
320 NGI_GET_M(item, m);
321 NG_FREE_ITEM(item);
H A Dng_car.c94 static void ng_car_enqueue(struct hookinfo *h, item_p item);
261 ng_car_rcvdata(hook_p hook, item_p item )
272 ng_car_enqueue(hinfo, item);
276 m = NGI_M(item);
298 NG_FREE_ITEM(item); \
342 ng_car_enqueue(hinfo, item);
399 NG_FWD_ITEM_HOOK(error, item, hinfo->dest);
411 ng_car_rcvmsg(node_p node, item_p item, hook_p lasthook) argument
418 NGI_GET_MSG(item, msg);
557 NG_RESPOND_MSG(error, node, item, res
744 ng_car_enqueue(struct hookinfo *hinfo, item_p item) argument
[all...]
H A Dng_pppoe.c764 ng_pppoe_rcvmsg(node_p node, item_p item, hook_p lasthook) argument
775 NGI_GET_MSG(item, msg);
896 sp->creator = NGI_RETADDR(item);
1244 NG_RESPOND_MSG(error, node, item, resp);
1406 ng_pppoe_rcvdata(hook_p hook, item_p item) argument
1416 __func__, node->nd_ID, node, item, hook->hk_name, hook);
1418 NGI_GET_M(item, m);
1446 NG_FWD_NEW_DATA(error, item, privp->ethernet_hook, m);
1530 NG_FWD_NEW_DATA(error, item, privp->ethernet_hook, m0);
1543 if (item)
1553 ng_pppoe_rcvdata_ether(hook_p hook, item_p item) argument
1961 ng_pppoe_rcvdata_debug(hook_p hook, item_p item) argument
[all...]
/freebsd-11-stable/contrib/ofed/opensm/opensm/
H A Dosm_ucast_dfsssp.c1132 name_map_item_t *item; local
1135 item = malloc(sizeof(*item));
1136 if (!item)
1139 item->guid = cl_hton64(guid); /* internal: network byte order */
1140 item->name = NULL; /* name isn't needed */
1141 inserted_item = (name_map_item_t *) cl_qmap_insert(map, item->guid, &item->item);
1142 if (inserted_item != item)
1212 cl_map_item_t *item = NULL; local
1838 cl_map_item_t *item = NULL; local
2298 cl_map_item_t *item = NULL; local
[all...]
H A Dosm_perfmgr_db.c75 cl_map_item_t *item, *next_item; local
78 item = cl_qmap_head(&db->pc_data);
79 while (item != cl_qmap_end(&db->pc_data)) {
80 next_item = cl_qmap_next(item);
81 free_node((db_node_t *)item);
82 item = next_item;
953 cl_map_item_t *item; local
957 item = cl_qmap_head(&db->pc_data);
958 while (item != cl_qmap_end(&db->pc_data)) {
959 node = (db_node_t *)item;
973 cl_map_item_t *item; local
[all...]
/freebsd-11-stable/contrib/tcsh/
H A Dsh.file.c506 Char *item; local
535 while ((item = getitem(dir_fd, looking_for_lognames)) != NULL) {
536 if (!is_prefix(name, item))
539 if (name_length == 0 && item[0] == '.' &&
543 bb_append(&items, Strsave(item));
545 if (ignoring && ignored(item))
547 else if (recognize(&extended_name, item, name_length, ++items.len))
618 * On first match, copy full item (assume it'll be the only match)
620 * Character mismatch between extended_name and item.
624 recognize(Char **extended_name, Char *item, size_ argument
754 ignored(const Char *item) argument
[all...]
/freebsd-11-stable/sys/netgraph/bluetooth/socket/
H A Dng_btsocket_hci_raw.c253 * Enqueue item and schedule input task.
257 ng_btsocket_hci_raw_node_rcvmsg(node_p node, item_p item, hook_p lasthook) argument
259 struct ng_mesg *msg = NGI_MSG(item); /* item still has message */
273 NG_FREE_ITEM(item);
283 NG_FREE_ITEM(item);
286 NG_BT_ITEMQ_ENQUEUE(&ng_btsocket_hci_raw_queue, item);
291 NG_FREE_ITEM(item);
301 * Enqueue item and schedule input task.
305 ng_btsocket_hci_raw_node_rcvdata(hook_p hook, item_p item) argument
591 item_p item = NULL; local
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_client/
H A Dmtcc.c1290 svn_client_commit_item3_t *item; local
1292 item = svn_client_commit_item3_create(result_pool);
1294 item->path = NULL;
1296 item->kind = svn_node_dir;
1298 item->kind = svn_node_file;
1300 item->kind = svn_node_unknown;
1302 item->url = apr_pstrdup(result_pool, url);
1303 item->session_relpath = svn_uri_skip_ancestor(session_url, item->url,
1308 item
1400 svn_client_commit_item3_t *item; local
[all...]
H A Ddelete.c217 svn_client_commit_item3_t *item;
220 = apr_array_make(pool, relpaths->nelts, sizeof(item));
226 item = svn_client_commit_item3_create(pool);
227 item->url = svn_path_url_add_component2(base_uri, relpath, pool);
228 item->state_flags = SVN_CLIENT_COMMIT_ITEM_DELETE;
229 APR_ARRAY_PUSH(commit_items, svn_client_commit_item3_t *) = item;
348 /* Build our repos_deletables_t item and stash it in the
215 svn_client_commit_item3_t *item; local
/freebsd-11-stable/sys/dev/vxge/vxgehal/
H A Dvxgehal-ring.c122 * __hal_ring_item_dma_offset - Return the dma offset of an item
124 * @item: Item for which to get the dma offset
126 * This function returns the dma offset of a given item
131 void *item)
138 vxge_assert((mempoolh != NULL) && (item != NULL) &&
147 "mempoolh = 0x"VXGE_OS_STXFMT", item = 0x"VXGE_OS_STXFMT,
148 (ptr_t) mempoolh, (ptr_t) item);
151 memblock_idx = __hal_ring_block_memblock_idx(item);
159 return ((u8 *) item - (u8 *) memblock);
164 * __hal_ring_item_dma_addr - Return the dma address of an item
129 __hal_ring_item_dma_offset( vxge_hal_mempool_h mempoolh, void *item) argument
172 __hal_ring_item_dma_addr( vxge_hal_mempool_h mempoolh, void *item, pci_dma_h *dma_handle) argument
310 __hal_ring_mempool_item_alloc( vxge_hal_mempool_h mempoolh, void *memblock, u32 memblock_index, vxge_hal_mempool_dma_t *dma_object, void *item, u32 item_index, u32 is_last, void *userdata) argument
425 __hal_ring_mempool_item_free( vxge_hal_mempool_h mempoolh, void *memblock, u32 memblock_index, vxge_hal_mempool_dma_t *dma_object, void *item, u32 item_index, u32 is_last, void *userdata) argument
[all...]
/freebsd-11-stable/crypto/openssl/crypto/asn1/
H A Dtasn_enc.c71 int skcontlen, const ASN1_ITEM *item,
95 * Encode an ASN1 item, this is use by the standard 'i2d' function. 'out'
123 * Encode an item, taking care of IMPLICIT tagging (if any). This function
124 * performs the normal item handling: it can be used in external types.
363 tmplen = ASN1_item_ex_i2d(&skitem, NULL, ASN1_ITEM_ptr(tt->item),
388 asn1_set_seq_out(sk, out, skcontlen, ASN1_ITEM_ptr(tt->item),
401 /* Find length of tagged item */
402 i = ASN1_item_ex_i2d(pval, NULL, ASN1_ITEM_ptr(tt->item), -1, iclass);
408 /* Output tag and item */
410 ASN1_item_ex_i2d(pval, out, ASN1_ITEM_ptr(tt->item),
[all...]
H A Dtasn_fre.c183 asn1_item_combine_free(&vtmp, ASN1_ITEM_ptr(tt->item), 0);
188 asn1_item_combine_free(pval, ASN1_ITEM_ptr(tt->item),
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBValue.i386 The index of the first item to retrieve. For an array
393 only one item is copied, but more can be asked for.
557 name which points to the next item on the list and you specify the
558 end-of-list test function which takes an SBValue for an item and returns
580 item = self
583 while not end_of_list_test(item) and not item.GetValueAsUnsigned() in visited:
584 visited.add(item.GetValueAsUnsigned())
585 yield item
587 item
[all...]
/freebsd-11-stable/contrib/unbound/dnstap/
H A Dunbound-dnstap-socket.c1120 struct config_strlist* item; local
1121 for(item = local_list->first; item; item = item->next) {
1123 s = tap_socket_new_local(item->str, &dtio_mainfdcallback,
1135 struct config_strlist* item; local
1136 for(item = tcp_list->first; item; item
1151 struct config_strlist* item; local
[all...]
/freebsd-11-stable/contrib/subversion/subversion/svn/
H A Dpropget-cmd.c121 svn_sort__item_t item = APR_ARRAY_IDX(sorted_props, i, svn_sort__item_t);
122 const char *filename = item.key;
123 svn_string_t *propval = item.value;
251 If PRINT_FILENAMES is true, print the item's path before each property.
296 svn_sort__item_t item = APR_ARRAY_IDX(sorted_props, i, svn_sort__item_t);
297 const char *filename = item.key;
298 svn_string_t *propval = item.value;
119 svn_sort__item_t item = APR_ARRAY_IDX(sorted_props, i, svn_sort__item_t); local
294 svn_sort__item_t item = APR_ARRAY_IDX(sorted_props, i, svn_sort__item_t); local
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Dstats.c74 * item index within REVISION (log. addressing) */
77 /* item length in bytes */
80 /* item length after de-deltification */
377 * In that revision, look for the rep_stats_t object for item ITEM_INDEX.
508 /* Read the noderev item at OFFSET in REVISION_INFO from the filesystem
901 /* Read the item described by ENTRY from the REV_FILE and return the
912 svn_stringbuf_t *item = svn_stringbuf_create_ensure(entry->size, local
914 item->len = entry->size;
915 item->data[item
1059 svn_stringbuf_t *item; local
[all...]
/freebsd-11-stable/sys/netgraph/atm/ccatm/
H A Dng_ccatm.c485 ng_ccatm_rcvmsg(node_p node, item_p item, hook_p lasthook) argument
492 NGI_GET_MSG(item, msg);
782 NG_RESPOND_MSG(error, node, item, resp);
919 ng_ccatm_rcvdata(hook_p hook, item_p item) argument
927 NGI_GET_M(item, m);
928 NG_FREE_ITEM(item);
1053 ng_ccatm_rcvuni(hook_p hook, item_p item) argument
1061 NGI_GET_M(item, m);
1062 NG_FREE_ITEM(item);
1151 ng_ccatm_rcvmanage(hook_p hook, item_p item) argument
1158 ng_ccatm_rcvdump(hook_p hook, item_p item) argument
[all...]
/freebsd-11-stable/usr.bin/ctlstat/
H A Dctlstat.c325 (int)stats[i].item) == 0)
327 printf("%s %d\n", F_PORTS(ctx) ? "port" : "lun", stats[i].item);
355 (int)stats[i].item) == 0)
358 stats[i].item);
431 int item; local
438 item = (int)ctx->cur_stats[i].item;
441 bit_test(ctx->item_mask, item) == 0)
444 F_PORTS(ctx) ? "port" : "lun", item,
496 (int)ctx->cur_stats[i].item)
[all...]
/freebsd-11-stable/contrib/wpa/wpa_supplicant/examples/
H A Dwpas-dbus-new.py48 for item in val:
49 bssid = bssid + ":%02x" % item

Completed in 190 milliseconds

<<11121314151617181920>>