Searched refs:head (Results 1 - 25 of 991) sorted by path

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/IGMP-PROXY/
H A Dconfig.guess249 # types through head -n 1, so we only detect the type of CPU 0.
250 ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1`
H A Dconfig.status353 --header | --heade | --head | --hea )
H A Dconfigure4788 --header | --heade | --head | --hea )
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/
H A DMacOSX-Framework28 OLD_SDK=`ls /Developer/SDKs|head -1`
29 NEW_SDK=`ls -r /Developer/SDKs|head -1`
49 SDK64=`ls /Developer/SDKs|grep 10.5|head -1`
53 OLD_SDK64=`ls /Developer/SDKs|egrep -v "10.[0-4]"|head -1`
54 NEW_SDK64=`ls -r /Developer/SDKs|egrep -v "10.[0-4]"|head -1`
H A Dbuildconf97 ac_version=`${AUTOCONF:-autoconf} --version 2>/dev/null|head -n 1| sed -e 's/^[^0-9]*//' -e 's/[a-z]* *$//'`
123 am4te_version=`${AUTOM4TE:-autom4te} --version 2>/dev/null|head -n 1| sed -e 's/autom4te\(.*\)/\1/' -e 's/^[^0-9]*//' -e 's/[a-z]* *$//'`
138 ah_version=`${AUTOHEADER:-autoheader} --version 2>/dev/null|head -n 1| sed -e 's/^[^0-9]*//' -e 's/[a-z]* *$//'`
160 am_version=`${AUTOMAKE:-automake} --version 2>/dev/null|head -n 1| sed -e 's/^.* \([0-9]\)/\1/' -e 's/[a-z]* *$//' -e 's/\(.*\)\(-p.*\)/\1/'`
178 acloc_version=`${ACLOCAL:-aclocal} --version 2>/dev/null|head -n 1| sed -e 's/^.* \([0-9]\)/\1/' -e 's/[a-z]* *$//' -e 's/\(.*\)\(-p.*\)/\1/'`
214 lt_pver=`$libtool --version 2>/dev/null|head -n 1`
261 m4=`(${M4:-m4} --version || ${M4:-gm4} --version) 2>/dev/null | head -n 1`;
376 buildhost=`./config.guess 2>/dev/null|head -n 1`
H A Dconfig.guess233 # types through head -n 1, so we only detect the type of CPU 0.
234 ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1`
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A DMakefile396 Makefile.netware nwlib.c nwos.c libcurl.imp msvcproj.head msvcproj.foot \
1716 $(DSP): msvcproj.head msvcproj.foot Makefile.am
1718 @(cp $(srcdir)/msvcproj.head $(DSP); \
1745 $(VCPROJ): vc8proj.head vc8proj.foot Makefile.am
1747 @(cp $(srcdir)/vc8proj.head $(VCPROJ); \
H A DMakefile.am37 Makefile.netware nwlib.c nwos.c libcurl.imp msvcproj.head msvcproj.foot \
143 $(DSP): msvcproj.head msvcproj.foot Makefile.am
145 @(cp $(srcdir)/msvcproj.head $(DSP); \
172 $(VCPROJ): vc8proj.head vc8proj.foot Makefile.am
174 @(cp $(srcdir)/vc8proj.head $(VCPROJ); \
H A DMakefile.in396 Makefile.netware nwlib.c nwos.c libcurl.imp msvcproj.head msvcproj.foot \
1716 $(DSP): msvcproj.head msvcproj.foot Makefile.am
1718 @(cp $(srcdir)/msvcproj.head $(DSP); \
1745 $(VCPROJ): vc8proj.head vc8proj.foot Makefile.am
1747 @(cp $(srcdir)/vc8proj.head $(VCPROJ); \
H A Dftp.c1145 /* REST is the last command in the chain of commands when a "head"-like
1198 /* if a "head"-like request is being made (on a file) */
1219 /* if a "head"-like request is being made (on a file) */
3707 struct curl_fileinfo *finfo = wildcard->filelist->head->ptr;
3753 Curl_llist_remove(wildcard->filelist, wildcard->filelist->head, NULL);
3766 Curl_llist_remove(wildcard->filelist, wildcard->filelist->head, NULL);
H A Dhash.c160 for(le = l->head; le; le = le->next) {
195 for(le = l->head; le; le = le->next) {
213 for(le = l->head; le; le = le->next) {
232 for(le = (h->table[i])->head;
269 le = list->head; /* get first list entry */
337 le = list->head; /* get first list entry */
H A Dhttp.c164 struct curl_slist *head; local
167 for(head = data->set.headers; head; head=head->next) {
168 if(Curl_raw_nequal(head->data, thisheader, thislen))
169 return head->data;
2604 struct curl_slist *head = data->set.http200aliases; local
2621 while(head) {
2622 if(checkprefix(head
[all...]
H A Dif2ip.c76 struct ifaddrs *iface, *head; local
79 if(getifaddrs(&head) >= 0) {
80 for(iface=head; iface != NULL; iface=iface->ifa_next) {
105 freeifaddrs(head);
H A Dllist.c39 l->head = NULL;
78 list->head = ne;
79 list->head->prev = NULL;
80 list->head->next = NULL;
85 ne->next = e?e->next:list->head;
88 list->head->prev = ne;
89 list->head = ne;
116 if(e == list->head) {
117 list->head = e->next;
119 if(list->head
[all...]
H A Dllist.h38 struct curl_llist_element *head; member in struct:curl_llist
H A Dmulti.c755 for(e = multi->msglist->head; e; e = e->next) {
1505 /* expire the new receiving pipeline head */
1506 if(easy->easy_conn->recv_pipe->head)
1507 Curl_expire(easy->easy_conn->recv_pipe->head->ptr, 1);
1865 /* extract the head of the list to return */
1866 e = multi->msglist->head;
1987 entry->easy = easy_conn->recv_pipe->head->next->ptr;
1989 entry->easy = easy_conn->recv_pipe->head->ptr;
2001 entry->easy = easy_conn->send_pipe->head->next->ptr;
2003 entry->easy = easy_conn->send_pipe->head
[all...]
H A Dtelnet.c766 struct curl_slist *head; local
788 for(head = data->set.telnet_options; head; head=head->next) {
789 if(sscanf(head->data, "%127[^= ]%*[ =]%255s",
820 failf(data, "Unknown telnet option %s", head->data);
825 failf(data, "Syntax error in telnet option: %s", head->data);
H A Durl.c389 for(curr = pipeline->head; curr; curr=curr->next) {
399 for(curr = pipeline->head; curr; curr=curr->next) {
409 for(curr = pipeline->head; curr; curr=curr->next) {
419 for(curr = pipeline->head; curr; curr=curr->next) {
2760 curr = pipeline->head;
2777 curr = pipeline->head;
2788 struct curl_llist_element *curr = pipeline->head;
2822 curr = pipeline->head;
4150 proxyptr = proxy; /* No xxx:// head: It's a HTTP proxy */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/tests/unit/
H A Dunit1300.c61 struct curl_llist_element *head; variable in typeref:struct:curl_llist_element
74 * 2: list head will be NULL
80 fail_unless(llist->head == NULL, "list head should initiate to NULL");
91 * 2: list head will hold the data "unusedData_case1"
92 * 3: list tail will be the same as list head
95 curlErrCode = Curl_llist_insert_next(llist, llist->head, &unusedData_case1);
99 /*test that the list head data holds my unusedData */
100 fail_unless(llist->head->ptr == &unusedData_case1,
103 fail_unless(llist->tail == llist->head,
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/tc/
H A Dm_ematch.c229 static int flatten_tree(struct ematch *head, struct ematch *tree) argument
238 for (t = head; t->next; t = t->next);
240 count += flatten_tree(head, tree->child);
249 for (i = 0, t = head; t; t = t->next, i++)
252 for (t = head; t; t = t->next)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iptables-1.4.12.1/
H A Dconfig.guess233 # types through head -n 1, so we only detect the type of CPU 0.
234 ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1`
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iptables-1.4.12.1/iptables/
H A Dxtoptions.c1140 void xtables_lmap_free(struct xtables_lmap *head) argument
1144 for (; head != NULL; head = next) {
1145 next = head->next;
1146 free(head->name);
1147 free(head);
1151 int xtables_lmap_name2id(const struct xtables_lmap *head, const char *name) argument
1153 for (; head != NULL; head = head
1159 xtables_lmap_id2name(const struct xtables_lmap *head, int id) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iptables-1.4.12.1/libiptc/
H A Dlibiptc.c162 /* allocate a new chain head for the cache */
685 /* Returns chain head if found, otherwise NULL. */
717 /* Returns chain head if found, otherwise NULL. */
783 /* Stop on wrap around, if list head is reached */
785 debug("Stop, list head reached\n");
861 h->chain_index[0] = c; /* Update chain index head */
879 /* Stop if list head is reached */
881 debug("Insert, list head reached add to tail\n");
1146 struct iptcb_chain_start *head; local
1152 head
[all...]
H A Dlinux_list.h85 * @head: list head to add it after
87 * Insert a new entry after the specified head.
90 static inline void list_add(struct list_head *new, struct list_head *head) argument
92 __list_add(new, head, head->next);
98 * @head: list head to add it before
100 * Insert a new entry before the specified head.
103 static inline void list_add_tail(struct list_head *new, struct list_head *head) argument
140 list_add_rcu(struct list_head *new, struct list_head *head) argument
161 list_add_tail_rcu(struct list_head *new, struct list_head *head) argument
238 list_move(struct list_head *list, struct list_head *head) argument
249 list_move_tail(struct list_head *list, struct list_head *head) argument
260 list_empty(const struct list_head *head) argument
277 list_empty_careful(const struct list_head *head) argument
283 __list_splice(struct list_head *list, struct list_head *head) argument
302 list_splice(struct list_head *list, struct list_head *head) argument
315 list_splice_init(struct list_head *list, struct list_head *head) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/l2tpd-0.69/
H A Dcall.c575 st = tunnels.head;
599 st = tunnels.head;
683 st->next = tunnels.head;
684 tunnels.head = st;

Completed in 254 milliseconds

1234567891011>>