HomeSort by: relevance | last modified time | path
    Searched defs:sce (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/arch/usermode/modules/syscallemu/
syscallemu_arm.c 53 struct syscallemu_data *sce; local in function:arm_syscall_emu
63 sce = syscallemu_getsce(p);
64 if (sce) {
65 if ((pc_call >= sce->sce_user_start &&
66 pc_call < sce->sce_user_end) ||
67 (pc_call + INSN_SIZE >= sce->sce_user_start &&
68 pc_call + INSN_SIZE < sce->sce_user_end)) {
71 md_syscall = sce->sce_md_syscall;
syscallemu_x86.c 51 struct syscallemu_data *sce; local in function:x86_syscall_emu
63 sce = syscallemu_getsce(p);
64 if (sce) {
65 if ((rip_call >= sce->sce_user_start &&
66 rip_call < sce->sce_user_end) ||
67 (rip_call + frame->tf_err >= sce->sce_user_start &&
68 rip_call + frame->tf_err < sce->sce_user_end)) {
71 md_syscall = sce->sce_md_syscall;
syscallemu.c 60 syscallemu_setsce(struct proc *p, struct syscallemu_data *sce)
62 proc_setspecific(p, syscallemu_data_key, sce);
71 struct syscallemu_data *sce = priv; local in function:syscallemu_dtor
73 kmem_free(sce, sizeof(*sce));
94 struct syscallemu_data *sce; local in function:sys_syscallemu
102 sce = kmem_alloc(sizeof(*sce), KM_SLEEP);
103 sce->sce_user_start = user_start;
104 sce->sce_user_end = user_end
    [all...]
  /src/sys/netinet/
tcp_syncache.c 359 struct syn_cache_head *scp2, *sce; local in function:syn_cache_insert
372 sce = &tcp_syn_cache[tcp_syn_cache_size];
374 if (scp2 >= sce)
  /src/usr.bin/deroff/
deroff.c 249 static void sce(void);
684 sce(void) function in typeref:typename:void
1320 sce();
  /src/sys/dev/usb/
ugen.c 133 struct ugen_endpoint *sce; member in struct:isoreq
427 struct ugen_endpoint *sce; local in function:ugenif_attach
429 sce = &sc->sc_endpoints[i][dir];
430 selinit(&sce->rsel);
431 cv_init(&sce->cv, "ugensce");
474 struct ugen_endpoint *sce = &sc->sc_endpoints[i][dir]; local in function:ugen_clear_endpoints
475 memset(sce, 0, UGEN_ENDPOINT_NONZERO_CRUFT);
487 struct ugen_endpoint *sce; local in function:ugen_set_config
546 sce = &sc->sc_endpoints[UE_GET_ADDR(endpt)][dir];
550 sce->sc = sc
577 struct ugen_endpoint *sce; local in function:ugenopen
751 struct ugen_endpoint *sce; local in function:ugen_do_close
851 struct ugen_endpoint *sce = &sc->sc_endpoints[endpt][IN]; local in function:ugen_do_read
1061 struct ugen_endpoint *sce = &sc->sc_endpoints[endpt][OUT]; local in function:ugen_do_write
1244 struct ugen_endpoint *sce; local in function:ugen_detach
1338 struct ugen_endpoint *sce = addr; local in function:ugenintr
1376 struct ugen_endpoint *sce = req->sce; local in function:ugen_isoc_rintr
1437 struct ugen_endpoint *sce = addr; local in function:ugen_bulkra_intr
1506 struct ugen_endpoint *sce = addr; local in function:ugen_bulkwb_intr
1576 struct ugen_endpoint *sce; local in function:ugen_set_interface
1674 struct ugen_endpoint *sce; local in function:ugen_do_ioctl
2203 struct ugen_endpoint *sce = kn->kn_hook; local in function:filt_ugenrdetach
2214 struct ugen_endpoint *sce = kn->kn_hook; local in function:filt_ugenread_intr
2233 struct ugen_endpoint *sce = kn->kn_hook; local in function:filt_ugenread_isoc
2258 struct ugen_endpoint *sce = kn->kn_hook; local in function:filt_ugenread_bulk
2286 struct ugen_endpoint *sce = kn->kn_hook; local in function:filt_ugenwrite_bulk
2343 struct ugen_endpoint *sce; local in function:ugenkqfilter
    [all...]

Completed in 14 milliseconds