/illumos-gate/usr/src/lib/sun_fc/common/ |
H A D | Sun_fcGetNumberOfTgtAdapters.cc | 42 HBAList* list = HBAList::instance(); local 43 return (list->getNumberofTgtAdapters());
|
H A D | Sun_fcLoadLibrary.cc | 48 HBAList* list = HBAList::instance(); local 49 return (list->load());
|
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_fcGetNumberOfAdapters.cc | 43 HBAList* list = HBAList::instance(); local 44 HBA_UINT32 ret = list->getNumberofAdapters(); 50 return (list->getNumberofAdapters());
|
H A D | Sun_fcGetVendorLibraryAttributes.cc | 53 HBAList* list = HBAList::instance(); local 54 *attrs = list->getVSLAttributes();
|
H A D | Sun_fcGetAdapterName.cc | 57 HBAList* list = HBAList::instance(); local 58 std::string sname = list->getHBAName(index);
|
H A D | Sun_fcGetTgtAdapterName.cc | 57 HBAList* list = HBAList::instance(); local 58 std::string sname = list->getTgtHBAName(index);
|
/illumos-gate/usr/src/lib/libbc/libc/gen/sys5/ |
H A D | nlist.c | 33 * nlist - retreive attributes from name list (string table version) 37 nlist(char *name, struct nlist *list) argument 42 (void) _nlist(fd, list);
|
/illumos-gate/usr/src/lib/libbc/libc/gen/4.2/ |
H A D | nlist.c | 33 * nlist - retreive attributes from name list (string table version) 37 nlist(char *name, struct nlist *list) argument 43 e = _nlist(fd, list);
|
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/ |
H A D | reslist.c | 41 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;
|
/illumos-gate/usr/src/lib/libast/common/cdt/ |
H A D | dtextract.c | 36 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 D | dtflatten.c | 24 /* 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;
|
/illumos-gate/usr/src/cmd/sendmail/db/db/ |
H A D | db_shash.c | 34 } list[] = { variable in typeref:struct:__anon1351 98 if (list[i].power == 0) { 102 if (list[i].power >= n_buckets) 105 return (list[i].prime);
|
/illumos-gate/usr/src/cmd/sendmail/db/os/ |
H A D | os_tmpdir.c | 34 * The order of items in the list structure and the order of checks in 48 * static const char * const list[] 52 static const char * list[] = { local 106 /* Step through the list looking for a possibility. */ 108 for (lp = list; *lp != NULL; ++lp)
|
/illumos-gate/usr/src/cmd/getent/ |
H A D | dogetpw.c | 37 dogetpw(const char **list) argument 45 if (list == NULL || *list == NULL) { 49 for (; *list != NULL; list++) { 61 uid = strtoul(*list, &ptr, 10); 64 pwp = getpwnam(*list);
|
H A D | dogetsp.c | 39 dogetsp(const char **list) argument 47 if (list == NULL || *list == NULL) { 53 for (; *list != NULL; list++) { 54 sp = getspnam(*list);
|
H A D | dogetethers.c | 54 dogetethers(const char **list) argument 58 if (list == NULL || *list == NULL) { 61 for (; *list != NULL; list++) { 68 if ((e = ether_aton(*list)) != NULL) { 72 hp = (char *)*list;
|
H A D | dogetgr.c | 67 dogetgr(const char **list) argument 74 if (list == NULL || *list == NULL) { 78 for (; *list != NULL; list++) { 90 gid = strtoul(*list, &ptr, 10); 93 grp = getgrnam(*list);
|
H A D | dogethost.c | 71 dogethost(const char **list) argument 76 if (list == NULL || *list == NULL) { 80 for (; *list != NULL; list++) { 82 addr.s_addr = inet_addr(*list); 87 hp = gethostbyname(*list);
|
H A D | dogetnetmask.c | 62 dogetnetmask(const char **list) argument 67 if (list == NULL || *list == NULL) 70 for (; *list != NULL; list++) { 71 addr.s_addr = htonl(inet_network(*list));
|
H A D | dogetproto.c | 62 dogetproto(const char **list) argument 67 if (list == NULL || *list == NULL) { 71 for (; *list != NULL; list++) { 72 int protocol = atoi(*list); 76 pp = getprotobyname(*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/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...] |
/illumos-gate/usr/src/cmd/lp/lib/lp/ |
H A D | dashos.c | 58 char **list = 0; local 77 addlist (&list, option); 82 return (list);
|
/illumos-gate/usr/src/cmd/mail/ |
H A D | goback.c | 120 reciplist list; local 153 new_reciplist(&list); 154 add_recip(&list, work, FALSE); 155 sendlist(&list, 0, 0); 156 del_reciplist(&list);
|