HomeSort by relevance Sort by last modified time
    Searched defs:kstat (Results 1 - 11 of 11) sorted by null

  /onnv/onnv-gate/usr/src/cmd/pools/poold/com/sun/solaris/service/kstat/
KstatException.java 29 package com.sun.solaris.service.kstat;
32 * Abstract base class from which kstat-related exceptions are
KstatReadException.java 29 package com.sun.solaris.service.kstat;
32 * Indicates a that <code>kstat_read</code> failed for the given Kstat.
KstatTypeNotSupportedException.java 29 package com.sun.solaris.service.kstat;
32 * Indicates a that <code>Kstat.getValue()</code> was invoked for a raw
33 * kstat whose structure is not understood.
KstatChainUpdateException.java 29 package com.sun.solaris.service.kstat;
32 * Indicates a that <code>kstat_chain_update(3KSTAT)</code> failed for the
Kstat.java 29 package com.sun.solaris.service.kstat;
35 * <code>/usr/include/sys/kstat.h</code> for details.
37 public final class Kstat {
48 Kstat(long kctl, long ksp)
55 * Returns the kstat's <code>ks_snaptime</code> field.
60 * Returns the kstat's <code>ks_crtime</code> field.
65 * Returns the named value -- the value of the named kstat, or
66 * field in a raw kstat, as applicable, and available. Returns
67 * <i>null</i> if no such named kstat or field is available.
69 * @throws KstatTypeNotSupportedException if the raw kstat is no
    [all...]
KstatCtl.java 29 package com.sun.solaris.service.kstat;
32 * <code>kstat</code> controlling object. Allows kstats to be looked up
48 * Invokes <code>kstat_open(3KSTAT)</code>. The returned object
58 * Calls <code>kstat_close(3KSTAT)</code>.
67 * Invokes <code>kstat_open(3KSTAT)</code>.
72 * Invokes <code>kstat_close(3KSTAT)</code>.
77 * Invokes <code>kstat_lookup(3KSTAT)</code> and returns a Kstat
80 public native Kstat lookup(String module, int instance, String name);
83 * Invokes <code>kstat_chain_update(3KSTAT)</code>
    [all...]
  /onnv/onnv-gate/usr/src/cmd/pools/poold/com/sun/solaris/domain/pools/
SystemMonitor.java 36 import com.sun.solaris.service.kstat.*;
76 * Kstat interface for raw data
249 Kstat kstat = kc.lookup("cpu", local
252 if (kstat == null)
256 kstat.read();
258 value = (UnsignedInt64) kstat.
  /onnv/onnv-gate/usr/src/uts/common/io/
llc1.c 53 #include <sys/kstat.h>
890 /* remove any kstat counters */
2862 kstat_named_t *kstat; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/sys/
kstat.h 32 * Definition of general kernel statistics structures and /dev/kstat ioctls
42 typedef int kid_t; /* unique kstat id */
45 * Kernel statistics driver (/dev/kstat) ioctls
55 * /dev/kstat ioctl usage (kd denotes /dev/kstat descriptor):
65 * The generic kstat header
68 typedef struct kstat { struct
73 struct kstat *ks_next; /* kstat chain linkage */
74 kid_t ks_kid; /* unique kstat ID *
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/xen/io/
xdf.c 76 #include <sys/kstat.h>
680 kstat_t *kstat; local
683 if ((kstat = kstat_create(
692 /* only one kstat can exist at a time */
696 kstat_delete(kstat);
700 vdp->xdf_xdev_iostat = kstat;
705 * Now that we've created a kstat, we need to update the waitq and
706 * runq counts for the kstat to reflect our current state.
736 kstat_t *kstat; local
742 * and the contents of the our kstat. xdf_iostat_lk is use
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/sys/fibre-channel/fca/emlxs/
emlxs_fc.h 1974 kstat_t *kstat; member in struct:emlxs_hba
    [all...]

Completed in 840 milliseconds