/illumos-gate/usr/src/cmd/lp/lib/lp/ |
H A D | wherelist.c | 41 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 D | lenlist.c | 36 char ** list 39 lenlist (list) 40 char **list; 45 if (!list) 47 for (pl = list; *pl; pl++) 49 return (pl - list);
|
H A D | freelist.c | 41 char ** list 44 freelist (list) 45 char **list; 50 if (list) { 51 for (pp = list; *pp; pp++) 53 Free ((char *)list);
|
H A D | charset.c | 41 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 D | searchlist.c | 41 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 D | sprintlist.c | 43 char ** list 46 sprintlist (list) 47 char **list; 59 if (!list || !*list) 62 for (plist = list; *plist; plist++) 71 for (plist = list; *plist; plist++) {
|
/illumos-gate/usr/src/cmd/fm/modules/common/sw-diag-response/software-response/ |
H A D | software-response.conf | 29 subscribe list.repaired
|
/illumos-gate/usr/src/ucbcmd/sbcp/ |
H A D | mksysent | 29 # 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
|
/illumos-gate/usr/src/tools/protocmp/ |
H A D | stdusers.c | 86 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...] |
/illumos-gate/usr/src/cmd/prstat/ |
H A D | prsort.c | 38 list_alloc(list_t *list, int size) argument 40 list->l_size = size; 42 list->l_ptrs = Zalloc(sizeof (void *) * (size + 1)); 44 list->l_ptrs = NULL; 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, in argument 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...] |
/illumos-gate/usr/src/lib/libsys/common/ |
H A D | libsys.sh | 53 ' libsys.list > libsys.c
|
/illumos-gate/usr/src/lib/libsys/sparc/ |
H A D | libsys.sh | 39 ' libsyss.list > libsyss.s
|
/illumos-gate/usr/src/cmd/fm/modules/sun4v/etm/ |
H A D | etm.conf | 29 subscribe list.repaired
|
/illumos-gate/usr/src/uts/common/sys/ |
H A D | va_impl.h | 56 * 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 D | varargs.h | 63 #define va_start(list, name) __va_start(list, name) 64 #define va_arg(list, type) __va_arg(list, type) 66 #define va_end(list) __va_end(list)
|
/illumos-gate/usr/src/uts/common/io/ib/ibnex/ |
H A D | ib.conf | 32 # 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...] |
/illumos-gate/usr/src/lib/print/libprint/common/ |
H A D | list.c | 39 #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...] |
/illumos-gate/usr/src/uts/common/io/ib/clients/of/sol_ofs/ |
H A D | sol_ofs_gen_util.c | 40 * 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...] |
/illumos-gate/usr/src/lib/libsasl/include/ |
H A D | md5global.h | 30 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) ()
|
/illumos-gate/usr/src/lib/sun_fc/common/ |
H A D | Sun_fcFreeLibrary.cc | 47 HBAList* list = HBAList::instance(); local 48 HBA_STATUS status = list->unload(); 49 delete (list);
|
H A D | Sun_fcGetNumberOfTgtAdapters.cc | 42 HBAList* list = HBAList::instance(); local 43 return (list->getNumberofTgtAdapters());
|
/illumos-gate/usr/src/head/iso/ |
H A D | stdarg_iso.h | 74 #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)
|
/illumos-gate/usr/src/cmd/lvm/metassist/layout/ |
H A D | layout_discovery.h | 62 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);
|
/illumos-gate/usr/src/cmd/fcinfo/ |
H A D | npivconfig | 35 /usr/sbin/fcadm create-port-list
|
/illumos-gate/usr/src/cmd/fm/modules/common/ext-event-transport/ |
H A D | ext-event-transport.conf | 47 # Changing this list may lead to breakage and/or excessive event forwarding. 49 subscribe list.*
|