Searched refs:list (Results 76 - 100 of 3573) sorted by relevance

1234567891011>>

/macosx-10.10.1/objc4-646/runtime/
H A Dobjc-externalref.mm52 objc_xref_type_t _type; // type of list.
57 size_t _search; // lowest index in list which *might* be unused
62 #define is_strong(list) (list->_type == OBJC_XREF_STRONG)
63 #define is_weak(list) (list->_type == OBJC_XREF_WEAK)
86 static bool _grow_list(external_ref_list *list) {
87 auto_memory_type_t memory_type = (is_strong(list) ? AUTO_MEMORY_ALL_POINTERS : AUTO_MEMORY_ALL_WEAK_POINTERS);
88 size_t new_size = list->_size + PAGE_MAX_SIZE / sizeof(void *);
90 void **new_list = (void **)(list
[all...]
H A Dobjc-initialize.mm49 * Each thread keeps a list of classes it's initializing.
107 * Per-thread list of classes currently being initialized by that thread.
110 * The list is a simple array of metaclasses (the metaclass stores
121 * Return the list of classes being initialized by this thread.
122 * If create == YES, create the list when no classes are being initialized by this thread.
128 _objc_initializing_classes *list;
134 list = data->initializingClasses;
135 if (list == nil) {
139 list = (_objc_initializing_classes *)
141 data->initializingClasses = list;
[all...]
/macosx-10.10.1/dcerpc-61/dcerpc/ncklib/
H A Drpclist.h11 * notice, this list of conditions and the following disclaimer.
13 * notice, this list of conditions and the following disclaimer in the
55 * notice, this list of conditions and the following disclaimer.
57 * notice, this list of conditions and the following disclaimer in the
89 ** Various types and macros for list and queue processing.
102 * and queues. Lists are doubly linked with the list head containing both
103 * a pointer to the first element of the list as well as a pointer to the
104 * last element in the list. The elements on these lists are maintained in
106 * elements can be easily added to the end of the list.
114 * provided to individual list element
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/builtins/
H A Dkill.c44 kill_builtin (list)
45 WORD_LIST *list;
52 if (list == 0)
64 while (list)
66 word = list->word->word;
71 list = list->next;
75 list = list->next;
76 if (list)
[all...]
H A Djobs.c30 /* The `jobs' command. Prints outs a list of active jobs. If the
39 jobs_builtin (list)
40 WORD_LIST *list;
50 while ((opt = internal_getopt (list, "lpnxrs")) != -1)
84 list = loptend;
87 return (execute_list_with_replacements (list));
89 if (!list)
106 while (list)
109 job = get_job_spec (list);
113 sh_badjob (list
[all...]
H A Dalias.c33 alias_builtin (list)
34 WORD_LIST *list;
43 while ((offset = internal_getopt (list, "p")) != -1)
57 list = loptend;
59 if (list == 0 || pflag)
74 if (list == 0)
79 while (list)
81 name = list->word->word;
110 list = list
[all...]
H A Dshift.c28 shift_builtin (list)
29 WORD_LIST *list;
35 times = get_numeric_arg (list, 0);
41 sh_erange (list ? list->word->word : NULL, _("shift count"));
47 sh_erange (list ? list->word->word : NULL, _("shift count"));
H A Dexit.c33 exit_builtin (list)
34 WORD_LIST *list;
42 return (exit_or_logout (list));
49 logout_builtin (list)
50 WORD_LIST *list;
58 return (exit_or_logout (list));
62 exit_or_logout (list)
63 WORD_LIST *list;
99 (list == 0), use the exit status we saved before running the trap
101 exit_value = (running_trap == 1 && list
[all...]
/macosx-10.10.1/postfix-255/postfix/src/global/
H A Dmatch_service.c15 /* int match_service_match(list, name_type)
16 /* ARGV *list;
19 /* void match_service_free(list)
20 /* ARGV *list;
40 /* match_service_init() parses the pattern list. The result
47 /* against the specified pattern list.
97 /* match_service_init - initialize pattern list */
102 ARGV *list = argv_alloc(1); local
108 argv_add(list, item, (char *) 0);
109 argv_terminate(list);
119 ARGV *list = argv_alloc(1); local
131 match_service_match(ARGV *list, const char *name_type) argument
173 match_service_free(ARGV *list) argument
[all...]
/macosx-10.10.1/xnu-2782.1.97/bsd/netinet/
H A Ddhcp_options.c93 ptrlist_init(ptrlist_t * list) argument
95 bzero(list, sizeof(*list));
100 ptrlist_free(ptrlist_t * list) argument
102 if (list->array)
103 my_free(list->array);
104 ptrlist_init(list);
109 ptrlist_count(ptrlist_t * list) argument
111 if (list == NULL || list
118 ptrlist_element(ptrlist_t * list, int i) argument
129 ptrlist_grow(ptrlist_t * list) argument
150 ptrlist_add(ptrlist_t * list, const void * element) argument
161 ptrlist_concat(ptrlist_t * list, ptrlist_t * extra) argument
192 dhcpol_add(dhcpol_t * list, const void * element) argument
198 dhcpol_count(dhcpol_t * list) argument
204 dhcpol_element(dhcpol_t * list, int i) argument
210 dhcpol_init(dhcpol_t * list) argument
216 dhcpol_free(dhcpol_t * list) argument
222 dhcpol_concat(dhcpol_t * list, dhcpol_t * extra) argument
237 dhcpol_parse_buffer(dhcpol_t * list, const void * buffer, int length) argument
294 dhcpol_find(dhcpol_t * list, int tag, int * len_p, int * start) argument
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Dulist.c33 static void ulist_addFirstItem(UList *list, UListNode *newItem);
58 * Function called by addItemEndList or addItemBeginList when the first item is added to the list.
61 static void ulist_addFirstItem(UList *list, UListNode *newItem) { argument
64 list->head = newItem;
65 list->tail = newItem;
66 list->currentIndex = 0;
69 U_CAPI void U_EXPORT2 ulist_addItemEndList(UList *list, const void *data, UBool forceDelete, UErrorCode *status) { argument
72 if (U_FAILURE(*status) || list == NULL || data == NULL) {
84 if (list->size == 0) {
85 ulist_addFirstItem(list, newIte
96 ulist_addItemBeginList(UList *list, const void *data, UBool forceDelete, UErrorCode *status) argument
124 ulist_containsString(const UList *list, const char *data, int32_t length) argument
146 ulist_getNext(UList *list) argument
160 ulist_getListSize(const UList *list) argument
168 ulist_resetList(UList *list) argument
175 ulist_deleteList(UList *list) argument
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/sh/
H A Dstringlist.c1 /* stringlist.c - functions to handle a generic `list of strings' structure */
49 ret->list = strvec_create (n+1);
52 ret->list[i] = (char *)NULL;
56 ret->list = (char **)NULL;
75 sl->list = strvec_resize (sl->list, n + 1);
77 sl->list[i] = (char *)NULL;
87 if (sl == 0 || sl->list == 0)
89 strvec_flush (sl->list);
99 if (sl->list)
290 WORD_LIST *list; local
[all...]
/macosx-10.10.1/rsync-45/rsync/
H A Duidlist.c117 /* The default gid might not be in the list on some systems. */
157 /* Add a uid to the list of uids. Only called on receiving side. */
173 /* Add a gid to the list of gids. Only called on receiving side. */
195 struct idlist *list; local
205 for (list = uidlist; list; list = list->next) {
206 if (list->id == (int)uid)
207 return last_out = (uid_t)list
216 struct idlist *list; local
238 struct idlist *list; local
254 struct idlist *list; local
271 struct idlist *list; local
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/hcrypto/libtommath/
H A Ddep.pl62 my $list = $filename;
75 if (!($list =~ /$a/)) {
78 $list = $list . "," . $a;
82 @deplist{$filename} = $list;
96 $list = "";
105 if ($list =~ /@funcs[0]/) {
108 $list = $list . @funcs[0];
114 my $temp = $list;
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/examples/loadables/
H A Dstrftime.c21 strftime_builtin (list)
22 WORD_LIST *list;
31 if (list == 0)
37 if (no_options (list))
40 format = list->word->word;
47 list = list->next;
49 if (list && list->word->word)
51 n = legal_number (list
[all...]
H A Dbasename.c15 basename_builtin (list)
16 WORD_LIST *list;
21 if (list == 0)
27 if (no_options (list))
30 string = list->word->word;
32 if (list->next)
34 list = list->next;
35 suffix = list->word->word;
38 if (list
[all...]
H A Drealpath.c44 realpath_builtin(list)
45 WORD_LIST *list;
51 if (list == 0) {
58 while ((opt = internal_getopt (list, "csv")) != -1) {
74 list = loptend;
76 if (list == 0)
79 for (es = EXECUTION_SUCCESS; list; list = list->next) {
80 p = list
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/rdoc/markup/
H A Dto_test.rb13 @list = []
32 def accept_list_start(list)
33 @list << case list.type
39 list.type
43 def accept_list_end(list)
44 @list.pop
48 @res << "#{' ' * (@list.size - 1)}#{@list.last}: "
/macosx-10.10.1/tcl-105/tcl_ext/tclx/tclx/tests/
H A Dnice.test52 list [catch {nice 0 1} msg] $msg
80 list [nice 3] [nice]
81 } [list [expr $niceBase+3] [expr $niceBase+3]]
84 list [nice 4] [nice]
85 } [list [expr $niceBase+3+4] [expr $niceBase+3+4]]
94 set stat [list $stat $msg]
100 list [nice -1] [nice]
101 } [list [expr $niceBase+3+4-1] [expr $niceBase+3+4-1]]
104 list [nice -9] [nice]
105 } [list [exp
[all...]
/macosx-10.10.1/libresolv-57/
H A Dres_update.h28 #include <isc/list.h>
32 #define INIT_LIST(list) do { (list).head = NULL; (list).tail = NULL; } while (0)
33 #define HEAD(list) ((list).head)
34 #define TAIL(list) ((list).tail)
35 #define EMPTY(list) ((list)
[all...]
/macosx-10.10.1/bind9-45.101/bind9/unit/atf-src/atf-c/detail/
H A Dlist_test.c11 * notice, this list of conditions and the following disclaimer.
13 * notice, this list of conditions and the following disclaimer in the
37 #include "list.h"
55 atf_list_t list; local
57 RE(atf_list_init(&list));
58 ATF_REQUIRE_EQ(atf_list_size(&list), 0);
59 atf_list_fini(&list);
73 atf_list_t list; local
78 RE(atf_list_init(&list));
79 RE(atf_list_append(&list,
97 atf_list_t list; local
117 atf_list_t list; local
131 atf_list_t list; local
163 atf_list_t list; local
273 atf_list_t list; local
312 atf_list_t list; local
[all...]
/macosx-10.10.1/bind9-45.101/bind9/bin/named/
H A Dlwsearch.c42 ns_lwsearchlist_t *list; local
48 list = isc_mem_get(mctx, sizeof(ns_lwsearchlist_t));
49 if (list == NULL)
52 result = isc_mutex_init(&list->lock);
54 isc_mem_put(mctx, list, sizeof(ns_lwsearchlist_t));
57 list->mctx = NULL;
58 isc_mem_attach(mctx, &list->mctx);
59 list->refs = 1;
60 ISC_LIST_INIT(list->names);
61 list
83 ns_lwsearchlist_t *list; local
112 ns_lwsearchlist_append(ns_lwsearchlist_t *list, dns_name_t *name) argument
134 ns_lwsearchctx_init(ns_lwsearchctx_t *sctx, ns_lwsearchlist_t *list, dns_name_t *name, unsigned int ndots) argument
[all...]
/macosx-10.10.1/swig-12/Lib/std/
H A Dstd_list.i2 // std::list
9 %define %std_list_methods(list)
10 %std_sequence_methods(list)
20 %define %std_list_methods_val(list)
21 %std_sequence_methods_val(list)
31 void merge(list& x);
35 // std::list
40 // -- f(std::list<T>), f(const std::list<T>&):
42 // previously wrapped std::list<
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/include/security_cdsa_client/
H A Dmultidldb.h42 List(const vector<DLDbIdentifier> &list) : vector<DLDbIdentifier>(list) {} argument
48 ListRef(const vector<DLDbIdentifier> &list) : RefPointer<List>(new List(list)) {} argument
51 MultiDLDbImpl(const vector<DLDbIdentifier> &list, bool useSecureStorage, const Cssm &cssm);
52 MultiDLDbImpl(const vector<DLDbIdentifier> &list, bool useSecureStorage);
58 void list(const vector<DLDbIdentifier> &list);
59 const vector<DLDbIdentifier> &list() { return *mListRef; } function in class:Security::CssmClient::MultiDLDbImpl
85 MultiDLDb(const vector<DLDbIdentifier> &list, boo argument
87 MultiDLDb(const vector<DLDbIdentifier> &list, bool useSecureStorage) argument
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_cdsa_client/lib/
H A Dmultidldb.h42 List(const vector<DLDbIdentifier> &list) : vector<DLDbIdentifier>(list) {} argument
48 ListRef(const vector<DLDbIdentifier> &list) : RefPointer<List>(new List(list)) {} argument
51 MultiDLDbImpl(const vector<DLDbIdentifier> &list, bool useSecureStorage, const Cssm &cssm);
52 MultiDLDbImpl(const vector<DLDbIdentifier> &list, bool useSecureStorage);
58 void list(const vector<DLDbIdentifier> &list);
59 const vector<DLDbIdentifier> &list() { return *mListRef; } function in class:Security::CssmClient::MultiDLDbImpl
85 MultiDLDb(const vector<DLDbIdentifier> &list, boo argument
87 MultiDLDb(const vector<DLDbIdentifier> &list, bool useSecureStorage) argument
[all...]

Completed in 369 milliseconds

1234567891011>>