HomeSort by relevance Sort by last modified time
    Searched defs:class (Results 1 - 25 of 190) sorted by null

1 2 3 4 5 6 7 8

  /netvirt/usr/src/cmd/fm/fmd/common/
fmd_ctl.c 38 * Control events are assigned a class of the form "resource.fm.fmd.*" and
97 char *class = "<unknown>"; local
99 (void) nvlist_lookup_string(nvl, FM_CLASS, &class);
100 fmd_error(EFMD_CTL_INVAL, "ignoring invalid control event %s\n", class);
122 char *class; local
135 if (nvlist_lookup_string(nvl, FM_CLASS, &class) != 0 ||
140 if (strcmp(class, dp->cde_class) == 0)
fmd_dr.c 79 const char *class = sysevent_get_class_name(sep); local
87 if (strcmp(class, EC_DR) == 0) {
  /netvirt/usr/src/cmd/fm/modules/common/cpumem-retire/
cma_cpu.c 48 char *class; local
59 if ((nvlist_lookup_string(nvl, FM_CLASS, &class) != 0) ||
60 (class == NULL) || (*class == '\0')) {
61 fmd_hdl_debug(hdl, "failed to get the fault class name\n");
84 blr.bl_class = class;
  /netvirt/usr/src/cmd/krb5/kadmin/kdcmgr/
klookup.c 45 int len = 0, anslen, hostlen, nq, na, type, class; local
98 class = ns_get16(ansp);
99 ansp += INT16SZ; /* class */
104 if (type == T_A && class == C_IN) {
  /netvirt/usr/src/lib/gss_mechs/mech_krb5/crypto/
pbkdf2.c 60 CK_OBJECT_CLASS class = CKO_SECRET_KEY; local
72 tmpl[attrs].pValue = &class;
73 tmpl[attrs].ulValueLen = sizeof (class);
  /netvirt/usr/src/lib/libslp/clib/
slp_jni_support.c 34 * given a class name, and one for correctly converting unicode Strings to C
50 * Given a class name of an exception and a message attempt to throw
56 jclass class = (*env)->FindClass(env, name); local
59 * If class is NULL FindClass() encountered a problem locating the
60 * desired class and has already called ThrowNew() with an
63 if (class == NULL) {
67 (*env)->ThrowNew(env, class, msg);
68 (*env)->DeleteLocalRef(env, class);
87 jclass class; local
106 class = (*env)->FindClass(env, CLASS_JAVA_LANG_STRING)
    [all...]
  /netvirt/usr/src/uts/common/fs/zfs/
zfs_fm.c 41 * ereports. The payload is dependent on the class, and which arguments are
101 char class[64]; local
167 * Construct the full class, detector, and other standard FMA fields.
169 (void) snprintf(class, sizeof (class), "%s.%s",
175 fm_ereport_set(ereport, FM_EREPORT_VERSION, class, ena, detector, NULL);
299 char class[64]; local
304 (void) snprintf(class, sizeof (class), "%s.%s.%s", FM_RSRC_RESOURCE,
307 VERIFY(nvlist_add_string(resource, FM_CLASS, class) == 0)
    [all...]
  /netvirt/usr/src/uts/common/gssapi/mechs/krb5/crypto/
encrypt.c 116 CK_OBJECT_CLASS class = CKO_SECRET_KEY; local
140 template[0].pValue = &class;
141 template[0].ulValueLen = sizeof (class);
  /netvirt/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
Program.java 50 public class Program implements Serializable {
151 // check class invariants
195 * class-name[property1 = value1, property2 = value2]
202 buf.append(Program.class.getName());
215 public static final class File extends Program {
253 // check class invariants
268 buf.append(Program.File.class.getName());
DataEvent.java 41 public class DataEvent extends EventObject {
105 * class-name[property1 = value1, property2 = value2]
112 buf.append(DataEvent.class.getName());
DropEvent.java 41 public class DropEvent extends EventObject {
102 * class-name[property1 = value1, property2 = value2]
109 buf.append(DropEvent.class.getName());
ErrorEvent.java 40 public class ErrorEvent extends EventObject {
104 * class-name[property1 = value1, property2 = value2]
111 buf.append(ErrorEvent.class.getName());
ProcessEvent.java 42 public class ProcessEvent extends EventObject {
106 * class-name[property1 = value1, property2 = value2]
113 buf.append(ProcessEvent.class.getName());
  /netvirt/usr/src/cmd/sgs/moe/common/
moe.c 96 openlib(const char *prog, const char *name, int class, int silent, int verbose)
103 * If the class of object is required, localize the prefix message.
105 if (class) {
157 int var, verbose = 0, silent = 0, error = 0, mode = 0, class = 0; local
169 class++;
210 class = 0;
218 if (openlib(prog, argv[optind], class, silent, verbose) != 0)
  /netvirt/usr/src/lib/libbsm/common/
au_preselect.c 49 au_class_t class; /* audit event class mask */ member in struct:event_map
63 * Keep a dynamic array of event<-->class mappings.
122 if (event_map[i].class & comp_class) {
155 * load the event<->class map into memory
171 event_map[event_count].class = evp->ae_class;
  /netvirt/usr/src/lib/libeti/form/common/
driver.c 39 PTF_int class; member in struct:__anon2952
45 #define COMMAND(x) (x.class)
46 #define CALL(x, f) (x.class ? (*x.class) (x.act, f) : E_SYSTEM_ERROR)
  /netvirt/usr/src/cmd/fm/fmdump/common/
fault.c 62 char *class = NULL, *rname = NULL, *aname = NULL, *fname = NULL; local
68 (void) nvlist_lookup_string(nva[i], FM_CLASS, &class);
88 pct, class ? class : "-");
  /netvirt/usr/src/cmd/fm/fminject/common/
inj_cmds.c 152 const char *class = "resource.fm.fmd.clock.addhrtime"; local
156 ev->defn_name = class;
160 die("failed to allocate nvl for %s event", class);
162 if ((errno = nvlist_add_string(ev->defn_nvl, FM_CLASS, class)) != 0 ||
165 die("failed to build nvl for %s event", class);
  /netvirt/usr/src/cmd/fm/modules/sun4u/cpumem-diagnosis/
cmd_dperr.c 56 * class string "asic"
98 char class[DP_MAX_CLASS]; local
103 /* build ASRU, fault event class */
105 (void) snprintf(class, DP_MAX_CLASS, "fault.asic.%s.%s",
203 flt = cmd_nvl_create_fault(hdl, class, 100/numfru,
218 cmd_dp_common(fmd_hdl_t *hdl, fmd_event_t *ep, nvlist_t *nvl, const char *class,
382 cmd_dp_cds(fmd_hdl_t *hdl, fmd_event_t *ep, nvlist_t *nvl, const char *class,
386 return (cmd_dp_common(hdl, ep, nvl, class, clcode,
389 return (cmd_dp_common(hdl, ep, nvl, class, clcode,
394 cmd_dp_dx(fmd_hdl_t *hdl, fmd_event_t *ep, nvlist_t *nvl, const char *class,
    [all...]
  /netvirt/usr/src/cmd/mdb/common/modules/genunix/
fm.c 154 char *class = NULL; local
172 mdb_printf("ENA CLASS\n");
176 * The following code attempts to pretty print the ereport class
179 * to get a valid class and ENA from the nvpair list, we revert to
214 NVP_TYPE(nvpair) == DATA_TYPE_STRING && class == NULL) {
217 class = mdb_zalloc(strlen(p) + 1, UM_SLEEP | UM_GC);
218 bcopy(p, class, strlen(p));
225 if (class != NULL && ena != 0) {
226 mdb_printf("0x%016llx %s\n", ena, class);
  /netvirt/usr/src/cmd/perl/5.6.1/distrib/ext/B/
B.pm 16 class peekop cast_I32 cstring cchar hash threadsv_names
59 # Stop "-w" from complaining about the lack of a real B::OBJECT class
83 my ($class, $value) = @_;
88 sub class { subroutine
100 return sprintf("%s (0x%x) %s", class($op), $$op, $op->name);
158 savesym($op, sprintf("%s (0x%lx)", class($op), $$op));
224 my ($class, $section, $symtable, $default) = @_;
226 my $obj = bless [-1, $section, $symtable, $default], $class;
232 my ($class, $section) = @_;
314 class hierarchy and the C<B> module gives access to them via a tru
    [all...]
  /netvirt/usr/src/cmd/perl/5.8.4/distrib/ext/B/
B.pm 19 class peekop cast_I32 cstring cchar hash threadsv_names
63 # Stop "-w" from complaining about the lack of a real B::OBJECT class
96 my ($class, $value) = @_;
101 sub class { subroutine
113 return sprintf("%s (0x%x) %s", class($op), $$op, $op->name);
130 if (class($op) eq 'PMOP' && $op->pmreplroot && ${$op->pmreplroot}) {
176 savesym($op, sprintf("%s (0x%lx)", class($op), $$op));
242 my ($class, $section, $symtable, $default) = @_;
244 my $obj = bless [-1, $section, $symtable, $default], $class;
250 my ($class, $section) = @_
    [all...]
  /netvirt/usr/src/cmd/print/printer-info/
printer-info.c 43 char *class; member in struct:__anon1208
93 (strcasecmp(t, "CLASS") == 0))
94 info->class = strdup(u);
129 class = 0; local
138 class++;
153 class++;
181 if (class != 0)
183 NP(info.class));
  /netvirt/usr/src/cmd/sendmail/src/
sm_resolve.c 212 int type, class, ttl, size, txtlen; local
223 GETSHORT(class, p);
254 (*rr)->rr_class = class;
376 ** rr_class -- resource record class
  /netvirt/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/
ldap_pwd_policy.c 335 char *policy_dn = NULL, *class[] = {"krbpwdpolicy", NULL}; local
357 if ((st=checkattributevalue(ld, policy_dn, "objectclass", class, &mask)) != 0)

Completed in 780 milliseconds

1 2 3 4 5 6 7 8