| /onnv/onnv-gate/usr/src/cmd/lp/lib/lp/ |
| wherelist.c | 34 ** wherelist() - RETURN POINTER TO ITEM IN LIST 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++ [all...] |
| lenlist.c | 30 ** lenlist() - COMPUTE LENGTH OF LIST 36 char ** list 39 lenlist (list) 40 char **list; 45 if (!list) 47 for (pl = list; *pl; pl++) 49 return (pl - list);
|
| freelist.c | 35 ** freelist() - FREE ALL SPACE USED BY LIST 41 char ** list 44 freelist (list) 45 char **list; 50 if (list) { 51 for (pp = list; *pp; pp++) 53 Free ((char *)list);
|
| 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++;
|
| searchlist.c | 34 ** searchlist() - SEARCH (char **) LIST FOR ITEM 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 [all...] |
| sprintlist.c | 37 ** sprintlist() - FLATTEN (char **) LIST INTO (char *) LIST 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++) {
|
| /onnv/onnv-gate/usr/src/ucbcmd/sbcp/ |
| 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
|
| /onnv/onnv-gate/usr/src/cmd/fmli/oh/ |
| action.c | 45 ** Takes a list and turns it into an action. If there is no action, 49 make_action(list) 50 register char **list; 56 if (!list || !array_len(list) || !list[0] || !list[0][0]) 58 return(setaction(list)); 62 ** Takes the list and sets Args to each member and returns the correct 66 setaction(list) [all...] |
| /onnv/onnv-gate/usr/src/tools/protocmp/ |
| stdusers.c | 83 stdfind(const char *name, const struct stdlist *list) 85 while (list->name != NULL) { 86 if (strcmp(name, list->name) == 0) 87 return (list->value); 88 list++; 94 stdfindbyvalue(int value, const struct stdlist *list) 96 while (list->name != NULL) { 97 if (value == list->value) 98 return (list->name); 99 list++ [all...] |
| /onnv/onnv-gate/usr/src/cmd/prstat/ |
| prsort.c | 39 list_alloc(list_t *list, int size) 42 list->l_size = size; 43 list->l_ptrs = Zalloc(sizeof (void *) * (size + 1)); 48 list_free(list_t *list) 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) 110 if (list == NULL [all...] |
| /onnv/onnv-gate/usr/src/cmd/fm/modules/sun4v/etm/ |
| etm.conf | 29 subscribe list.repaired
|
| /onnv/onnv-gate/usr/src/lib/libsys/common/ |
| libsys.sh | 53 ' libsys.list > libsys.c
|
| /onnv/onnv-gate/usr/src/lib/libsys/sparc/ |
| libsys.sh | 39 ' libsyss.list > libsyss.s
|
| /onnv/onnv-gate/usr/src/uts/common/io/ib/ibnex/ |
| ib.conf | 35 # The "port-svc-list" determines the communication services that are 40 # The "vppa-svc-list" determines the communication services that are 45 # The "hca-svc-list" determines the communication services that are 50 # The format of "port-svc-list" is "<service name>", "<service name>", .. 51 # The format of "vppa-svc-list" is "<service name>", "<service name>", .. 52 # The format of "hca-svc-list" is "<service name>", "<service name>", .. 58 # 4. Service names specified in port-svc-list, vppa-svc-list & 59 # hca-svc-list must be unique. 64 # port-svc-list="sdp" [all...] |
| /onnv/onnv-gate/usr/src/uts/common/sys/ |
| 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) = (__va_list)&name [all...] |
| varargs.h | 67 #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, type [all...] |
| /onnv/onnv-gate/usr/src/lib/print/libprint/common/ |
| 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) 54 syslog(LOG_DEBUG, "list_append(0x%x, 0x%x)", list, item); 57 return (list); 59 if (list == NULL) 129 void **list = NULL; local [all...] |
| /onnv/onnv-gate/usr/src/lib/libsasl/include/ |
| 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) ()
|
| /onnv/onnv-gate/usr/src/lib/sun_fc/common/ |
| Sun_fcFreeLibrary.cc | 47 HBAList* list = HBAList::instance(); local 48 HBA_STATUS status = list->unload(); 49 delete (list);
|
| Sun_fcGetNumberOfTgtAdapters.cc | 42 HBAList* list = HBAList::instance(); local 43 return (list->getNumberofTgtAdapters());
|
| /onnv/onnv-gate/usr/src/cmd/lvm/metassist/layout/ |
| 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);
|
| /onnv/onnv-gate/usr/src/head/iso/ |
| 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)
|
| /onnv/onnv-gate/usr/src/cmd/fcinfo/ |
| npivconfig | 35 /usr/sbin/fcadm create-port-list
|
| /onnv/onnv-gate/usr/src/cmd/ssh/include/ |
| xlist.h | 16 char ** xsplit(char *list, char sep); 18 void xfree_split_list(char **list);
|
| /onnv/onnv-gate/usr/src/cmd/fm/modules/common/ext-event-transport/ |
| ext-event-transport.conf | 48 # Changing this list may lead to breakage and/or excessive event forwarding. 50 subscribe list.*
|