Searched refs:head (Results 101 - 125 of 766) sorted by relevance

1234567891011>>

/freebsd-10.0-release/usr.sbin/pc-sysinstall/backend/
H A Dfunctions-parse.sh48 export VAL="`grep ^${1}= ${CFGF} | head -n 1 | cut -d '=' -f 2-`"
60 export VAL=`grep "^${1}=" ${CFGF} | head -n 1 | cut -d '=' -f 2- | tr -d ' '`
74 VAL=`grep "^${1}" ${CFGF} | head -n 1 | cut -d '=' -f 2- | tr -d ' '`
107 VAL=`grep "^${1}" ${CFGF} | head -n 1 | cut -d '=' -f 2- | tr -d ' '`
136 LN=`grep "^${i}=" ${CFGF} | head -n 1 | cut -d '=' -f 2- | tr -d ' '`
/freebsd-10.0-release/usr.sbin/pkg_install/lib/
H A Dplist.c38 if (!p->head)
39 p->head = p->tail = tmp;
68 if (!p->head)
69 p->head = p->tail = tmp;
71 tmp->next = p->head;
72 p->head->prev = tmp;
73 p->head = tmp;
88 PackingList p = pkg->head;
100 PackingList p = pkg->head;
114 PackingList p = pkg->head;
[all...]
/freebsd-10.0-release/contrib/groff/src/devices/grohtml/
H A Doutput.cpp89 : length(0), head(0), tail(0)
103 while (head != 0) {
104 t = head;
105 head = head->next;
109 head = 0;
124 if (head == 0) {
125 head = new word(s, n);
126 tail = head;
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Core/
H A DConnectionMachPort.cpp28 mach_msg_header_t head; member in struct:MessageType
272 message.head.msgh_bits = MACH_MSGH_BITS_REMOTE (MACH_MSG_TYPE_MAKE_SEND) |
274 message.head.msgh_size = sizeof(MessageType);
275 message.head.msgh_local_port = MACH_PORT_NULL;
276 message.head.msgh_remote_port = m_port;
291 kern_return_t kret = ::mach_msg (&message.head,
293 message.head.msgh_size,
306 message.head.msgh_size = sizeof(MessageType);
308 kern_return_t kret = ::mach_msg (&message.head,
/freebsd-10.0-release/sys/netinet6/
H A Din6_rmx.c96 extern int in6_inithead(void **head, int off);
98 extern int in6_detachhead(void **head, int off);
105 in6_addroute(void *v_arg, void *n_arg, struct radix_node_head *head, argument
112 RADIX_NODE_HEAD_WLOCK_ASSERT(head);
141 ret = rn_addroute(v_arg, n_arg, head, treenodes);
266 in6_inithead(void **head, int off) argument
270 if (!rn_inithead(head, offsetof(struct sockaddr_in6, sin6_addr) << 3))
276 rnh = *head;
290 in6_detachhead(void **head, int off) argument
/freebsd-10.0-release/contrib/atf/atf-c/
H A Dmacros_test.c81 init_and_run_h_tc(const char *name, void (*head)(atf_tc_t *),
87 RE(atf_tc_init(&tc, name, head, body, NULL, config));
219 void (*head)(atf_tc_t *);
236 for (t = &tests[0]; t->head != NULL; t++) {
237 init_and_run_h_tc("h_check_errno", t->head, t->body);
263 void (*head)(atf_tc_t *);
280 for (t = &tests[0]; t->head != NULL; t++) {
281 init_and_run_h_tc("h_require_errno", t->head, t->body);
317 void (*head)(atf_tc_t *);
334 for (t = &tests[0]; t->head !
360 void (*head)(atf_tc_t *); member in struct:check_eq_test
548 void (*head)(atf_tc_t *); member in struct:require_eq_test
[all...]
/freebsd-10.0-release/gnu/usr.bin/gdb/gdbserver/
H A Dfbsd-low.c74 #define pid_of(proc) ((proc)->head.id)
120 process->head.id = pid;
126 add_inferior_to_list (&all_processes, &process->head);
339 fbsd_resume_one_process (&process->head, 0, 0);
460 event_child->tid, event_child->head.id);
463 if (all_threads.head == all_threads.tail)
468 remove_inferior (&all_processes, &event_child->head);
471 current_inferior = (struct thread_info *) all_threads.head;
489 fbsd_resume_one_process (&event_child->head,
501 event_child->head
[all...]
/freebsd-10.0-release/contrib/mdocml/
H A Dtbl_layout.c394 h = pp ? pp->head->next : tbl->first_head;
401 p->head = h;
410 p->head = h;
428 p->head = hp;
434 p->head = h;
452 p->head = hp;
457 head_adjust(const struct tbl_cell *cellp, struct tbl_head *head) argument
461 head->pos = TBL_HEAD_DATA;
466 if (TBL_HEAD_DVERT != head->pos)
467 head
[all...]
/freebsd-10.0-release/contrib/apr/include/
H A Dapr_ring.h44 * without knowing where its head is.
66 * first in the element struct unless the head is always part of a larger
79 * Each ring is managed via its head, which is a struct declared like this:
88 * The first element in the ring is next after the head, and the last
89 * element is just before the head.
91 #define APR_RING_HEAD(head, elem) \
92 struct head { \
102 * the ring's head. The head itself isn't an element, but in order to
125 * point to the head, the
[all...]
/freebsd-10.0-release/contrib/ipfilter/rules/
H A DBASIC_2.FW24 block in log on ppp0 all head 100
25 block out log on ppp0 all head 150
26 block in log on ed0 from w.x.y.z/24 to any head 200
27 block out log on ed0 all head 250
/freebsd-10.0-release/etc/
H A Drc.sendmail113 kill -TERM `head -1 ${sendmail_pidfile}`
146 kill -HUP `head -1 ${sendmail_pidfile}`
192 kill -TERM `head -1 ${sendmail_mspq_pidfile}`
220 kill -HUP `head -1 ${sendmail_mspq_pidfile}`
/freebsd-10.0-release/sbin/fsck_msdosfs/
H A Ddosfs.h84 cl_t head; /* pointer to start of chain */ member in struct:fatEntry
121 cl_t head; /* cluster no */ member in struct:dosDirEntry
/freebsd-10.0-release/sys/net/
H A Dradix_mpath.c318 extern int in6_inithead(void **head, int off);
319 extern int in_inithead(void **head, int off);
323 rn4_mpath_inithead(void **head, int off) argument
328 if (in_inithead(head, off) == 1) {
329 rnh = (struct radix_node_head *)*head;
339 rn6_mpath_inithead(void **head, int off) argument
344 if (in6_inithead(head, off) == 1) {
345 rnh = (struct radix_node_head *)*head;
/freebsd-10.0-release/sys/netpfil/ipfw/test/
H A Dtest_dn_sched.c35 if (q->mq.head)
36 dn_free_pkts(q->mq.head);
/freebsd-10.0-release/usr.bin/csup/
H A Drcstokenizer.l48 keyword head|access|symbols|locks|comment|expand|strict|date|author|state|branches|next|desc|log|text
/freebsd-10.0-release/sys/dev/drm/
H A Dmach64_dma.c148 u32 head; local
151 head = ring->head;
155 if (ring->head == ring->tail &&
161 if (ring->head == head) {
164 head = ring->head;
186 ring->head = ring->tail = 0;
415 * pointed by the ring head
1251 u32 bytes, remaining, head, eol; local
1564 u32 head, tail, ofs; local
[all...]
H A Ddrm_auth.c56 for (pt = dev->magiclist[hash].head; pt; pt = pt->next) {
91 dev->magiclist[hash].head = entry;
113 for (pt = dev->magiclist[hash].head; pt; prev = pt, pt = pt->next) {
115 if (dev->magiclist[hash].head == pt) {
116 dev->magiclist[hash].head = pt->next;
/freebsd-10.0-release/sys/contrib/octeon-sdk/
H A Dcvmx-profiler.c129 cpu_buf->pcpu_blk_info.head = cpu_buf->pcpu_blk_info.tail = \
165 * Add new sample to the buffer and increment the head pointer and
179 * head/tail pointer can be NULL, and this case arises when oct-remote-profile is
183 if (cvmx_unlikely(!cpu_buf->pcpu_blk_info.head && !cpu_buf->pcpu_blk_info.end)) {
190 /* In case of hitting end of buffer, reset head,data ptr to start */
191 if (cpu_buf->pcpu_blk_info.head == cpu_buf->pcpu_blk_info.end)
192 cpu_buf->pcpu_blk_info.head = cpu_buf->pcpu_blk_info.data = cpu_buf->pcpu_data;
202 cpu_buf->pcpu_blk_info.head = cpu_buf->pcpu_blk_info.data;
/freebsd-10.0-release/sys/dev/drm2/
H A Ddrm_auth.c56 for (pt = dev->magiclist[hash].head; pt; pt = pt->next) {
91 dev->magiclist[hash].head = entry;
113 for (pt = dev->magiclist[hash].head; pt; prev = pt, pt = pt->next) {
115 if (dev->magiclist[hash].head == pt) {
116 dev->magiclist[hash].head = pt->next;
H A Ddrm_crtc_helper.c76 list_for_each_entry_safe(mode, t, &connector->modes, head) {
124 list_for_each_entry_safe(mode, t, &connector->modes, head)
183 list_for_each_entry_safe(mode, t, &connector->modes, head) {
199 list_for_each_entry_safe(mode, t, &connector->modes, head) {
225 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
248 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
281 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
288 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
296 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
328 list_for_each_entry(tmp, &dev->mode_config.crtc_list, head) {
[all...]
/freebsd-10.0-release/sys/netinet/
H A Dsctp_peeloff.c50 sctp_can_peel_off(struct socket *head, sctp_assoc_t assoc_id) argument
56 if (head == NULL) {
60 inp = (struct sctp_inpcb *)head->so_pcb;
88 sctp_do_peeloff(struct socket *head, struct socket *so, sctp_assoc_t assoc_id) argument
94 inp = (struct sctp_inpcb *)head->so_pcb;
/freebsd-10.0-release/lib/libz/
H A Dinflate.c119 state->head = Z_NULL;
655 if (state->head != Z_NULL)
656 state->head->done = -1;
700 if (state->head != Z_NULL)
701 state->head->text = (int)((hold >> 8) & 1);
707 if (state->head != Z_NULL)
708 state->head->time = hold;
714 if (state->head != Z_NULL) {
715 state->head->xflags = (int)(hold & 0xff);
716 state->head
[all...]
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dinflate.c124 state->head = Z_NULL;
611 if (state->head != Z_NULL)
612 state->head->done = -1;
654 if (state->head != Z_NULL)
655 state->head->text = (int)((hold >> 8) & 1);
662 if (state->head != Z_NULL)
663 state->head->time = hold;
670 if (state->head != Z_NULL) {
671 state->head->xflags = (int)(hold & 0xff);
672 state->head
[all...]
/freebsd-10.0-release/sys/security/mac_portacl/
H A Dmac_portacl.c146 toast_rules(struct rulehead *head) argument
150 while ((rule = TAILQ_FIRST(head)) != NULL) {
151 TAILQ_REMOVE(head, rule, r_entries);
246 parse_rules(char *string, struct rulehead *head) argument
259 TAILQ_INSERT_TAIL(head, new, r_entries);
263 toast_rules(head);
340 struct rulehead head, save_head; local
360 TAILQ_INIT(&head);
361 error = parse_rules(copy_string, &head);
369 TAILQ_CONCAT(&rule_head, &head, r_entrie
[all...]
/freebsd-10.0-release/crypto/openssl/ssl/
H A Dssl_ciph.c665 static void ll_append_tail(CIPHER_ORDER **head, CIPHER_ORDER *curr, argument
669 if (curr == *head)
670 *head=curr->next;
681 static void ll_append_head(CIPHER_ORDER **head, CIPHER_ORDER *curr, argument
684 if (curr == *head) return;
691 (*head)->prev=curr;
692 curr->next= *head;
694 *head=curr;
857 CIPHER_ORDER *head)
871 ciph_curr = head;
852 ssl_cipher_collect_aliases(const SSL_CIPHER **ca_list, int num_of_group_aliases, unsigned long disabled_mkey, unsigned long disabled_auth, unsigned long disabled_enc, unsigned long disabled_mac, unsigned long disabled_ssl, CIPHER_ORDER *head) argument
929 CIPHER_ORDER *head, *tail, *curr, *next, *last; local
1367 CIPHER_ORDER *co_list = NULL, *head = NULL, *tail = NULL, *curr; local
[all...]

Completed in 299 milliseconds

1234567891011>>