Home
last modified time | relevance | path

Searched refs:sysp (Results 1 – 12 of 12) sorted by relevance

/illumos-gate/usr/src/uts/common/os/
H A Dmodsysfile.c512 struct sysparam *sysp; in do_sysfile_cmd() local
524 sysp = vmem_alloc(mod_sysfile_arena, sizeof (struct sysparam), in do_sysfile_cmd()
526 bzero(sysp, sizeof (struct sysparam)); in do_sysfile_cmd()
527 sysp->sys_op = SETOP_NONE; /* set op to noop initially */ in do_sysfile_cmd()
529 switch (sysp->sys_type = mcp->mc_type) { in do_sysfile_cmd()
561 if (sysp->sys_type == MOD_INCLUDE) in do_sysfile_cmd()
563 sysp->sys_ptr = vmem_alloc(mod_sysfile_arena, strlen(tok1) + 1, in do_sysfile_cmd()
565 (void) strcpy(sysp->sys_ptr, tok1); in do_sysfile_cmd()
590 sysp->sys_modnam = vmem_alloc(mod_sysfile_arena, in do_sysfile_cmd()
592 (void) strcpy(sysp->sys_modnam, tok1); in do_sysfile_cmd()
[all …]
H A Dmodconf.c731 struct sysent *sysp; in mod_infosysnum() local
733 if ((sysp = mod_getsysent(modlp, table)) == NULL) in mod_infosysnum()
735 return ((int)(sysp - table)); in mod_infosysnum()
747 struct sysent *sysp; in mod_installsys_sysent() local
769 if ((sysp = mod_getsysent(modlp, table)) == NULL) in mod_installsys_sysent()
776 rw_enter(sysp->sy_lock, RW_WRITER); in mod_installsys_sysent()
778 sysp->sy_narg = mp->sy_narg; in mod_installsys_sysent()
779 sysp->sy_call = mp->sy_call; in mod_installsys_sysent()
784 sysp->sy_flags &= ~SE_ARGC; in mod_installsys_sysent()
785 sysp->sy_flags |= SE_LOADED | in mod_installsys_sysent()
[all …]
H A Dswapgeneric.c271 preload_module(struct sysparam *sysp, void *p) in preload_module() argument
276 name = sysp->sys_ptr; in preload_module()
/illumos-gate/usr/src/uts/intel/sys/
H A Dbootsvcs.h66 extern boot_syscalls_t *sysp;
67 #define SYSP sysp
70 #define BSVC_GETCHAR(sysp) (((sysp)->bsvc_getchar)()) argument
71 #define BSVC_PUTCHAR(sysp, c) (((sysp)->bsvc_putchar)(c)) argument
72 #define BSVC_ISCHAR(sysp) (((sysp)->bsvc_ischar)()) argument
/illumos-gate/usr/src/uts/sun4u/serengeti/sys/
H A Dserengeti.h268 extern int sg_get_prom_version(int *sysp, int *intfp, int *bldp);
/illumos-gate/usr/src/uts/i86pc/ml/
H A Dlocore.S106 .globl sysp
156 movq %rdi, sysp(%rip)
/illumos-gate/usr/src/uts/sun4u/lw8/os/
H A Dlw8_platmod.c1370 sg_get_prom_version(int *sysp, int *intfp, int *bldp) in sg_get_prom_version() argument
1396 *sysp = strtoi(verp, &ep); in sg_get_prom_version()
/illumos-gate/usr/src/uts/sun4u/serengeti/os/
H A Dserengeti.c1358 sg_get_prom_version(int *sysp, int *intfp, int *bldp) in sg_get_prom_version() argument
1384 *sysp = strtoi(verp, &ep); in sg_get_prom_version()
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dgenunix.c3701 struct sysparam *sysp, sys; in sysfile() local
3709 if (mdb_readvar(&sysp, "sysparam_hd") == -1) { in sysfile()
3719 while (sysp != NULL) { in sysfile()
3723 if (mdb_vread(&sys, sizeof (sys), (uintptr_t)sysp) == -1) { in sysfile()
3724 mdb_warn("couldn't read sysparam %p", sysp); in sysfile()
3730 mdb_warn("couldn't read modname in %p", sysp); in sysfile()
3735 mdb_warn("couldn't read ptr in %p", sysp); in sysfile()
3766 sysp = sys.sys_next; in sysfile()
/illumos-gate/usr/src/uts/i86pc/os/
H A Dmachdep.c655 sysp = &kern_sysp; in kadb_uses_kernel()
H A Dstartup.c249 struct boot_syscalls *sysp; /* passed in from boot */ variable
/illumos-gate/usr/src/uts/i86xpv/os/
H A Dxpv_panic.c708 sysp->bsvc_putchar = xpv_panic_putc; in xpv_do_panic()