Searched refs:list (Results 1 - 25 of 536) sorted by relevance

1234567891011>>

/osnet-11/usr/src/lib/libsys/common/
H A Dlibsys.sh53 ' libsys.list > libsys.c
/osnet-11/usr/src/lib/libsys/sparc/
H A Dlibsys.sh39 ' libsyss.list > libsyss.s
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
H A Detype_list.c35 krb5int_count_etypes(const krb5_enctype *list) argument
39 for (count = 0; list[count]; count++);
43 /* Copy the zero-terminated enctype list old_list into *new_list. */
48 krb5_enctype *list; local
52 list = malloc(sizeof(krb5_enctype) * (count + 1));
53 if (list == NULL)
55 memcpy(list, old_list, sizeof(krb5_enctype) * (count + 1));
56 *new_list = list;
/osnet-11/usr/src/lib/libsasl/include/
H A Dmd5global.h28 If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it
29 returns an empty list.
32 #define PROTO_LIST(list) list
34 #define PROTO_LIST(list) ()
/osnet-11/usr/src/lib/sun_fc/common/
H A DSun_fcFreeLibrary.cc47 HBAList* list = HBAList::instance(); local
48 HBA_STATUS status = list->unload();
49 delete (list);
H A DSun_fcGetNumberOfTgtAdapters.cc42 HBAList* list = HBAList::instance(); local
43 return (list->getNumberofTgtAdapters());
H A DSun_fcLoadLibrary.cc48 HBAList* list = HBAList::instance(); local
49 return (list->load());
H A DSun_fcGetNumberOfAdapters.cc43 HBAList* list = HBAList::instance(); local
44 HBA_UINT32 ret = list->getNumberofAdapters();
50 return (list->getNumberofAdapters());
H A DSun_fcGetVendorLibraryAttributes.cc52 HBAList* list = HBAList::instance(); local
53 *attrs = list->getVSLAttributes();
/osnet-11/usr/src/cmd/parted/
H A Dstrlist.h45 extern void str_list_destroy (StrList* list);
46 extern void str_list_destroy_node (StrList* list);
48 extern StrList* str_list_duplicate (const StrList* list);
49 extern StrList* str_list_duplicate_node (const StrList* list);
50 extern StrList* str_list_insert (StrList* list, const char* str);
51 extern StrList* str_list_append (StrList* list, const char* str);
52 extern StrList* str_list_append_unique (StrList* list, const char* str);
54 extern char* str_list_convert (const StrList* list);
55 extern char* str_list_convert_node (const StrList* list);
57 extern void str_list_print (const StrList* list);
[all...]
H A Dcommand.c64 command_register (Command** list, Command* cmd) argument
68 for (i = 0; list [i]; i++);
70 list [i] = cmd;
71 list [i + 1] = (Command*) NULL;
75 command_get (Command** list, char* name) argument
84 for (i=0; list [i]; i++) {
85 switch (str_list_match_any (list [i]->names, name)) {
87 return list [i];
104 return list [partial_match];
108 command_get_names (Command** list) argument
[all...]
H A Dstrlist.c202 StrList* list; local
204 list = xmalloc (sizeof (StrList));
205 list->next = NULL;
207 return list;
211 str_list_destroy (StrList* list) argument
213 if (list) {
214 str_list_destroy (list->next);
215 str_list_destroy_node (list);
220 str_list_destroy_node (StrList* list) argument
222 void *p = (char *) (list
236 str_list_duplicate(const StrList* list) argument
261 _str_list_append(StrList* list, const wchar_t* str) argument
278 str_list_append(StrList* list, const char* str) argument
284 str_list_append_unique(StrList* list, const char* str) argument
302 str_list_insert(StrList* list, const char* str) argument
312 StrList* list; local
331 StrList* list; local
346 str_list_convert_node(const StrList* list) argument
352 str_list_convert(const StrList* list) argument
377 str_list_print(const StrList* list) argument
433 str_list_print_wrap(const StrList* list, int line_length, int offset, int indent) argument
503 _str_list_match_node(const StrList* list, const wchar_t* str) argument
513 str_list_match_node(const StrList* list, const char* str) argument
529 str_list_match_any(const StrList* list, const char* str) argument
546 str_list_match(const StrList* list, const char* str) argument
571 str_list_length(const StrList* list) argument
[all...]
H A Dcommand.h40 void command_register (Command** list, Command* cmd);
42 extern Command* command_get (Command** list, char* name);
43 extern StrList* command_get_names (Command** list);
/osnet-11/usr/src/lib/libresolv2/include/isc/
H A Dlist.h23 #define INIT_LIST(list) \
24 do { (list).head = NULL; (list).tail = NULL; } while (0)
37 #define HEAD(list) ((list).head)
38 #define TAIL(list) ((list).tail)
39 #define EMPTY(list) ((list).head == NULL)
41 #define PREPEND(list, el
[all...]
/osnet-11/usr/src/lib/libldap5/sources/ldap/common/
H A Dreslist.c41 ldap_delete_result_entry( LDAPMessage **list, LDAPMessage *e ) argument
45 for ( tmp = *list; tmp != NULL && tmp != e; tmp = tmp->lm_chain )
52 *list = tmp->lm_chain;
61 ldap_add_result_entry( LDAPMessage **list, LDAPMessage *e ) argument
63 e->lm_chain = *list;
64 *list = e;
/osnet-11/usr/src/lib/libast/common/cdt/
H A Ddtrestore.c24 /* Restore dictionary from given tree or list of elements.
25 ** There are two cases. If called from within, list is nil.
26 ** From without, list is not nil and data->size must be 0.
32 int dtrestore(reg Dt_t* dt, reg Dtlink_t* list) argument
34 int dtrestore(dt, list)
36 reg Dtlink_t* list;
44 if(!list) /* restoring a flattened dictionary */
47 list = dt->data->here;
49 else /* restoring an extracted list of elements */
61 { *s = list;
[all...]
H A Ddtmethod.c37 reg Dtlink_t *list, *r; local
50 /* get the list of elements */
51 list = dtflatten(dt);
70 { if((r = list) )
74 list->left = r;
77 dt->data->head = list;
81 while(list)
82 { r = list->right;
83 (*meth->searchf)(dt,(Void_t*)list,DT_RENEW);
84 list
[all...]
H A Ddtextract.c36 reg Dtlink_t *list, **s, **ends; local
39 list = dt->data->here;
41 { list = dtflatten(dt);
46 { list = dt->data->head;
54 return list;
H A Ddtflatten.c24 /* Flatten a dictionary into a linked list.
37 reg Dtlink_t *t, *r, *list, *last, **s, **ends; local
43 list = last = NIL(Dtlink_t*);
49 else list = last = t;
57 list = dt->data->head;
61 for(list = last = r, r = r->right; r; last = r, r = r->right)
71 dt->data->here = list;
74 return list;
/osnet-11/usr/src/lib/libast/common/comp/
H A Datexit.c53 struct list
55 struct list* next;
59 static struct list* funclist;
66 register struct list* p;
68 if (!(p = newof(0, struct list, 1, 0))) return(-1);
78 register struct list* p;
/osnet-11/usr/src/lib/libldap4/common/
H A Daddentry.c39 ldap_delete_result_entry( LDAPMessage **list, LDAPMessage *e ) argument
43 for ( tmp = *list; tmp != NULL && tmp != e; tmp = tmp->lm_chain )
50 *list = tmp->lm_chain;
59 ldap_add_result_entry( LDAPMessage **list, LDAPMessage *e ) argument
61 e->lm_chain = *list;
62 *list = e;
/osnet-11/usr/src/cmd/sendmail/db/db/
H A Ddb_shash.c34 } list[] = { variable in typeref:struct:__anon114
98 if (list[i].power == 0) {
102 if (list[i].power >= n_buckets)
105 return (list[i].prime);
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/profile/
H A Dprof_get.c24 * publicy exported functions used to build up a null-terminated char ** list
27 * The publicly exported interface for freeing char** list is
32 * Initialize the string list abstraction.
34 errcode_t init_list(struct profile_string_list *list) argument
36 list->num = 0;
37 list->max = 10;
38 list->list = malloc(list->max * sizeof(char *));
39 if (list
49 end_list(struct profile_string_list *list, char ***ret_list) argument
71 add_to_list(struct profile_string_list *list, const char *str) argument
96 is_list_member(struct profile_string_list *list, const char *str) argument
114 profile_free_list(char **list) argument
[all...]
/osnet-11/usr/src/lib/libeti/form/common/
H A Dty_enum.c43 * set_field_type(f, TYPE_ENUM, list, checkcase, checkuniq);
45 * char ** list; list of acceptable strings
52 char ** list; member in struct:__anon1642
90 n -> list = va_arg(*ap, char **);
94 for (v = n -> list; *v; ++v)
96 n -> count = (int) (v - n -> list);
153 char ** list = n -> list; local
160 while (x = *list
188 char ** list = n -> list; local
210 char ** list = n -> list + n -> count - 1; local
[all...]
/osnet-11/usr/src/lib/abi/apptrace/common/
H A Dabienv.c55 build_env_list(Liblist **list, char const *env) argument
74 lp->l_next = *list;
75 *list = lp;
81 build_env_list1(Liblist **list, Liblist **listend, const char *env) argument
94 appendlist(list, listend, envstr, 1);
103 appendlist(list, listend, tok, 1);
110 env_to_intlist(Intlist **list, char const *env) argument
133 ip->i_next = *list;
134 *list = ip;
140 appendlist(Liblist **list, Liblis argument
201 check_list(Liblist *list, char const *str) argument
234 check_intlist(Intlist *list, char const *iface) argument
[all...]

Completed in 60 milliseconds

1234567891011>>