Home
last modified time | relevance | path

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

/titanic_41/usr/src/uts/common/os/
H A Dmodsysfile.c502 struct sysparam *sysp; in do_sysfile_cmd() local
514 sysp = vmem_alloc(mod_sysfile_arena, sizeof (struct sysparam), in do_sysfile_cmd()
516 bzero(sysp, sizeof (struct sysparam)); in do_sysfile_cmd()
517 sysp->sys_op = SETOP_NONE; /* set op to noop initially */ in do_sysfile_cmd()
519 switch (sysp->sys_type = mcp->mc_type) { in do_sysfile_cmd()
551 if (sysp->sys_type == MOD_INCLUDE) in do_sysfile_cmd()
553 sysp->sys_ptr = vmem_alloc(mod_sysfile_arena, strlen(tok1) + 1, in do_sysfile_cmd()
555 (void) strcpy(sysp->sys_ptr, tok1); in do_sysfile_cmd()
580 sysp->sys_modnam = vmem_alloc(mod_sysfile_arena, in do_sysfile_cmd()
582 (void) strcpy(sysp->sys_modnam, tok1); in do_sysfile_cmd()
[all …]
H A Dmodconf.c728 struct sysent *sysp; in mod_infosysnum() local
730 if ((sysp = mod_getsysent(modlp, table)) == NULL) in mod_infosysnum()
732 return ((int)(sysp - table)); in mod_infosysnum()
744 struct sysent *sysp; in mod_installsys_sysent() local
766 if ((sysp = mod_getsysent(modlp, table)) == NULL) in mod_installsys_sysent()
773 rw_enter(sysp->sy_lock, RW_WRITER); in mod_installsys_sysent()
775 sysp->sy_narg = mp->sy_narg; in mod_installsys_sysent()
776 sysp->sy_call = mp->sy_call; in mod_installsys_sysent()
781 sysp->sy_flags &= ~SE_ARGC; in mod_installsys_sysent()
782 sysp->sy_flags |= SE_LOADED | in mod_installsys_sysent()
[all …]
H A Dswapgeneric.c315 preload_module(struct sysparam *sysp, void *p) in preload_module() argument
320 name = sysp->sys_ptr; in preload_module()
/titanic_41/usr/src/uts/intel/sys/
H A Dbootsvcs.h68 extern boot_syscalls_t *sysp;
69 #define SYSP sysp
72 #define BSVC_GETCHAR(sysp) (((sysp)->bsvc_getchar)()) argument
73 #define BSVC_PUTCHAR(sysp, c) (((sysp)->bsvc_putchar)(c)) argument
74 #define BSVC_ISCHAR(sysp) (((sysp)->bsvc_ischar)()) argument
/titanic_41/usr/src/uts/sun4u/serengeti/sys/
H A Dserengeti.h268 extern int sg_get_prom_version(int *sysp, int *intfp, int *bldp);
/titanic_41/usr/src/uts/i86pc/ml/
H A Dlocore.s119 .globl sysp
145 _locore_start(struct boot_syscalls *sysp, ulong_t rsi, struct bootops *bop)
182 movq %rdi, sysp(%rip)
250 _locore_start(struct boot_syscalls *sysp, struct bootops *bop)
279 mov %ecx, sysp / save call back for boot services
/titanic_41/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()
/titanic_41/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()
/titanic_41/usr/src/cmd/mdb/common/modules/genunix/
H A Dgenunix.c3404 struct sysparam *sysp, sys; in sysfile() local
3412 if (mdb_readvar(&sysp, "sysparam_hd") == -1) { in sysfile()
3422 while (sysp != NULL) { in sysfile()
3426 if (mdb_vread(&sys, sizeof (sys), (uintptr_t)sysp) == -1) { in sysfile()
3427 mdb_warn("couldn't read sysparam %p", sysp); in sysfile()
3433 mdb_warn("couldn't read modname in %p", sysp); in sysfile()
3438 mdb_warn("couldn't read ptr in %p", sysp); in sysfile()
3469 sysp = sys.sys_next; in sysfile()
/titanic_41/usr/src/uts/i86pc/os/
H A Dmachdep.c644 sysp = &kern_sysp; in kadb_uses_kernel()
H A Dstartup.c265 struct boot_syscalls *sysp; /* passed in from boot */ variable
/titanic_41/usr/src/uts/i86xpv/os/
H A Dxpv_panic.c716 sysp->bsvc_putchar = xpv_panic_putc; in xpv_do_panic()