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

1234567891011>>

/opensolaris-onvv-gate/usr/src/cmd/lp/lib/lp/
H A Dwherelist.c41 char ** list
44 wherelist (item, list)
46 register char **list;
49 if (!list || !*list)
52 while (*list) {
53 if (STREQU(*list, item))
54 return (list);
55 list++;
H A Dlenlist.c36 char ** list
39 lenlist (list)
40 char **list;
45 if (!list)
47 for (pl = list; *pl; pl++)
49 return (pl - list);
H A Dfreelist.c41 char ** list
44 freelist (list)
45 char **list;
50 if (list) {
51 for (pp = list; *pp; pp++)
53 Free ((char *)list);
H A Dcharset.c41 char ** list
44 search_cslist (item, list)
46 register char **list;
52 if (!list || !*list)
62 while (*list) {
63 alias = strchr(*list, '=');
65 return (*list);
66 list++;
H A Dsearchlist.c41 char ** list
44 searchlist (item, list)
46 register char **list;
49 if (!list || !*list)
59 while (*list) {
61 STREQU(*list, item)
62 || STREQU(*list, NAME_ANY)
63 || STREQU(*list, NAME_ALL)
66 list
[all...]
H A Dsprintlist.c43 char ** list
46 sprintlist (list)
47 char **list;
59 if (!list || !*list)
62 for (plist = list; *plist; plist++)
71 for (plist = list; *plist; plist++) {
/opensolaris-onvv-gate/usr/src/cmd/fm/modules/common/sw-diag-response/software-response/
H A Dsoftware-response.conf29 subscribe list.repaired
/opensolaris-onvv-gate/usr/src/ucbcmd/sbcp/
H A Dmksysent29 # mksysent - generate the sysent table from the list of system calls
36 print "! This file is automatically generated from syscalls.list."
38 print "! See mksysent and syscalls.list for details."
68 ' <syscalls.list
/opensolaris-onvv-gate/usr/src/tools/protocmp/
H A Dstdusers.c86 stdfind(const char *name, const struct stdlist *list) argument
88 while (list->name != NULL) {
89 if (strcmp(name, list->name) == 0)
90 return (list->value);
91 list++;
97 stdfindbyvalue(int value, const struct stdlist *list) argument
99 while (list->name != NULL) {
100 if (value == list->value)
101 return (list->name);
102 list
[all...]
/opensolaris-onvv-gate/usr/src/cmd/prstat/
H A Dprsort.c39 list_alloc(list_t *list, int size) argument
42 list->l_size = size;
43 list->l_ptrs = Zalloc(sizeof (void *) * (size + 1));
48 list_free(list_t *list) argument
50 if (list && list->l_ptrs) {
51 free(list->l_ptrs);
52 list->l_ptrs = NULL;
108 list_setkeyfunc(char *arg, optdesc_t *opt, list_t *list, int type) argument
110 if (list
146 list_getkeyval(list_t *list, void *ptr) argument
152 compare_keys(list_t *list, ulong_t key1, ulong_t key2) argument
163 list_insert(list_t *list, void *ptr) argument
188 list_preinsert(list_t *list, void *ptr) argument
209 list_sort(list_t *list) argument
[all...]
/opensolaris-onvv-gate/usr/src/cmd/fm/modules/sun4v/etm/
H A Detm.conf29 subscribe list.repaired
/opensolaris-onvv-gate/usr/src/lib/libsys/common/
H A Dlibsys.sh53 ' libsys.list > libsys.c
/opensolaris-onvv-gate/usr/src/lib/libsys/sparc/
H A Dlibsys.sh39 ' libsyss.list > libsyss.s
/opensolaris-onvv-gate/usr/src/uts/common/io/ib/ibnex/
H A Dib.conf32 # The "port-svc-list" determines the communication services that are
37 # The "vppa-svc-list" determines the communication services that are
42 # The "hca-svc-list" determines the communication services that are
47 # The format of "port-svc-list" is "<service name>", "<service name>", ..
48 # The format of "vppa-svc-list" is "<service name>", "<service name>", ..
49 # The format of "hca-svc-list" is "<service name>", "<service name>", ..
55 # 4. Service names specified in port-svc-list, vppa-svc-list &
56 # hca-svc-list must be unique.
61 # port-svc-list
[all...]
/opensolaris-onvv-gate/usr/src/uts/common/sys/
H A Dva_impl.h56 * the macro __va_start(list, name) starting the list iteration
57 * the macro __va_arg(list, type) getting the current arg and iterating
58 * the macro __va_copy(to, from) to bookmark the list iteration
59 * the macro __va_end(list) to end the iteration
63 * the identifier __builtin_va_alist for the variable list pseudo parameter
64 * the type __va_alist_type for the variable list pseudo parameter
65 * the type __va_list defining the type of the variable list iterator
113 #define __va_start(list, name) ((list)
117 __va_end(__va_list list) argument
[all...]
H A Dvarargs.h67 #define va_start(list, name) __va_start(list, name)
68 #define va_arg(list, type) __va_arg(list, type)
70 #define va_end(list) __va_end(list)
80 #define va_start(list) __va_start(list, va_alist)
81 #define va_arg(list, type) __va_arg(list, typ
[all...]
/opensolaris-onvv-gate/usr/src/lib/print/libprint/common/
H A Dlist.c39 #include <list.h>
44 * list_append() takes in a list (type **) and a pointer to an item to add
45 * to the list and returns a new list with the new item appended on the
46 * end. The list is NULL terminated. If there was an error, NULL is
47 * returned. For reasonable efficiency, the list will be allocated
51 list_append(void **list, void *item) argument
54 syslog(LOG_DEBUG, "list_append(0x%x, 0x%x)", list, item);
57 return (list);
59 if (list
89 list_append_unique(void **list, void *item, int (*cmp)(void *, void*)) argument
105 list_locate(void **list, int (*compair)(void *, void *), void *element) argument
129 void **list = NULL; local
172 list_iterate(void **list, int (*vfunc)(void *, va_list), ...) argument
[all...]
/opensolaris-onvv-gate/usr/src/uts/common/io/ib/clients/of/sol_ofs/
H A Dsol_ofs_gen_util.c40 * Doubly linked per user context IB resource list definitions
41 * Protection must occur * outside of the list.
47 * Adds the entry to the tail of the list.
50 add_genlist(genlist_t *list, uintptr_t data, void *data_context) argument
62 new_entry->prev = list->tail;
64 if (!list->count) {
65 list->tail = new_entry;
66 list->head = new_entry;
68 list->tail->next = new_entry;
69 list
79 delete_genlist(genlist_t *list, genlist_entry_t *entry) argument
104 remove_genlist_head(genlist_t *list) argument
122 flush_genlist(genlist_t *list) argument
135 genlist_empty(genlist_t *list) argument
146 insert_genlist_tail(genlist_t *list, genlist_entry_t *entry) argument
[all...]
/opensolaris-onvv-gate/usr/src/lib/libsasl/include/
H A Dmd5global.h30 If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it
31 returns an empty list.
34 #define PROTO_LIST(list) list
36 #define PROTO_LIST(list) ()
/opensolaris-onvv-gate/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);
/opensolaris-onvv-gate/usr/src/cmd/lvm/metassist/layout/
H A Dlayout_discovery.h62 extern int get_known_slices(dlist_t **list);
63 extern int get_known_disks(dlist_t **list);
64 extern int get_known_hbas(dlist_t **list);
70 extern int get_usable_slices(dlist_t **list);
71 extern int get_usable_disks(dlist_t **list);
72 extern int get_usable_hbas(dlist_t **list);
/opensolaris-onvv-gate/usr/src/head/iso/
H A Dstdarg_iso.h74 #define va_start(list, name) __va_start(list, name)
75 #define va_arg(list, type) __va_arg(list, type)
76 #define va_end(list) __va_end(list)
/opensolaris-onvv-gate/usr/src/cmd/fcinfo/
H A Dnpivconfig35 /usr/sbin/fcadm create-port-list
/opensolaris-onvv-gate/usr/src/cmd/fm/modules/common/ext-event-transport/
H A Dext-event-transport.conf47 # Changing this list may lead to breakage and/or excessive event forwarding.
49 subscribe list.*
/opensolaris-onvv-gate/usr/src/cmd/ssh/include/
H A Dxlist.h16 char ** xsplit(char *list, char sep);
18 void xfree_split_list(char **list);

Completed in 183 milliseconds

1234567891011>>