Home
last modified time | relevance | path

Searched refs:lvl (Results 1 – 25 of 66) sorted by relevance

123

/titanic_50/usr/src/cmd/print/printmgr/com/sun/admin/pm/server/
H A DDebug.java167 static public void setDebugLevel(int lvl) { in setDebugLevel() argument
168 if (lvl < ALL || lvl > NONE) in setDebugLevel()
171 globalDebugLevel = lvl; in setDebugLevel()
178 static public void setDebugLevel(Object o, int lvl) { in setDebugLevel() argument
179 if (lvl < ALL || lvl > NONE) in setDebugLevel()
182 classDB.put(o.getClass(), new Integer(lvl)); in setDebugLevel()
190 static public void setDebugLevel(String classname, int lvl) { in setDebugLevel() argument
191 if (lvl < ALL || lvl > NONE) in setDebugLevel()
195 classDB.put(Class.forName(classname), new Integer(lvl)); in setDebugLevel()
202 private static void printIf(String s, int lvl) { in printIf() argument
[all …]
/titanic_50/usr/src/uts/common/io/
H A Davintr.c156 add_nmintr(int lvl, avfunc nmintr, char *name, caddr_t arg) in add_nmintr() argument
172 mem->av_prilevel = lvl; in add_nmintr()
196 if (p->av_prilevel < lvl) { in add_nmintr()
228 add_avintr(void *intr_id, int lvl, avfunc xxintr, char *name, int vect, in add_avintr() argument
237 return ((*addintr)(intr_id, lvl, xxintr, name, vect, in add_avintr()
257 if (((hi_pri > LOCK_LEVEL) && (lvl < LOCK_LEVEL)) || in add_avintr()
258 ((hi_pri < LOCK_LEVEL) && (lvl > LOCK_LEVEL))) { in add_avintr()
259 cmn_err(CE_WARN, multilevel2, name, lvl, vect, in add_avintr()
263 if ((vecp->avh_lo_pri != lvl) || (hi_pri != lvl)) in add_avintr()
267 insert_av(intr_id, vecp, f, arg1, arg2, ticksp, lvl, dip); in add_avintr()
[all …]
/titanic_50/usr/src/cmd/svc/configd/
H A Dsnapshot.c68 rc_snaplevel_t *lvl, *next; in snapshot_free() local
75 for (lvl = sp->rs_levels; lvl != NULL; lvl = next) { in snapshot_free()
76 next = lvl->rsl_next; in snapshot_free()
78 assert(lvl->rsl_parent == sp); in snapshot_free()
79 lvl->rsl_parent = NULL; in snapshot_free()
81 if (lvl->rsl_service) in snapshot_free()
82 free((char *)lvl->rsl_service); in snapshot_free()
83 if (lvl->rsl_instance) in snapshot_free()
84 free((char *)lvl->rsl_instance); in snapshot_free()
86 uu_free(lvl); in snapshot_free()
[all …]
H A Dfile_object.c1074 rc_snaplevel_t *lvl; in snapshot_fill_children() local
1106 for (lvl = sp->rs_levels; lvl != NULL; lvl = lvl->rsl_next) { in snapshot_fill_children()
1109 nl.rl_main_id = lvl->rsl_level_id; in snapshot_fill_children()
1110 nnp = rc_node_setup_snaplevel(nnp, &nl, lvl, np); in snapshot_fill_children()
1125 rc_snaplevel_t *lvl = np->rn_snaplevel; in snaplevel_fill_children() local
1139 lvl->rsl_level_id); in snaplevel_fill_children()
1771 rc_snaplevel_t *lvl; in fill_snapshot_cb() local
1780 lvl = uu_zalloc(sizeof (*lvl)); in fill_snapshot_cb()
1781 if (lvl == NULL) in fill_snapshot_cb()
1783 lvl->rsl_parent = sp; in fill_snapshot_cb()
[all …]
/titanic_50/usr/src/cmd/picl/plugins/sun4u/snowbird/frutree/
H A Dpiclfrutree.h49 #define FRUTREE_DEBUG0(lvl, fmt) \ argument
50 if (lvl & frutree_debug) { \
53 #define FRUTREE_DEBUG1(lvl, fmt, d1) \ argument
54 if (lvl & frutree_debug) { \
57 #define FRUTREE_DEBUG2(lvl, fmt, d1, d2) \ argument
58 if (lvl & frutree_debug) { \
61 #define FRUTREE_DEBUG3(lvl, fmt, d1, d2, d3) \ argument
62 if (lvl & frutree_debug) { \
65 #define FRUTREE_DEBUG4(lvl, fmt, d1, d2, d3, d4) \ argument
66 if (lvl & frutree_debug) {\
/titanic_50/usr/src/cmd/picl/prtpicl/
H A Dprtpicl.c134 print_bytearray(int lvl, uint8_t *vbuf, size_t nbytes) in print_bytearray() argument
160 cnum = PROPINFO_LEFT_MARGIN(lvl); in print_bytearray()
182 print_propval(int lvl, picl_prophdl_t proph, const picl_propinfo_t *propinfo) in print_propval() argument
314 print_bytearray(lvl, vbuf, propinfo->size); in print_propval()
327 print_table_prop(int lvl, picl_prophdl_t tblh) in print_table_prop() argument
342 (void) printf("%*s %s", PROPINFO_LEFT_MARGIN(lvl), " ", in print_table_prop()
361 err = print_propval(lvl, colproph, &propinfo); in print_table_prop()
378 print_proplist(int lvl, picl_nodehdl_t nodeh) in print_proplist() argument
396 (void) printf("%*s:%s\n", PROPINFO_LEFT_MARGIN(lvl), in print_proplist()
399 (void) printf("%*s:%s\t", PROPINFO_LEFT_MARGIN(lvl), in print_proplist()
[all …]
/titanic_50/usr/src/uts/common/sys/
H A Davintr.h93 extern int add_avintr(void *intr_id, int lvl, avfunc xxintr, char *name,
95 extern int add_nmintr(int lvl, avfunc nmintr, char *name, caddr_t arg);
96 extern int add_avsoftintr(void *intr_id, int lvl, avfunc xxintr,
98 extern int rem_avsoftintr(void *intr_id, int lvl, avfunc xxintr);
100 extern void update_avsoftintr_args(void *intr_id, int lvl, caddr_t arg2);
101 extern void rem_avintr(void *intr_id, int lvl, avfunc xxintr, int vect);
/titanic_50/usr/src/cmd/pcidr/plugins/default/
H A Dpcidr_cfga.c156 pcidr_print_cfga(dlvl_t lvl, cfga_list_data_t *datap, char *prestr) in pcidr_print_cfga() argument
163 dprint(lvl, "%slogical APID = %s\n", prestr, datap->ap_log_id); in pcidr_print_cfga()
164 dprint(lvl, "%sphyiscal APID = %s\n", prestr, datap->ap_phys_id); in pcidr_print_cfga()
165 dprint(lvl, "%sAP class = %s\n", prestr, datap->ap_class); in pcidr_print_cfga()
170 dprint(lvl, "%sAP receptacle state = %s\n", prestr, str); in pcidr_print_cfga()
175 dprint(lvl, "%sAP occupant state = %s\n", prestr, str); in pcidr_print_cfga()
180 dprint(lvl, "%sAP condition = %s\n", prestr, str); in pcidr_print_cfga()
182 dprint(lvl, "%sAP busy indicator = %d\n", prestr, datap->ap_busy); in pcidr_print_cfga()
186 dprint(lvl, "%sAP last change time = %ld (%s)\n", prestr, in pcidr_print_cfga()
189 dprint(lvl, "%sAP info = %s\n", prestr, datap->ap_info); in pcidr_print_cfga()
[all …]
/titanic_50/usr/src/uts/sun/sys/
H A Davintr.h49 #define INT_LEVEL(lvl) ((lvl) & ~(MAXIPL-1)) argument
50 #define INT_IPL(lvl) ((lvl) & (MAXIPL-1)) argument
/titanic_50/usr/src/cmd/nscd/
H A Dnscd_log.h82 #define _NSCD_LOG(comp, lvl) if ((_nscd_log_comp & (comp)) && \ argument
83 (_nscd_log_level & (lvl))) \
86 #define _NSCD_LOG_IF(comp, lvl) if ((_nscd_log_comp & (comp)) && \ argument
87 (_nscd_log_level & (lvl)))
/titanic_50/usr/src/cmd/pcidr/
H A Dpcidr_common.c100 dprint(dlvl_t lvl, char *fmt, ...) in dprint() argument
106 if (dlvl < lvl || (dsys == 0 && dfp == NULL)) in dprint()
129 syslog(dpritab[lvl], "%s", buf); in dprint()
170 pcidr_print_attrlist(dlvl_t lvl, nvlist_t *attrlistp, char *prestr) in pcidr_print_attrlist() argument
190 dprint(lvl, "%s: nvpair_value_string() " in pcidr_print_attrlist()
197 dprint(lvl, "%s: unsupported type: name = %s, " in pcidr_print_attrlist()
201 dprint(lvl, "%s%s = %s\n", prestr, name, valstr); in pcidr_print_attrlist()
/titanic_50/usr/src/lib/efcode/engine/
H A Dtracing.c46 set_level(long lvl) in set_level() argument
51 set_interpreter_debug_level(debug | lvl); in set_level()
55 unset_level(long lvl) in unset_level() argument
60 set_interpreter_debug_level(debug & ~lvl); in unset_level()
/titanic_50/usr/src/cmd/ipf/lib/common/
H A Daddipopt.c21 u_char lvl; local
39 lvl = seclevel(class);
40 *(op - 1) = lvl;
/titanic_50/usr/src/uts/sun4v/sys/
H A Dn2rng.h323 #define DBG0(vca, lvl, fmt) argument
324 #define DBG1(vca, lvl, fmt, arg1) argument
325 #define DBG2(vca, lvl, fmt, arg1, arg2) argument
326 #define DBG3(vca, lvl, fmt, arg1, arg2, arg3) argument
327 #define DBG4(vca, lvl, fmt, arg1, arg2, arg3, arg4) argument
328 #define DBG5(vca, lvl, fmt, arg1, arg2, arg3, arg4, arg5) argument
329 #define DBG6(vca, lvl, fmt, arg1, arg2, arg3, arg4, arg5, arg6) argument
/titanic_50/usr/src/uts/i86pc/sys/
H A Dacpinex.h52 #define ACPINEX_DEBUG(lvl, ...) \ argument
53 if (acpinex_debug) cmn_err((lvl), __VA_ARGS__)
H A Dacpidev_impl.h48 #define ACPIDEV_DEBUG(lvl, ...) if (acpidev_debug) cmn_err((lvl), __VA_ARGS__) argument
/titanic_50/usr/src/uts/common/sys/ib/clients/rdsv3/
H A Drdsv3_debug.h121 uint8_t lvl,
126 uint8_t lvl,
/titanic_50/usr/src/uts/common/sys/scsi/adapters/pmcs/
H A Dpmcs_proto.h53 int lvl = level; \
54 if (((pwp->debug_mask & (1 << lvl)) != 0) || \
55 (lvl > PMCS_PRT_DEBUG_DEVEL)) { \
56 pmcs_prt_impl(pwp, lvl, phy, tgt, fmt); \
/titanic_50/usr/src/uts/i86pc/io/acpi/acpidev/
H A Dacpidev_dr.c105 static ACPI_STATUS acpidev_dr_scan_topo(ACPI_HANDLE hdl, UINT32 lvl, void *arg,
549 acpidev_dr_find_board(ACPI_HANDLE hdl, uint_t lvl, void *ctx, void **retval) in acpidev_dr_find_board() argument
551 _NOTE(ARGUNUSED(lvl)); in acpidev_dr_find_board()
1376 acpidev_dr_no_support(ACPI_HANDLE hdl, UINT32 lvl, void *arg, void **retval) in acpidev_dr_no_support() argument
1387 objname, lvl); in acpidev_dr_no_support()
1395 struct acpidev_dr_set_prop_arg *ap, uint32_t lvl, in acpidev_dr_set_prop() argument
1410 if (lvl == UINT32_MAX) { in acpidev_dr_set_prop()
1498 acpidev_dr_scan_topo(ACPI_HANDLE hdl, UINT32 lvl, void *arg, void **retval) in acpidev_dr_scan_topo() argument
1508 ASSERT(lvl == 0 || lvl == 1 || lvl == UINT32_MAX); in acpidev_dr_scan_topo()
1516 if (lvl != 0) { in acpidev_dr_scan_topo()
[all …]
/titanic_50/usr/src/uts/i86pc/os/
H A Dmp_implfuncs.c186 psm_add_intr(int lvl, avfunc xxintr, char *name, int vect, caddr_t arg) in psm_add_intr() argument
188 return (add_avintr((void *)NULL, lvl, xxintr, name, vect, in psm_add_intr()
193 psm_add_nmintr(int lvl, avfunc xxintr, char *name, caddr_t arg) in psm_add_nmintr() argument
195 return (add_nmintr(lvl, xxintr, name, arg)); in psm_add_nmintr()
/titanic_50/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/helptools/
H A DparseMain.java758 static public void setDebugLevel(int lvl) { in setDebugLevel() argument
759 if (lvl < ALL || lvl > NONE) in setDebugLevel()
762 globalDebugLevel = lvl; in setDebugLevel()
765 private static void printIf(String s, int lvl) { in printIf() argument
766 if (lvl < globalDebugLevel) in printIf()
/titanic_50/usr/src/uts/common/xen/io/
H A Dxdb.h38 #define XDB_DBPRINT(lvl, fmt) { if (xdb_debug & lvl) cmn_err fmt; } argument
/titanic_50/usr/src/uts/common/io/usb/usba/
H A Dusbai.c797 int i, lvl, rval; in usb_create_pm_components() local
893 for (lvl = USB_DEV_OS_PWR_0; lvl <= USB_DEV_OS_PWR_3; lvl++) { in usb_create_pm_components()
894 if (*ptr || (lvl == USB_DEV_OS_PWR_3)) { in usb_create_pm_components()
897 lvl, USB_DEV_OS_PWR2USB_PWR(lvl)); in usb_create_pm_components()
902 *pwr_states |= USB_DEV_PWRMASK(lvl); in usb_create_pm_components()
/titanic_50/usr/src/uts/common/io/mxfe/
H A Dmxfeimpl.h378 #define DBG(lvl, ...) mxfe_dprintf(mxfep, __func__, lvl, __VA_ARGS__); argument
380 #define DBG(lvl, ...) argument
/titanic_50/usr/src/uts/sun/io/ttymux/
H A Dttymux_impl.h183 #define sm_dbg(lvl, args) SM_CMD(sm_ssp->sm_trflag & SM_TRBIT(lvl), \ argument

123