Searched refs:head (Results 1 - 25 of 923) sorted by last modified time

1234567891011>>

/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_write_disk_posix.c2743 char *head;
2766 * head points to the current (relative) path
2779 head = path;
2787 * head, tail, path all alias the same string, which is
2808 r = fstatat(chdir_fd, head, &st, AT_SYMLINK_NOFOLLOW);
2810 r = lstat(head, &st);
2838 fd = la_opendirat(chdir_fd, head);
2847 r = chdir(head);
2857 head = tail + 1;
2889 r = unlinkat(chdir_fd, head,
[all...]
H A Darchive_read_support_format_mtree.c235 free_options(struct mtree_option *head) argument
239 for (; head != NULL; head = next) {
240 next = head->next;
241 free(head->value);
242 free(head);
/freebsd-11-stable/sys/compat/linux/
H A Dlinux_futex.c1144 em->robust_futexes = args->head;
1154 struct linux_robust_list_head *head; local
1164 head = em->robust_futexes;
1191 head = em->robust_futexes;
1204 error = copyout(&head, args->head, sizeof(head));
1265 struct linux_robust_list **head, unsigned int *pi)
1270 LIN_SDT_PROBE3(futex, fetch_robust_entry, entry, entry, head, pi);
1272 error = copyin((const void *)head,
1264 fetch_robust_entry(struct linux_robust_list **entry, struct linux_robust_list **head, unsigned int *pi) argument
1290 struct linux_robust_list_head *head = NULL; local
[all...]
/freebsd-11-stable/contrib/sqlite3/
H A Dsqlite3.c13974 ** Hash.first points to the head of this list.
51728 struct RowSetEntry head; local
196524 GeoEvent head, *pLast; local
196571 GeoSegment head, *pLast; local
[all...]
/freebsd-11-stable/contrib/unbound/util/
H A Dconfig_file.h56 /** List head for strlist processing, used for append operation. */
916 * @param list: list head. zeroed at start.
925 * @param head: pointer to strlist head variable.
929 int cfg_strlist_append_ex(struct config_strlist** head, char* item);
933 * @param head: pointer to strlist head variable.
937 struct config_strlist* cfg_strlist_find(struct config_strlist* head,
942 * @param head: pointer to strlist head variabl
[all...]
H A Dconfig_file.c1739 struct config_strlist** head, char* item)
1742 if(!item || !head)
1749 s->next = *head;
1750 *head = s;
1755 cfg_strlist_find(struct config_strlist* head, const char *item) argument
1757 struct config_strlist *s = head;
1758 if(!head){
1771 cfg_strlist_insert(struct config_strlist** head, char* item) argument
1774 if(!item || !head) {
1784 s->next = *head;
1738 cfg_region_strlist_insert(struct regional* region, struct config_strlist** head, char* item) argument
1790 cfg_strlist_append_ex(struct config_strlist** head, char* item) argument
1815 cfg_str2list_insert(struct config_str2list** head, char* item, char* i2) argument
1837 cfg_str3list_insert(struct config_str3list** head, char* item, char* i2, char* i3) argument
1855 cfg_strbytelist_insert(struct config_strbytelist** head, char* item, uint8_t* i2, size_t i2len) argument
[all...]
/freebsd-11-stable/contrib/unbound/smallapp/
H A Dunbound-anchor.c545 struct ip_list** head)
571 ip->next = *head;
572 *head = ip;
544 resolve_host_ip(struct ub_ctx* ctx, const char* host, int port, int tp, int cl, struct ip_list** head) argument
/freebsd-11-stable/contrib/unbound/
H A Dconfig.guess310 # types through head -n 1, so we only detect the type of CPU 0.
311 ALPHA_CPU_TYPE=$(/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1)
H A DMakefile.in666 head -`egrep -n "# Dependencies" $(DEPEND_TARGET) | tail -1 | sed -e 's/:.*$$//'` $(DEPEND_TMP2) > $(DEPEND_TARGET)
671 head -`egrep -n "# Dependencies" $(DEPEND_TARGET2) | tail -1 | sed -e 's/:.*$$//'` $(DEPEND_TMP2) > $(DEPEND_TARGET2); \
/freebsd-11-stable/sbin/ipfw/
H A Dipfw2.c2345 rh.range.head.length = sizeof(*rt);
2346 rh.range.head.type = IPFW_TLV_RANGE;
2558 switch (ctlv->head.type) {
2784 if (ctlv->head.type == IPFW_TLV_TBLNAME_LIST) {
2787 readsz += ctlv->head.length;
2788 ctlv = (ipfw_obj_ctlv *)((caddr_t)ctlv + ctlv->head.length);
2793 if (ctlv->head.type == IPFW_TLV_RULE_LIST) {
2796 readsz += ctlv->head.length;
2798 ctlv->head.length);
3016 if (tstate->idx[i].head
[all...]
H A Dtables.c318 ntlv->head.type = IPFW_TLV_TBL_NAME;
319 ntlv->head.length = sizeof(ipfw_obj_ntlv);
922 ctlv->head.length = sz;
930 tent->head.length = sizeof(ipfw_obj_tentry);
1019 ptent->head.flags |= IPFW_TF_UPDATE;
1134 tent->head.length = sizeof(*tent);
1777 tent = (ipfw_obj_tentry *)((caddr_t)tent + tent->head.length);
/freebsd-11-stable/sys/fs/nfs/
H A Dnfs_commonsubs.c3792 SLIST_HEAD(, list) head;
3838 SLIST_INIT(&head);
3884 SLIST_INSERT_HEAD(&head, lsp, next);
3905 SLIST_FOREACH_SAFE(lsp, &head, next, nlsp) {
/freebsd-11-stable/sys/compat/linuxkpi/common/src/
H A Dlinux_rcu.c114 struct linux_epoch_head *head; local
121 head = &linux_epoch_head[j];
123 mtx_init(&head->lock, "LRCU-HEAD", NULL, MTX_DEF);
124 TASK_INIT(&head->task, 0, linux_rcu_cleaner_func, head);
125 STAILQ_INIT(&head->cb_head);
145 struct linux_epoch_head *head; local
149 head = &linux_epoch_head[j];
151 mtx_destroy(&head->lock);
159 struct linux_epoch_head *head; local
378 struct linux_epoch_head *head; local
394 struct linux_epoch_head *head; local
[all...]
/freebsd-11-stable/sys/ofed/drivers/infiniband/ulp/ipoib/
H A Dipoib_ib.c448 struct ib_ah *address, u32 qpn, struct ipoib_tx_buf *tx_req, void *head,
466 if (head) {
468 priv->tx_wr.header = head;
447 post_send(struct ipoib_dev_priv *priv, unsigned int wr_id, struct ib_ah *address, u32 qpn, struct ipoib_tx_buf *tx_req, void *head, int hlen) argument
/freebsd-11-stable/sys/dev/netmap/
H A Dnetmap.c1142 struct mbuf *head = NULL, *prev = NULL; local
1144 /* Send packets up, outside the lock; head/prev machinery
1150 if (head == NULL)
1151 head = prev;
1153 if (head)
1154 nm_os_send_up(dst, NULL, head);
1160 * Scan the buffers from hwcur to ring->head, and put a copy of those
1169 u_int const head = kring->rhead; local
1173 for (n = kring->nr_hwcur; n != head; n = nm_next(n, lim)) {
1223 * We can touch the TX netmap rings (slots, head an
1234 u_int const head = kring->rhead; local
1286 u_int const head = kring->rhead; local
1321 u_int const head = kring->rhead; local
1635 u_int head = ring->head; /* read only once */ local
1700 uint32_t head, cur; local
[all...]
/freebsd-11-stable/sys/netinet/libalias/
H A Dalias_db.c866 struct server *head, *curr, *next; local
868 head = curr = lnk->server;
872 } while ((curr = next) != head);
2328 struct server *head; local
2333 head = lnk->server;
2334 if (head == NULL)
2339 for (s = head; s->next != head; s = s->next);
2341 server->next = head;
/freebsd-11-stable/contrib/subversion/subversion/libsvn_wc/
H A Dwc-metadata.sql369 revision is implicit, being in effect (new head - 1) at commit time.
/freebsd-11-stable/sys/contrib/ipfilter/netinet/
H A Dfil.c3526 /* head(I) - rule pointer that is using this as the head */
3532 /* Add a new group head, or if it already exists, increase the reference */
3536 ipf_group_add(softc, group, head, flags, unit, set)
3539 void *head;
3558 if (fg->fg_head == NULL && head != NULL)
3559 fg->fg_head = head;
3570 fg->fg_head = head;
3594 /* purpose of knowing when the head rule is being deleted. */
3698 /* encountered. if a rule is the head o
[all...]
H A Dradix_ipf.c172 /* Paramters: head(I) - pointer to tree head to search */
181 ipf_rx_match(head, addr)
182 ipf_rdx_head_t *head;
198 node = ipf_rx_find_addr(head->root, (u_32_t *)addr);
244 /* Paramters: head(I) - pointer to tree head to search */
252 ipf_rx_lookup(head, addr, mask)
253 ipf_rdx_head_t *head;
261 found = ipf_rx_find_addr(head
1038 ipf_rdx_head_t *head = arg; local
1435 checktree(ipf_rdx_head_t *head) argument
[all...]
/freebsd-11-stable/contrib/ipfilter/tools/
H A Dipf_y.y313 with keep head group
478 head: | IPFY_HEAD groupname { DOALL(setgrhead(&fr, $2);); label
1784 { "head", IPFY_HEAD },
1786 { "icmp-head", IPFY_ICMPHEAD },
/freebsd-11-stable/contrib/ipfilter/
H A Dradix_ipf.c172 /* Paramters: head(I) - pointer to tree head to search */
181 ipf_rx_match(head, addr)
182 ipf_rdx_head_t *head;
198 node = ipf_rx_find_addr(head->root, (u_32_t *)addr);
244 /* Paramters: head(I) - pointer to tree head to search */
252 ipf_rx_lookup(head, addr, mask)
253 ipf_rdx_head_t *head;
261 found = ipf_rx_find_addr(head
1038 ipf_rdx_head_t *head = arg; local
1435 checktree(ipf_rdx_head_t *head) argument
[all...]
/freebsd-11-stable/sys/dev/mlx5/mlx5_ib/
H A Dmlx5_ib_main.c2423 if (mqp->sq.tail != mqp->sq.head) {
2440 if (mqp->rq.tail != mqp->rq.head) {
/freebsd-11-stable/sys/dev/mlx4/mlx4_ib/
H A Dmlx4_ib_main.c3054 if (mqp->sq.tail != mqp->sq.head) {
3072 if (mqp->rq.tail != mqp->rq.head) {
/freebsd-11-stable/usr.sbin/freebsd-update/
H A Dfreebsd-update.sh1052 SRV_PRIORITY=`cut -f 1 -d ' ' serverlist | sort -n | head -1`
1626 head -1
/freebsd-11-stable/sys/dev/usb/
H A Dusbdi.h126 TAILQ_HEAD(, usb_xfer) head; member in struct:usb_xfer_queue

Completed in 741 milliseconds

1234567891011>>