Home
last modified time | relevance | path

Searched refs:ce (Results 1 – 25 of 83) sorted by relevance

1234

/titanic_41/usr/src/cmd/fs.d/nfs/mountd/
H A Dnetgroup.c188 struct cache_entry *ce, *next; in cache_free() local
191 for (ce = entry; ce; ce = next) { in cache_free()
192 if (ce->cache_host) in cache_free()
193 free(ce->cache_host); in cache_free()
194 for (i = 0; i < ce->cache_grc; i++) in cache_free()
195 if (ce->cache_grl[i]) in cache_free()
196 free(ce->cache_grl[i]); in cache_free()
197 if (ce->cache_grl) in cache_free()
198 free(ce->cache_grl); in cache_free()
199 next = ce->cache_next; in cache_free()
[all …]
/titanic_41/usr/src/uts/common/sys/fibre-channel/fca/qlc/
H A Dql_debug.h106 #define QL_PRINT_1(ce, ...) ql_dbg_msg(__func__, ce, __VA_ARGS__) argument
116 #define QL_PRINT_2(ce, ...) ql_dbg_msg(__func__, ce, __VA_ARGS__) argument
126 #define QL_PRINT_3(ce, ...) ql_dbg_msg(__func__, ce, __VA_ARGS__) argument
136 #define QL_PRINT_4(ce, ...) ql_dbg_msg(__func__, ce, __VA_ARGS__) argument
146 #define QL_PRINT_5(ce, ...) ql_dbg_msg(__func__, ce, __VA_ARGS__) argument
156 #define QL_PRINT_6(ce, ...) ql_dbg_msg(__func__, ce, __VA_ARGS__) argument
166 #define QL_PRINT_7(ce, ...) ql_dbg_msg(__func__, ce, __VA_ARGS__) argument
176 #define QL_PRINT_8(ce, ...) ql_dbg_msg(__func__, ce, __VA_ARGS__) argument
185 #define QL_PRINT_9(ce, ...) ql_dbg_msg(__func__, ce, __VA_ARGS__) argument
195 #define QL_PRINT_10(ce, ...) ql_dbg_msg(__func__, ce, __VA_ARGS__) argument
[all …]
/titanic_41/usr/src/lib/libslp/clib/
H A Dslp_da_cache.c103 cache_entry_t ce[1], **ans; in slp_find_das_cached() local
114 ce->query = query; in slp_find_das_cached()
116 ans = slp_tfind(ce, &da_cache, compare_entries); in slp_find_das_cached()
151 cache_entry_t *ce, **ce2; in slp_put_das_cached() local
161 if (!(ce = malloc(sizeof (*ce)))) { in slp_put_das_cached()
166 if (!(ce->query = strdup(query))) { in slp_put_das_cached()
167 free(ce); in slp_put_das_cached()
172 if (!(ce->reply = malloc(len))) { in slp_put_das_cached()
173 free((void *) (ce->query)); in slp_put_das_cached()
174 free(ce); in slp_put_das_cached()
[all …]
/titanic_41/usr/src/cmd/svc/startd/
H A Dcontract.c278 contract_entry_t *ce; in contract_lookup() local
285 for (ce = uu_list_first(bp->cb_list); ce != NULL; in contract_lookup()
286 ce = uu_list_next(bp->cb_list, ce)) { in contract_lookup()
287 if (ce->ce_ctid == ctid) in contract_lookup()
288 return (ce); in contract_lookup()
295 contract_insert(contract_bucket_t *bp, contract_entry_t *ce) in contract_insert() argument
302 uu_list_node_init(ce, &ce->ce_link, contract_list_pool); in contract_insert()
303 r = uu_list_insert_before(bp->cb_list, NULL, ce); in contract_insert()
321 contract_entry_t *ce; in contract_hash_store() local
325 ce = startd_alloc(sizeof (contract_entry_t)); in contract_hash_store()
[all …]
/titanic_41/usr/src/cmd/oawk/
H A Db.c348 ccl_member(int ns, wchar_t cs, int ne, wchar_t ce, ccl_chars_t *s) in ccl_member() argument
356 MLCMPLE(ne, ce, s->cc_ne, s->cc_ce)) in ccl_member()
365 ccln_member(int ns, wchar_t cs, int ne, wchar_t ce, ccl_chars_t *s, int n) in ccln_member() argument
373 MLCMPLE(ne, ce, s->cc_ne, s->cc_ce)) in ccln_member()
434 wchar_t cs, ce; in cgotofn() local
500 ce = HAT - 1; in cgotofn()
502 if (! ccln_member(ns, cs, ne, ce, in cgotofn()
505 ns, cs, ne, ce); in cgotofn()
509 ssyms[ssmax].cc_ce = ce; in cgotofn()
513 ce = WC_VERY_LARGE; in cgotofn()
[all …]
/titanic_41/usr/src/lib/libfakekernel/common/
H A Dprintf.c133 vcmn_err(int ce, const char *fmt, va_list adx) in vcmn_err() argument
136 if (ce == CE_PANIC) in vcmn_err()
138 if (ce >= CE_IGNORE) in vcmn_err()
141 fakekernel_cprintf(fmt, adx, ce_flags[ce] | SL_CONSOLE, in vcmn_err()
142 ce_prefix[ce], ce_suffix[ce]); in vcmn_err()
147 cmn_err(int ce, const char *fmt, ...) in cmn_err() argument
152 vcmn_err(ce, fmt, adx); in cmn_err()
/titanic_41/usr/src/uts/common/os/
H A Dprintf.c250 vzdcmn_err(zoneid_t zoneid, void *site, int ce, const char *fmt, va_list adx, in vzdcmn_err() argument
253 if (ce == CE_PANIC) in vzdcmn_err()
255 if ((uint_t)ce < CE_IGNORE) { in vzdcmn_err()
256 cprintf(fmt, adx, ce_to_sl[ce] | SL_CONSOLE, in vzdcmn_err()
257 ce_prefix[ce], ce_suffix[ce], site, 0, 0, 0, in vzdcmn_err()
263 vzcmn_err(zoneid_t zoneid, int ce, const char *fmt, va_list adx) in vzcmn_err() argument
265 vzdcmn_err(zoneid, caller(), ce, fmt, adx, NULL); in vzcmn_err()
269 vcmn_err(int ce, const char *fmt, va_list adx) in vcmn_err() argument
271 vzdcmn_err(GLOBAL_ZONEID, caller(), ce, fmt, adx, NULL); in vcmn_err()
276 cmn_err(int ce, const char *fmt, ...) in cmn_err() argument
[all …]
/titanic_41/usr/src/ucblib/libcurses/
H A Drefresh.c156 char *nsp, *csp, *ce; in makech() local
179 for (ce = &win->_y[wy][win->_maxx - 1]; *ce == ' '; ce--) in makech()
180 if (ce <= win->_y[wy]) in makech()
182 nlsp = ce - win->_y[wy]; in makech()
186 ce = CE; in makech()
188 ce = NULL; in makech()
199 if (ce != NULL && wx >= nlsp && *nsp == ' ') { in makech()
203 ce = &curscr->_y[ly][COLS - 1]; in makech()
204 while (*ce == ' ') in makech()
205 if (ce-- <= csp) in makech()
[all …]
/titanic_41/usr/src/cmd/fm/dicts/
H A DSCF.dict42 fault.chassis.SPARC-Enterprise.cpu.SPARC64-VI.ce=18
43 fault.chassis.SPARC-Enterprise.cpu.SPARC64-VI.core.ce=19
44 fault.chassis.SPARC-Enterprise.cpu.SPARC64-VI.core.ce-offlinereq=20
45 fault.chassis.SPARC-Enterprise.cpu.SPARC64-VI.way.ce=21
50 fault.chassis.SPARC-Enterprise.cpu.SPARC64-VI.core.ce-warn=26
58 fault.chassis.SPARC-Enterprise.asic.flp.ce=42
79 fault.chassis.SPARC-Enterprise.if.ce-ioc-flp=70
80 fault.chassis.SPARC-Enterprise.asic.ioc.ch.ce=71
81 fault.chassis.SPARC-Enterprise.asic.ioc.ch.leaf.ce=72
98 fault.chassis.SPARC-Enterprise.asic.mac.ce=95
[all …]
/titanic_41/usr/src/lib/gss_mechs/mech_krb5/support/
H A Dfake-addrinfo.c657 struct face *ce; in fai_add_hosts_by_name() local
665 if (!find_face(name, &ce)) { in fai_add_hosts_by_name()
714 ce = malloc(sizeof(struct face)); in fai_add_hosts_by_name()
715 memset(ce, 0, sizeof(*ce)); in fai_add_hosts_by_name()
716 ce->expiration = time(0) + 30; in fai_add_hosts_by_name()
723 ce->naddrs4++; in fai_add_hosts_by_name()
726 ce->naddrs6++; in fai_add_hosts_by_name()
732 ce->addrs4 = calloc(ce->naddrs4, sizeof(*ce->addrs4)); in fai_add_hosts_by_name()
733 if (ce->addrs4 == NULL && ce->naddrs4 != 0) { in fai_add_hosts_by_name()
738 ce->addrs6 = calloc(ce->naddrs6, sizeof(*ce->addrs6)); in fai_add_hosts_by_name()
[all …]
/titanic_41/usr/src/cmd/nscd/
H A Dnscd_cfgfile.c227 char *cc, *ce, *ce1, *c1, *c2; in _nscd_cfg_read_nsswitch_file() local
268 if ((ce = strchr(buffer, '\n')) != NULL) in _nscd_cfg_read_nsswitch_file()
269 *ce = '\0'; in _nscd_cfg_read_nsswitch_file()
271 ce = &buffer[255]; in _nscd_cfg_read_nsswitch_file()
273 ce = ce1; in _nscd_cfg_read_nsswitch_file()
274 *ce = '\0'; in _nscd_cfg_read_nsswitch_file()
278 while (isalpha(*c1) && c1 < ce) in _nscd_cfg_read_nsswitch_file()
280 if (c1 > ce) in _nscd_cfg_read_nsswitch_file()
306 while (c1 <= ce && isspace(*c1)) in _nscd_cfg_read_nsswitch_file()
308 c2 = ce - 1; in _nscd_cfg_read_nsswitch_file()
/titanic_41/usr/src/uts/common/io/chxge/
H A Dsge.c315 cmdQ_ce_t *ce; in sge_data_out() local
413 ce = &cq[pidx]; in sge_data_out()
414 *ce = *cmp; in sge_data_out()
438 ce++; in sge_data_out()
448 ce = cq; in sge_data_out()
452 *ce = *cmp; in sge_data_out()
469 ce->ce_mp = m0; in sge_data_out()
808 struct freelQ_ce *ce = &cq[Q->fq_cidx]; in t1_sge_rx() local
809 ddi_dma_handle_t dh = (ddi_dma_handle_t)ce->fe_dh; in t1_sge_rx()
860 char *src = (char *)((mblk_t *)ce->fe_mp)->b_rptr; in t1_sge_rx()
[all …]
/titanic_41/usr/src/cmd/krb5/kwarn/
H A Dkwarnd_proc.c872 config_entry_list_t *ce; /* config entry */ in kwarnd_check_warning_list() local
902 ce = find_warning_info(cw->warn_name); in kwarnd_check_warning_list()
908 ce->where_to ? in kwarnd_check_warning_list()
909 ce->where_to : "null"); in kwarnd_check_warning_list()
911 if (ce->renew && in kwarnd_check_warning_list()
937 if (ce->log_failure) { in kwarnd_check_warning_list()
953 ce->seconds_to_warn; in kwarnd_check_warning_list()
962 ce->log_success) { in kwarnd_check_warning_list()
978 ce->log_failure) { in kwarnd_check_warning_list()
1015 if (strncmp(ce->where_to, in kwarnd_check_warning_list()
[all …]
/titanic_41/usr/src/lib/libzfs/common/
H A Dlibzfs_import.c221 config_entry_t *ce; in add_config() local
309 for (ce = ve->ve_configs; ce != NULL; ce = ce->ce_next) { in add_config()
310 if (ce->ce_txg == txg) in add_config()
314 if (ce == NULL) { in add_config()
315 if ((ce = zfs_alloc(hdl, sizeof (config_entry_t))) == NULL) { in add_config()
319 ce->ce_txg = txg; in add_config()
320 ce->ce_config = config; in add_config()
321 ce->ce_next = ve->ve_configs; in add_config()
322 ve->ve_configs = ce; in add_config()
440 config_entry_t *ce; in get_configs() local
[all …]
/titanic_41/usr/src/psm/stand/bootblks/hsfs/common/
H A Dhsfs.fth45 0 instance value ce-buf
156 : suf-ce-lbn ( -- lbn ) 4 +suf xl@ ;
157 : suf-ce-offset ( -- offset ) d# 12 +suf xl@ ;
158 : suf-ce-len ( -- len ) d# 20 +suf xl@ ;
180 instance variable ce-lbn
181 instance variable ce-offset
182 instance variable ce-len
183 : suf-ce-set ( -- )
184 suf-ce-lbn ce-lbn !
185 suf-ce-offset ce-offset !
[all …]
/titanic_41/usr/src/cmd/vgrind/
H A Dvgrindefs.src27 :cb=\$:ce=\$|$:sb=":se=":lb=':le=\a|$:\
40 :cb={:ce=}:\
48 :pb=^\d?*?\d?\p\d?\(\a?\)(\d|{):bb={:be=}:cb=/*:ce=*/:sb=":se=\e":lb=':\
56 :cb=!:ce=!|$:oc:\
63 :bb={:be=}:cb=#:ce=$:sb=":se=\e":lb=':\
70 :cb=#:ce=$:sb=":se=\e":lb=':\
81 :pb=^\p\::bb=\::be=;:cb=/*:ce=*/:sb=":se=\e":\
92 :cb=#:ce=$:\
103 :cb=#:ce=$:\
113 :cb={:ce=}:\
[all …]
/titanic_41/usr/src/uts/common/pcmcia/cis/
H A Dcis_handlers.c555 cistpl_cftable_entry_t *ce = (cistpl_cftable_entry_t *)arg; local
568 ce->ifc = GET_BYTE(tp);
570 ce->pin = 0;
572 if (ce->ifc & CISTPL_CFTABLE_TPCE_IF_BVD)
573 ce->pin |= (PRR_BVD1_STATUS | PRR_BVD2_STATUS |
575 if (ce->ifc & CISTPL_CFTABLE_TPCE_IF_WP)
576 ce->pin |= (PRR_WP_STATUS | PRR_WP_EVENT);
577 if (ce->ifc & CISTPL_CFTABLE_TPCE_IF_RDY)
578 ce->pin |= (PRR_READY_STATUS | PRR_READY_EVENT);
580 ce->flags |= CISTPL_CFTABLE_TPCE_IF;
[all …]
/titanic_41/usr/src/uts/common/sys/ib/clients/ibd/
H A Dibd.h368 #define IBD_ACACHE_INSERT_FREE(state, ce) \ argument
369 list_insert_head(&state->id_ah_free, ce)
372 #define IBD_ACACHE_INSERT_ACTIVE(state, ce) { \ argument
374 list_insert_head(&state->id_ah_active, ce); \
376 (mod_hash_key_t)&ce->ac_mac, (mod_hash_val_t)ce); \
378 state->id_ac_hot_ace = ce; \
380 #define IBD_ACACHE_PULLOUT_ACTIVE(state, ce) { \ argument
381 list_remove(&state->id_ah_active, ce); \
382 if (state->id_ac_hot_ace == ce) \
385 (mod_hash_key_t)&ce->ac_mac, (mod_hash_val_t)ce); \
/titanic_41/usr/src/uts/i86pc/sys/
H A Ddr_util.h56 extern void sbd_err_log(sbd_error_t *ep, int ce);
58 extern void sbd_err_set_c(sbd_error_t **ep, int ce,
60 extern void sbd_err_set(sbd_error_t **ep, int ce,
/titanic_41/usr/src/uts/sun4u/ngdr/sys/
H A Ddr_util.h59 extern void sbd_err_log(sbd_error_t *ep, int ce);
61 extern void sbd_err_set_c(sbd_error_t **ep, int ce,
63 extern void sbd_err_set(sbd_error_t **ep, int ce,
/titanic_41/usr/src/lib/libast/common/regex/
H A Dregcomp.c1023 col(Celt_t* ce, int ic, unsigned char* bp, int bw, int bc, unsigned char* ep, int ew, int ec) in col() argument
1082 mbxfrm(ce->beg, key, COLL_KEY_MAX); in col()
1138 mbxfrm(ce->end, key, COLL_KEY_MAX); in col()
1147 ce->typ = bt == et ? bt : COLL_range; in col()
1150 ce->typ = COLL_char; in col()
1151 ce++; in col()
1156 return ce; in col()
1422 Celt_t* ce; in bra() local
1467 ce = (Celt_t*)e->re.data; in bra()
1469 e->re.collate.elements = ce; in bra()
[all …]
/titanic_41/usr/src/cmd/ssh/sshd/
H A Dauth-options.c49 struct envstring *ce = custom_environment; in auth_clear_options() local
50 custom_environment = ce->next; in auth_clear_options()
51 xfree(ce->s); in auth_clear_options()
52 xfree(ce); in auth_clear_options()
/titanic_41/usr/src/uts/common/io/fibre-channel/fca/qlc/
H A Dql_debug.c147 ql_el_msg(ql_adapter_state_t *ha, const char *fn, int ce, ...) in ql_el_msg() argument
182 va_start(vl, ce); in ql_el_msg()
225 cmn_err(ce, fmt); in ql_el_msg()
245 ql_dbg_msg(const char *fn, int ce, ...) in ql_dbg_msg() argument
252 va_start(vl, ce); in ql_dbg_msg()
273 vcmn_err(ce, fmt, vl); in ql_dbg_msg()
/titanic_41/usr/src/cmd/localedef/
H A Dcollate.c1062 collelem_t *ce; in dump_collate() local
1086 for (ce = avl_first(&elem_by_expand); in dump_collate()
1087 ce != NULL; in dump_collate()
1088 ce = AVL_NEXT(&elem_by_expand, ce)) { in dump_collate()
1089 add_weights(ce->ref); in dump_collate()
1192 for (n = 0, ce = avl_first(&elem_by_expand); in dump_collate()
1193 ce != NULL; in dump_collate()
1194 ce = AVL_NEXT(&elem_by_expand, ce), n++) { in dump_collate()
1195 (void) wsncpy(chain[n].str, ce->expand, COLLATE_STR_LEN); in dump_collate()
1197 chain[n].pri[i] = get_weight(ce->ref[i], i); in dump_collate()
/titanic_41/usr/src/uts/i86pc/io/dr/
H A Ddr_util.c55 sbd_err_log(sbd_error_t *ep, int ce) in sbd_err_log() argument
82 cmn_err(ce, fmt, txt, ep->e_rsc); in sbd_err_log()
93 sbd_err_set_c(sbd_error_t **ep, int ce, int e_code, char *fmt, ...) in sbd_err_set_c() argument
102 sbd_err_log(tmp, ce); in sbd_err_set_c()
113 sbd_err_set(sbd_error_t **ep, int ce, int e_code, char *fmt, ...) in sbd_err_set() argument
122 sbd_err_log(tmp, ce); in sbd_err_set()

1234