Home
last modified time | relevance | path

Searched refs:list (Results 51 – 75 of 1471) sorted by relevance

12345678910>>...59

/illumos-gate/usr/src/cmd/fm/dicts/
H A DNIC.po24list[0].resource.hc-specific.txr_index> (SFP/SFP+/QSFP+ etc.) in %<fault-list[0].resource.hc-speci…
26 … has been disabled, and the network data link associated with it (%<fault-list[0].resource.hc-spec…
41list[0].resource.hc-specific.txr_index> (SFP/SFP+/QSFP+ etc.) in %<fault-list[0].resource.hc-speci…
43 … has been disabled, and the network data link associated with it (%<fault-list[0].resource.hc-spec…
58list[0].resource.hc-specific.txr_index> (SFP/SFP+/QSFP+ etc.) in %<fault-list[0].resource.hc-speci…
60 … has been disabled, and the network data link associated with it (%<fault-list[0].resource.hc-spec…
75list[0].resource.hc-specific.txr_index> (SFP/SFP+/QSFP+ etc.) in %<fault-list[0].resource.hc-speci…
77 … has been disabled, and the network data link associated with it (%<fault-list[0].resource.hc-spec…
92 …ot for NIC transceiver module %<fault-list[0].resource.hc-specific.txr_index> (SFP/SFP+/QSFP+ etc.…
94 … has been disabled, and the network data link associated with it (%<fault-list[0].resource.hc-spec…
/illumos-gate/usr/src/cmd/print/bsd-sysv-commands/
H A Dcommon.c269 papiAttributeListGetInteger(list, NULL, in cancel_job()
271 papiAttributeListGetInteger(list, NULL, in cancel_job()
273 papiAttributeListGetString(list, NULL, in cancel_job()
418 char *list[BUFSIZ], in strsplit() local
425 (void) memset(list, 0, sizeof (list)); in strsplit()
439 papi_attribute_t **list, papi_job_t *job) in jobSubmitSTDIN() argument
504 char *list[] = { "member-names", NULL }; in all_list() local
642 papi_attribute_t **list = in job_to_be_queried() local
645 papiAttributeListGetInteger(list, NULL, in job_to_be_queried()
647 papiAttributeListGetInteger(list, NULL, in job_to_be_queried()
[all …]
/illumos-gate/usr/src/cmd/rpcgen/
H A Drpc_util.h60 struct list { struct
62 struct list *next; argument
64 typedef struct list list; typedef
103 extern list *defined;
139 extern void storeval(list **, definition *);
141 #define STOREVAL(list, item) \ argument
142 storeval(list, item)
144 extern definition *findval(list *, char *, int (*)());
146 #define FINDVAL(list, item, finder) \ argument
147 findval(list, item, finder)
/illumos-gate/usr/src/cmd/sgs/elfdump/common/
H A Dmain.c369 match_rec_t *list; in match_prepare() local
405 for (list = match_state.list; list; list = list->next) { in match_prepare()
412 str = list->value.name; in match_prepare()
453 match_rec_t *list; in match() local
471 for (list = match_state.list; list; list = list->next) { in match()
472 switch (list->opt_type) { in match()
521 match_rec_t *list; in add_match_record() local
534 match_state.list = rec; in add_match_record()
536 for (list = match_state.list; list->next != NULL; in add_match_record()
537 list = list->next) in add_match_record()
[all …]
/illumos-gate/usr/src/cmd/ypcmd/
H A Dgetlist.c126 listofnames *list; local
127 list = names(argv[1]);
129 print_listofnames(list);
131 free_listofnames(list);
140 print_listofnames(list) in print_listofnames() argument
141 listofnames *list; in print_listofnames()
143 if (list == NULL)
145 for (; list; list = list->nextname)
146 printf("%s\n", list->name);
/illumos-gate/usr/src/cmd/latencytop/common/
H A Dstat.c599 GList *list, *walk; in lt_stat_list_create() local
669 list = g_list_sort(list, func); in lt_stat_list_create()
671 for (walk = list; in lt_stat_list_create()
697 g_list_free(list); in lt_stat_list_create()
715 list->lt_sl_free_func(list); in lt_stat_list_free()
722 free(list); in lt_stat_list_free()
733 if (list == NULL || i < 0 || i >= list->lt_sl_entry_count || in lt_stat_list_has_item()
749 if (list == NULL || i < 0 || i >= list->lt_sl_entry_count || in lt_stat_list_get_reason()
767 if (list == NULL || i < 0 || i >= list->lt_sl_entry_count || in lt_stat_list_get_max()
783 if (list == NULL || i < 0 || i >= list->lt_sl_entry_count || in lt_stat_list_get_sum()
[all …]
/illumos-gate/usr/src/tools/smatch/src/
H A Dmacro_table.c60 struct string_list *list; in store_macro_pos() local
65 list = do_search_macro(macro_table, &token->pos); in store_macro_pos()
66 insert_macro_string(&list, token->ident->name); in store_macro_pos()
68 do_insert_macro(macro_table, &token->pos, list); in store_macro_pos()
73 struct string_list *list; in get_macro_name() local
77 list = do_search_macro(macro_table, &pos); in get_macro_name()
78 return first_ptr_list((struct ptr_list *)list); in get_macro_name()
83 struct string_list *list; in get_inner_macro() local
87 list = do_search_macro(macro_table, &pos); in get_inner_macro()
88 return last_ptr_list((struct ptr_list *)list); in get_inner_macro()
H A Dptrlist.h15 #define TYPEOF(head) __typeof__(&(head)->list[0])
26 type *list[LIST_NODE_NR]; \
59 #define add_ptr_list(list, ptr) ({ \ argument
61 CHECK_TYPE(*(list),ptr); \
66 CHECK_TYPE(*(list),ptr); \
71 #define free_ptr_list(list) do { \ argument
72 VRFY_PTR_LIST(*(list)); \
139 #define FOR_EACH_PTR_NOTAG(list, ptr) FOR_EACH_PTR(list, ptr) argument
145 #define PTR_ENTRY_NOTAG(h,i) ((h)->list[i])
239 (&__list->list[__nr])
[all …]
H A Dsmatch_var_sym.c110 if (in_var_sym_list(*list, var, sym)) in add_var_sym()
114 FOR_EACH_PTR(*list, tmp) { in add_var_sym()
124 add_ptr_list(list, new); in add_var_sym()
135 add_var_sym(list, var, sym); in add_var_sym_expr()
150 FOR_EACH_PTR(*list, tmp) { in del_var_sym()
163 FOR_EACH_PTR(list, tmp) { in in_var_sym_list()
228 void free_var_sym_list(struct var_sym_list **list) in free_var_sym_list() argument
230 __free_ptr_list((struct ptr_list **)list); in free_var_sym_list()
233 void free_var_syms_and_list(struct var_sym_list **list) in free_var_syms_and_list() argument
237 FOR_EACH_PTR(*list, tmp) { in free_var_syms_and_list()
[all …]
/illumos-gate/usr/src/cmd/krb5/kadmin/ktutil/
H A Dktutil_funcs.c49 krb5_kt_list list;
81 *list = lp->next;
136 if (*list) {
228 if (!*list)
229 *list = lp;
255 if (*list) {
308 if (!*list)
309 *list = tail;
388 if (*list) {
459 if (!*list)
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libast/cdt/
H A Ddttree.c147 Dtlink_t* list;
253 Dtlink_t* list; in tbalance()
261 return list;
275 Dtlink_t *l, *list; in toptimize() local
322 return list; in troot()
325 last = list; list->_left = list->_rght = NIL(Dtlink_t*); in troot()
346 else { t->_rght = list; list = t; } in troot()
367 { t->_left = list; list = t; } in troot()
373 { root = list; in troot()
375 list = list->_left; in troot()
[all …]
/illumos-gate/usr/src/lib/libadm/common/
H A Dlistdev.c77 sortlist(char **list) /* List to be sorted */ in sortlist() argument
85 if (*list) { in sortlist()
88 for (pp = list; *pp; pp++) in sortlist()
99 while (pp != list) { in sortlist()
134 char **list; /* Ptr to alloc'd list */ in listdev() local
163 if (list = malloc(n*sizeof (char *))) { in listdev()
164 pp = list; in listdev()
198 sortlist(list); in listdev()
199 rtnval = list; in listdev()
201 for (pp = list; *pp; pp++) free(*pp); in listdev()
[all …]
/illumos-gate/usr/src/lib/libzfs_jni/common/
H A Dlibzfs_jni_main.c93 zjni_ArrayList_t *list = &list_obj; in Java_com_sun_zfs_common_model_SystemDataModel_getImportablePools() local
113 zjni_new_ArrayList(env, list); in Java_com_sun_zfs_common_model_SystemDataModel_getImportablePools()
116 data.list = (zjni_Collection_t *)list; in Java_com_sun_zfs_common_model_SystemDataModel_getImportablePools()
147 zjni_new_ArrayList(env, list); in Java_com_sun_zfs_common_model_SystemDataModel_getPools()
150 data.list = (zjni_Collection_t *)list; in Java_com_sun_zfs_common_model_SystemDataModel_getPools()
439 zjni_new_ArrayList(env, list); in Java_com_sun_zfs_common_model_SystemDataModel_getAvailableDisks()
442 data.list = (zjni_Collection_t *)list; in Java_com_sun_zfs_common_model_SystemDataModel_getAvailableDisks()
502 zjni_ArrayList_t *list; member
510 zjni_ArrayList_t *list = map->list; in mapping_cb() local
552 zjni_new_ArrayList(env, list); in Java_com_sun_zfs_common_model_SystemDataModel_getValidPropertyNames()
[all …]
/illumos-gate/usr/src/lib/sun_fc/common/
H A DFCSyseventBridge.cc225 if (sysevent_get_attr_list(ev, &list) || list == NULL) { in dispatch()
280 nvlist_free(list); in dispatch()
303 nvlist_free(list); in dispatch()
322 nvlist_free(list); in dispatch()
341 nvlist_free(list); in dispatch()
398 nvlist_free(list); in dispatch()
418 nvlist_free(list); in dispatch()
430 nvlist_free(list); in dispatch()
449 nvlist_free(list); in dispatch()
466 nvlist_free(list); in dispatch()
[all …]
/illumos-gate/usr/src/cmd/ypcmd/revnetgroup/
H A Dgetgroup.c51 struct list { struct
53 struct list *nxt; argument
91 doit(group, (struct list *) NULL);
104 doit(group, list) in doit() argument
106 struct list *list;
109 register struct list *ls;
110 struct list tmplist;
126 for (ls = list; ls != NULL; ls = ls->nxt) {
138 ls->nxt = list;
139 list = ls;
[all …]
/illumos-gate/usr/src/uts/common/io/
H A Ddcopy.c286 dcopy_list_t *list; in dcopy_alloc() local
300 mutex_enter(&list->dl_mutex); in dcopy_alloc()
303 mutex_exit(&list->dl_mutex); in dcopy_alloc()
315 mutex_exit(&list->dl_mutex); in dcopy_alloc()
329 dcopy_list_t *list; in dcopy_free() local
357 mutex_exit(&list->dl_mutex); in dcopy_free()
544 list->dl_cnt = 0; in dcopy_list_init()
569 list->dl_cnt++; in dcopy_list_push()
570 mutex_exit(&list->dl_mutex); in dcopy_list_push()
588 list->dl_cnt--; in dcopy_list_pop()
[all …]
/illumos-gate/usr/src/uts/common/crypto/api/
H A Dkcf_mac.c145 if (list != NULL) in crypto_mac()
146 kcf_free_triedlist(list); in crypto_mac()
160 if (list != NULL) in crypto_mac()
206 if (list != NULL) in crypto_mac()
207 kcf_free_triedlist(list); in crypto_mac()
269 if (list != NULL) in crypto_mac_verify()
284 if (list != NULL) in crypto_mac_verify()
326 if (list != NULL) in crypto_mac_verify()
449 if (list != NULL) in crypto_mac_init()
465 if (list != NULL) in crypto_mac_init()
[all …]
/illumos-gate/usr/src/lib/libsqlite/test/
H A Dcapi2.test49 list $N $VALUES $COLNAMES
58 list $N $VALUES $COLNAMES
105 list $SQL $VM
173 list [catch {sqlite_finalize $VM} msg] [set msg]
181 list [catch {sqlite_finalize $VM} msg] [set msg]
191 list [catch {sqlite_finalize $VM} msg] [set msg]
198 list [catch {sqlite_finalize $VM} msg] [set msg]
222 list [catch {sqlite_finalize $VM2} msg] [set msg]
231 list [catch {sqlite_finalize $VM3} msg] [set msg]
240 list [catch {sqlite_finalize $VM1} msg] [set msg]
[all …]
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DProbeDescription.java252 list.add(0, s.substring((i + 1), npos)); in parse()
256 list.add(0, s.substring(0, npos)); in parse()
258 switch (list.size()) { in parse()
263 p = new ProbeDescription(list.get(0)); in parse()
266 p = new ProbeDescription(list.get(0), list.get(1)); in parse()
269 p = new ProbeDescription(list.get(0), list.get(1), in parse()
270 list.get(2)); in parse()
273 p = new ProbeDescription(list.get(0), list.get(1), in parse()
274 list.get(2), list.get(3)); in parse()
279 len = list.size(); in parse()
[all …]
/illumos-gate/usr/src/cmd/lp/lib/filters/
H A Dloadfilters.c89 char **list; in loadfilters() local
116 list = getlist(DFLT(FL_PTYPS), LP_WS, LP_SEP); in loadfilters()
117 pf->printer_types = sl_to_typel(list); in loadfilters()
118 freelist (list); in loadfilters()
121 pf->input_types = sl_to_typel(list); in loadfilters()
122 freelist (list); in loadfilters()
125 pf->output_types = sl_to_typel(list); in loadfilters()
126 freelist (list); in loadfilters()
136 list = getlist(filt[FL_TMPS], "", LP_SEP); in loadfilters()
139 pf->templates = sl_to_templatel(list); in loadfilters()
[all …]
/illumos-gate/usr/src/cmd/format/
H A Dmenu_defect.c83 if (cur_list.list != NULL) { in d_restore()
89 *(work_list.list + i) = *(cur_list.list + i); in d_restore()
95 if (work_list.list == NULL) in d_restore()
340 if (work_list.list == NULL) { in d_add()
410 *(work_list.list + i) = *(work_list.list + i + 1); in d_delete()
418 (void *)work_list.list, in d_delete()
451 if (work_list.list == NULL) { in d_print()
540 if (work_list.list == NULL) { in d_dump()
578 dptr = work_list.list + i; in d_dump()
697 dptr = work_list.list + i; in d_load()
[all …]
/illumos-gate/usr/src/cmd/lp/lib/lp/
H A Dsprintlist.c43 char ** list in sprintlist() argument
46 sprintlist (list) in sprintlist()
47 char **list; in sprintlist()
59 if (!list || !*list)
62 for (plist = list; *plist; plist++)
71 for (plist = list; *plist; plist++) {
/illumos-gate/usr/src/cmd/eeprom/i386/
H A Dbenv.c84 eplist_t *list; in new_list() local
89 list->next = list; in new_list()
90 list->prev = list; in new_list()
91 list->item = NULL; in new_list()
93 return (list); in new_list()
105 entry->next = list; in add_item()
108 list->prev = entry; in add_item()
182 for (e = list->next; e != list; e = e->next) { in get_var()
213 for (e = list->next; e != list; e = e->next) { in print_vars()
627 if (list->next == list) in write_benv()
[all …]
/illumos-gate/usr/src/cmd/getent/
H A Ddogetpw.c37 dogetpw(const char **list) in dogetpw() argument
45 if (list == NULL || *list == NULL) { in dogetpw()
49 for (; *list != NULL; list++) { in dogetpw()
61 uid = strtoul(*list, &ptr, 10); in dogetpw()
64 pwp = getpwnam(*list); in dogetpw()
/illumos-gate/usr/src/cmd/projadd/
H A Dprojmod.pl561 my $list;
564 push(@$err, @$list);
566 ($ret, $list) =
581 my $list;
584 push(@$err, @$list);
586 ($ret, $list) =
603 my $list;
606 push(@$err, @$list);
614 my $list;
616 ($ret, $list) =
[all …]

12345678910>>...59