/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/service/kstat/ |
H A D | KstatCtl.java | 80 public native Kstat lookup(String module, int instance, String name); argument
|
/illumos-gate/usr/src/cmd/sgs/gprof/common/ |
H A D | lookup.c | 40 nllookup(mod_info_t *module, pctype address, pctype *nxtsym) argument 42 size_t low = 0, middle, high = module->nname - 1; 44 nltype *mnl = module->nl; 53 keyval = module->txt_origin + (address - module->load_base); 57 *nxtsym = module->load_base + 58 (mnl[low].value - module->txt_origin); 65 *nxtsym = module->load_end; 75 *nxtsym = module->load_base + 77 module [all...] |
H A D | readelf.c | 62 static void get_symtab(Elf *elf, mod_info_t *module); 168 process_namelist(mod_info_t *module) argument 173 if ((fd = open(module->name, O_RDONLY)) == -1) { 175 whoami, module->name); 187 module->next = NULL; 188 module->txt_origin = get_txtorigin(elf); 189 get_symtab(elf, module); 190 module->active = TRUE; 454 get_symtab(Elf *elf, mod_info_t *module) argument 563 l_npe->module [all...] |
/illumos-gate/usr/src/cmd/sgs/prof/common/ |
H A D | lookup.c | 39 nllookup(mod_info_t *module, Address address, Address *nxtsym_val) argument 41 size_t low = 0, middle, high = module->nfuncs - 1; 42 nltype *nl = module->nl; 52 keyval = module->txt_origin + (address - module->load_base); 56 *nxtsym_val = module->load_base + 57 (nl[low].value - module->txt_origin); 64 *nxtsym_val = module->load_end; 74 *nxtsym_val = module->load_base + 75 (nl[middle + 1].value - module [all...] |
H A D | profv.h | 103 char *path; /* pathname of module */ 105 bool active; /* is this module active or not ? */ 106 Address load_base; /* base addr where module is loaded */ 107 Address load_end; /* end addr of loaded module */ 110 struct nl *nl; /* ptr to module's namelist */ 112 struct mod_info *next; /* link to next module */ 148 bool print_mid; /* print module id ? */ 150 mod_info_t *module; /* bookkeeping, not printed */ member in struct:profrec
|
H A D | rdelf.c | 211 fetch_symtab(Elf *elf, char *filename, mod_info_t *module) argument 336 module->data_end = gsym.st_value; 352 module->nl = nl; 353 module->nfuncs = nfuncs;
|
/illumos-gate/usr/src/uts/common/io/dls/ |
H A D | dls_stat.c | 105 dls_stat_create(const char *module, int instance, const char *name, argument 113 if ((ksp = kstat_create_zone(module, instance, name, "net",
|
/illumos-gate/usr/src/cmd/ldmad/ |
H A D | ldma_log.c | 96 ldma_log_msg(int prio, char *module, char *fmt, va_list vap) argument 112 (void) fprintf(stderr, "%s%s.%s: %s\n", timebuf, module, 122 ldma_err(char *module, char *fmt, ...) argument 127 ldma_log_msg(LOG_ERR, module, fmt, vap); 132 ldma_info(char *module, char *fmt, ...) argument 137 ldma_log_msg(LOG_INFO, module, fmt, vap); 142 ldma_dbg(char *module, char *fmt, ...) argument 152 ldma_log_msg(LOG_DEBUG, module, fmt, vap);
|
/illumos-gate/usr/src/uts/common/rpc/ |
H A D | mt_rpcinit.c | 58 rpcstat_zone_init_common(zoneid_t zoneid, const char *module, const char *name, argument 75 if ((ksp = kstat_create_zone(module, 0, name, "rpc", 85 rpcstat_zone_fini_common(zoneid_t zoneid, const char *module, const char *name) argument 87 kstat_delete_byname_zone(module, 0, name, zoneid);
|
/illumos-gate/usr/src/cmd/lp/cmd/lpsched/ |
H A D | ports.c | 323 push_module(int fd, char *device, char *module) argument 325 int ret = ioctl(fd, I_PUSH, module); 328 note("push (%s) on %s failed (%s)\n", module, device, PERROR);
|
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/ |
H A D | ProbeDescription.java | 36 * A DTrace probe description consists of provider, module, function, 63 * Instance with empty provider, module, function, and name fields 72 * Enumerates the provider, module, function, and name fields of a 78 /** Probe module */ 91 new String[] {"ID", "provider", "module", 106 private final String module; field in class:ProbeDescription 114 * in the format <i>{@code provider:module:function:name}</i> or 119 * <i>{@code provider:module:function:name}</i> or else (if no colon 139 module = ""; 144 module [all...] |
/illumos-gate/usr/src/cmd/fm/fmd/common/ |
H A D | fmd_self.c | 37 fmd_stat_t module; member in struct:__anon479 40 { "module", FMD_TYPE_UINT64, "error events received from fmd modules" }, 90 * If we get an error report from another fmd module, then create a 91 * case for the module and add the ereport to it. The error is either 94 * when the module has failed, at which point we can solve the case. 107 self_stats.module.fmds_value.ui64++; 111 return; /* module is still active, so keep case open */ 199 * fall outside of what we want in the module API. Manually disable 200 * checkpointing for this module by tweaking the mod_stats values.
|
/illumos-gate/usr/src/uts/common/sys/ |
H A D | hotkey_drv.h | 95 const char *module; member in struct:vendor_hotkey_drv
|
/illumos-gate/usr/src/boot/sys/boot/i386/libi386/ |
H A D | bootinfo64.c | 43 * Copy module-related data into the load area, where it can be 51 * MOD_NAME (variable) module name (string) 52 * MOD_TYPE (variable) module type (string) 53 * MOD_ARGS (variable) module parameters (string) 54 * MOD_ADDR sizeof(vm_offset_t) module load address 55 * MOD_SIZE sizeof(size_t) module size 110 /* start with the first module on the list, should be the kernel */ 187 u_int64_t module; local 215 /* find the last module in the chain */ 225 module [all...] |
/illumos-gate/usr/src/lib/fm/topo/modules/sun4v/niu/ |
H A D | niu.c | 68 * Turn on module debugging output 125 nvlist_t *module; local 132 if ((module = topo_mod_modfmri(mod, FM_MOD_SCHEME_VERSION, dnm)) 136 if (topo_prop_set_fmri(tn, tpgrp, tpnm, TOPO_PROP_IMMUTABLE, module, 138 nvlist_free(module); 141 nvlist_free(module);
|
/illumos-gate/usr/src/lib/libgrubmgmt/common/ |
H A D | libgrub_cmd.c | 32 * kernel, kernel$, module, module$, findroot, bootfs 316 module(const grub_line_t *lp, grub_barg_t *barg) function
|
/illumos-gate/usr/src/lib/librcm/ |
H A D | librcm_impl.h | 134 struct module *module; member in struct:rcm_handle 143 * module utility routines
|
/illumos-gate/usr/src/grub/grub-0.97/docs/ |
H A D | multiboot.h | 98 /* The module structure. */ 99 typedef struct module struct
|
/illumos-gate/usr/src/grub/grub-0.97/stage2/ |
H A D | boot.c | 772 load_module (char *module, char *arg) argument 779 if (!grub_open (module)) 789 printf (" [Multiboot-module @ 0x%x, 0x%x bytes]\n", cur_addr, len);
|
/illumos-gate/usr/src/cmd/pools/poold/libjkstat/ |
H A D | jkstat.c | 190 const char *module = NULL; local 199 if (!(module = (*env)->GetStringUTFChars(env, moduleObj, NULL))) 206 ksp = kstat_lookup(kctl, (char *)module, instance, (char *)name); 214 if (module) 215 (*env)->ReleaseStringUTFChars(env, moduleObj, module);
|
/illumos-gate/usr/src/cmd/pools/poolstat/ |
H A D | sa_kstat.c | 205 update_sdata_list(sdata_t *list, kstat_ctl_t *kc, char *module, argument 212 if (strcmp(ksp->ks_module, module) == 0 &&
|
/illumos-gate/usr/src/cmd/stat/common/ |
H A D | acquire.c | 52 kstat_lookup_read(kstat_ctl_t *kc, char *module, argument 55 kstat_t *ksp = kstat_lookup(kc, module, instance, name);
|
/illumos-gate/usr/src/cmd/syseventd/daemons/syseventd/ |
H A D | syseventd.h | 90 * module_t - SLM client module data 92 typedef struct module { struct 93 struct module *next;
|
/illumos-gate/usr/src/uts/common/io/xge/hal/include/ |
H A D | xge-debug.h | 85 * @XGE_COMPONENT_HAL_CONFIG: do debug for xge core config module 86 * @XGE_COMPONENT_HAL_FIFO: do debug for xge core fifo module 87 * @XGE_COMPONENT_HAL_RING: do debug for xge core ring module 88 * @XGE_COMPONENT_HAL_CHANNEL: do debug for xge core channel module 89 * @XGE_COMPONENT_HAL_DEVICE: do debug for xge core device module 90 * @XGE_COMPONENT_HAL_DMQ: do debug for xge core DMQ module 91 * @XGE_COMPONENT_HAL_UMQ: do debug for xge core UMQ module 92 * @XGE_COMPONENT_HAL_SQ: do debug for xge core SQ module 93 * @XGE_COMPONENT_HAL_SRQ: do debug for xge core SRQ module 94 * @XGE_COMPONENT_HAL_CQRQ: do debug for xge core CRQ module 170 u32 module = XGE_COMPONENT_HAL_STATS; local 189 u32 module = XGE_COMPONENT_HAL_INTERRUPT; local 207 u32 module = XGE_COMPONENT_HAL_QUEUE; local 227 u32 module = XGE_COMPONENT_HAL_MM; local 246 u32 module = XGE_COMPONENT_HAL_CONFIG; local 265 u32 module = XGE_COMPONENT_HAL_FIFO; local 283 u32 module = XGE_COMPONENT_HAL_RING; local 301 u32 module = XGE_COMPONENT_HAL_CHANNEL; local 319 u32 module = XGE_COMPONENT_HAL_DEVICE; local 337 u32 module = XGE_COMPONENT_OSDEP; local 356 u32 module = XGE_COMPONENT_LL; local [all...] |
/illumos-gate/usr/src/uts/common/fs/nfs/ |
H A D | nfs_stats.c | 43 * module:0:name:"misc", using the provided template to initialize the names 47 nfsstat_zone_init_common(zoneid_t zoneid, const char *module, int vers, argument 56 if ((ksp = kstat_create_zone(module, vers, name, "misc", 67 * module:0:name. 70 nfsstat_zone_fini_common(zoneid_t zoneid, const char *module, int vers, argument 73 kstat_delete_byname_zone(module, vers, name, zoneid);
|