Searched refs:list (Results 26 - 50 of 3573) sorted by relevance

1234567891011>>

/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dllist.c46 struct curl_llist *list; local
48 list = malloc(sizeof(struct curl_llist));
49 if(!list)
52 llist_init(list, dtor);
54 return list;
60 * Inserts a new list element after the given one 'e'. If the given existing
61 * entry is NULL and the list already has elements, the new one will be
62 * inserted first in the list.
69 Curl_llist_insert_next(struct curl_llist *list, struct curl_llist_element *e, argument
77 if(list
110 Curl_llist_remove(struct curl_llist *list, struct curl_llist_element *e, void *user) argument
145 Curl_llist_destroy(struct curl_llist *list, void *user) argument
156 Curl_llist_count(struct curl_llist *list) argument
164 Curl_llist_move(struct curl_llist *list, struct curl_llist_element *e, struct curl_llist *to_list, struct curl_llist_element *to_e) argument
[all...]
H A Dslist.c31 /* returns last node in linked list */
32 static struct curl_slist *slist_get_last(struct curl_slist *list) argument
37 if(!list)
41 item = list;
49 * Curl_slist_append_nodup() appends a string to the linked list. Rather than
57 struct curl_slist *Curl_slist_append_nodup(struct curl_slist *list, char *data) argument
71 /* if this is the first item, then new_item *is* the list */
72 if(!list)
75 last = slist_get_last(list);
77 return list;
87 curl_slist_append(struct curl_slist *list, const char *data) argument
127 curl_slist_free_all(struct curl_slist *list) argument
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/contrib/ldapc++/src/
H A DSaslInteractionHandler.h9 #include <list>
15 virtual void handleInteractions( const std::list<SaslInteraction*> &cb )=0;
21 virtual void handleInteractions( const std::list<SaslInteraction*> &cb );
25 std::list<SaslInteraction*> cleanupList;
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/InjectedBundle/API/c/
H A DWKBundleBackForwardList.h8 * notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
37 WK_EXPORT WKBundleBackForwardListItemRef WKBundleBackForwardListCopyItemAtIndex(WKBundleBackForwardListRef list, int index);
39 WK_EXPORT unsigned WKBundleBackForwardListGetBackListCount(WKBundleBackForwardListRef list);
40 WK_EXPORT unsigned WKBundleBackForwardListGetForwardListCount(WKBundleBackForwardListRef list);
42 WK_EXPORT void WKBundleBackForwardListClear(WKBundleBackForwardListRef list);
/macosx-10.10.1/bash-94.1.2/bash-3.2/examples/loadables/
H A Dtruefalse.c7 true_builtin (list)
8 WORD_LIST *list;
13 false_builtin (list)
14 WORD_LIST *list;
H A Dunlink.c22 unlink_builtin (list)
23 WORD_LIST *list;
25 if (list == 0)
31 if (unlink (list->word->word) != 0)
33 builtin_error ("%s: cannot unlink: %s", list->word->word, strerror (errno));
H A Dwhoami.c12 whoami_builtin (list)
13 WORD_LIST *list;
18 while ((opt = internal_getopt (list, "")) != -1)
27 list = loptend;
28 if (list)
H A Dprintenv.c18 printenv_builtin (list)
19 WORD_LIST *list;
26 while ((opt = internal_getopt (list, "")) != -1)
35 list = loptend;
38 if (list == 0)
47 var = find_variable (list->word->word);
/macosx-10.10.1/dcerpc-61/www/lib/
H A Dbreadcrumbs.rb11 list = ["<li>#{h(page.title)}</li>"]
15 list << "<li>#{link_to_page(page)}</li>"
17 list.reverse!
20 html << list.join("\n")
/macosx-10.10.1/bootp-298/bootplib/
H A Ddynarray.h47 ptrlist_t list; member in struct:dynarray_s
52 void dynarray_init(dynarray_t * list,
55 boolean_t dynarray_add(dynarray_t * list, void * element);
56 boolean_t dynarray_remove(dynarray_t * list, int i, void * * element_p);
57 boolean_t dynarray_insert(dynarray_t * list, void * element, int i);
58 void dynarray_free(dynarray_t * list);
59 boolean_t dynarray_free_element(dynarray_t * list, int i);
61 int dynarray_count(dynarray_t * list);
62 void * dynarray_element(dynarray_t * list, int i);
63 int dynarray_index(dynarray_t * list, voi
[all...]
H A Dptrlist.h29 /* the initial number of elements in the list */
38 void ptrlist_init(ptrlist_t * list);
39 void ptrlist_init_size(ptrlist_t * list, int size);
40 boolean_t ptrlist_add(ptrlist_t * list, void * element);
41 boolean_t ptrlist_insert(ptrlist_t * list, void * element, int i);
42 void ptrlist_free(ptrlist_t * list);
44 boolean_t ptrlist_concat(ptrlist_t * list, ptrlist_t * extra);
45 int ptrlist_count(ptrlist_t * list);
46 void * ptrlist_element(ptrlist_t * list, int i);
47 boolean_t ptrlist_remove(ptrlist_t * list, in
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tk/
H A Dscrollbox.rb12 #list = Tk::Listbox.new(@frame)
14 list = TkListbox.new(@frame)
18 @path = list.path
21 list.configure 'yscroll', scroll.path+" set"
22 list.pack 'side'=>'left','fill'=>'both','expand'=>'yes'
23 scroll.configure 'command', list.path+" yview"
26 list.yscrollbar(scroll)
27 list.pack('side'=>'left','fill'=>'both','expand'=>'yes')
30 delegate('DEFAULT', list)
31 delegate('foreground', list)
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/builtins/
H A Dfg_bg.c29 fg_builtin (list)
30 WORD_LIST *list;
41 if (no_options (list))
43 list = loptend;
47 for (t = list; t && t->next; t = t->next)
51 return (fg_bg (list, fg_bit));
60 bg_builtin (list)
61 WORD_LIST *list;
71 if (no_options (list))
73 list
[all...]
H A Dsource.c67 source_builtin (list)
68 WORD_LIST *list;
73 if (no_options (list))
75 list = loptend;
77 if (list == 0)
85 if (restricted && strchr (list->word->word, '/'))
87 sh_restricted (list->word->word);
94 filename = find_path_file (list->word->word);
99 builtin_error (_("%s: file not found"), list->word->word);
103 filename = savestring (list
[all...]
H A Dwait.c30 0. If a list of pids or job specs are given, return the exit status of
42 wait_builtin (list)
43 WORD_LIST *list;
48 USE_VAR(list);
50 if (no_options (list))
52 list = loptend;
77 if (list == 0)
84 while (list)
90 w = list->word->word;
112 job = get_job_spec (list);
[all...]
H A Decho.c43 echo_builtin (list)
44 WORD_LIST *list;
55 for (; list && (temp = list->word->word) && *temp == '-'; list = list->next)
99 while (list)
102 temp = do_v9 ? ansicstr (list->word->word, STRLEN (list->word->word), 1, &i, &len)
103 : list
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/psych/
H A Dpsych.c10 VALUE list[3]; local
14 list[0] = INT2NUM((long)major);
15 list[1] = INT2NUM((long)minor);
16 list[2] = INT2NUM((long)patch);
18 return rb_ary_new4((long)3, list);
/macosx-10.10.1/autofs-246/automountd/
H A Dreplica.c60 free_replica(struct replica *list, int count) argument
65 if (list[i].host)
66 free(list[i].host);
67 if (list[i].path)
68 free(list[i].path);
70 free(list);
76 struct replica *list = NULL; local
106 * and grab the address and store it in the list
112 if ((list = realloc(list, (*coun
[all...]
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/include/isc/
H A Dlist.h32 #define ISC_LIST_INIT(list) \
33 do { (list).head = NULL; (list).tail = NULL; } while (0)
45 #define ISC_LIST_HEAD(list) ((list).head)
46 #define ISC_LIST_TAIL(list) ((list).tail)
47 #define ISC_LIST_EMPTY(list) ISC_TF((list).head == NULL)
49 #define __ISC_LIST_PREPENDUNSAFE(list, el
[all...]
/macosx-10.10.1/ntp-92/lib/isc/include/isc/
H A Dlist.h18 /* $Id: list.h,v 1.24 2007/06/19 23:47:18 tbox Exp $ */
32 #define ISC_LIST_INIT(list) \
33 do { (list).head = NULL; (list).tail = NULL; } while (0)
45 #define ISC_LIST_HEAD(list) ((list).head)
46 #define ISC_LIST_TAIL(list) ((list).tail)
47 #define ISC_LIST_EMPTY(list) ISC_TF((list)
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/docs_src/ref/transapp/
H A Darchival.cs28 char **begin, **list;
30 /* Get the list of database files. */
32 &list, DB_ARCH_ABS | DB_ARCH_DATA)) != 0) {
36 if (list != NULL) {
37 for (begin = list; *list != NULL; ++list)
38 printf("database file: %s\n", *list);
42 /* Get the list of log files. */
44 &list, DB_ARCH_AB
[all...]
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Dmatch_list.c5 /* generic list-based pattern matching
15 /* int match_list_match(list, string,...)
16 /* MATCH_LIST *list;
19 /* void match_list_free(list)
20 /* MATCH_LIST *list;
22 /* This module implements a framework for tests for list membership.
40 /* zero (with list->error set to a non-zero dictionary error
44 /* The pattern_list argument specifies a list of patterns. The third
48 /* list, passing the first string to the first function given to
97 static ARGV *match_list_parse(ARGV *list, cha argument
166 MATCH_LIST *list; local
198 match_list_match(MATCH_LIST *list,...) argument
233 match_list_free(MATCH_LIST *list) argument
[all...]
/macosx-10.10.1/rsync-45/rsync/
H A Dgetgroups.c29 gid_t *list; local
42 list = (gid_t*)malloc(sizeof (gid_t) * (n + 1));
43 if (!list) {
50 n = getgroups(n, list);
54 printf("%lu ", (unsigned long)list[i]);
55 if (list[i] == gid)
58 /* The default gid might not be in the list on some systems. */
/macosx-10.10.1/bind9-45.101/bind9/bin/named/
H A Dlistenlist.c32 destroy(ns_listenlist_t *list);
60 ns_listenlist_t *list = NULL; local
62 list = isc_mem_get(mctx, sizeof(*list));
63 if (list == NULL)
65 list->mctx = mctx;
66 list->refcount = 1;
67 ISC_LIST_INIT(list->elts);
68 *target = list;
73 destroy(ns_listenlist_t *list) { argument
94 ns_listenlist_t *list = *listp; local
109 ns_listenlist_t *list = NULL; local
[all...]
/macosx-10.10.1/dtrace-147/tools/ctfconvert/
H A Dlist.c27 #pragma ident "@(#)list.c 1.5 05/06/08 SMI"
37 #include "list.h"
40 struct list { struct
42 struct list *l_next;
45 /* Add an element to a list */
47 list_add(list_t **list, void *data) argument
53 le->l_next = *list;
54 *list = le;
57 /* Add an element to a sorted list */
59 slist_add(list_t **list, voi argument
79 list_remove(list_t **list, void *data, int (*cmp)(void *, void *, void *), void *private) argument
101 list_free(list_t *list, void (*datafree)(void *, void *), void *private) argument
119 list_iter(list_t *list, int (*func)(void *, void *), void *private) argument
144 list_count(list_t *list) argument
150 list_empty(list_t *list) argument
156 list_find(list_t *list, void *tmpl, int (*cmp)(void *, void *)) argument
167 list_first(list_t *list) argument
[all...]

Completed in 245 milliseconds

1234567891011>>