Searched defs:list (Results 1 - 25 of 605) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/sun_fc/common/
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_fcFreeLibrary.cc47 HBAList* list = HBAList::instance(); local
48 HBA_STATUS status = list->unload();
49 delete (list);
H A DSun_fcGetNumberOfAdapters.cc43 HBAList* list = HBAList::instance(); local
44 HBA_UINT32 ret = list->getNumberofAdapters();
50 return (list->getNumberofAdapters());
H A DSun_fcGetVendorLibraryAttributes.cc53 HBAList* list = HBAList::instance(); local
54 *attrs = list->getVSLAttributes();
H A DSun_fcGetAdapterName.cc57 HBAList* list = HBAList::instance(); local
58 std::string sname = list->getHBAName(index);
H A DSun_fcGetTgtAdapterName.cc57 HBAList* list = HBAList::instance(); local
58 std::string sname = list->getTgtHBAName(index);
/illumos-gate/usr/src/lib/libbc/libc/gen/sys5/
H A Dnlist.c33 * 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 Dnlist.c33 * 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 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;
/illumos-gate/usr/src/lib/libast/common/cdt/
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;
/illumos-gate/usr/src/cmd/sendmail/db/db/
H A Ddb_shash.c34 } 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 Dos_tmpdir.c34 * 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 Ddogetpw.c37 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 Ddogetsp.c39 dogetsp(const char **list) argument
47 if (list == NULL || *list == NULL) {
53 for (; *list != NULL; list++) {
54 sp = getspnam(*list);
H A Ddogetethers.c54 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 Ddogetgr.c67 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 Ddogethost.c71 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 Ddogetnetmask.c62 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 Ddogetproto.c62 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 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...]
/illumos-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...]
/illumos-gate/usr/src/cmd/lp/lib/lp/
H A Ddashos.c58 char **list = 0; local
77 addlist (&list, option);
82 return (list);
/illumos-gate/usr/src/cmd/mail/
H A Dgoback.c120 reciplist list; local
153 new_reciplist(&list);
154 add_recip(&list, work, FALSE);
155 sendlist(&list, 0, 0);
156 del_reciplist(&list);

Completed in 130 milliseconds

1234567891011>>