Home
last modified time | relevance | path

Searched refs:tss (Results 1 – 8 of 8) sorted by relevance

/f-stack/freebsd/netinet6/
H A Din6_mcast.c1632 struct sockaddr_storage *tss; in in6p_get_source_filters() local
1692 tss = NULL; in in6p_get_source_filters()
1694 tss = malloc(sizeof(struct sockaddr_storage) * msfr.msfr_nsrcs, in in6p_get_source_filters()
1696 if (tss == NULL) { in in6p_get_source_filters()
1708 ptss = tss; in in6p_get_source_filters()
1715 if (tss != NULL && nsrcs > 0) { in in6p_get_source_filters()
1728 if (tss != NULL) { in in6p_get_source_filters()
1729 error = copyout(tss, msfr.msfr_srcs, in in6p_get_source_filters()
1731 free(tss, M_TEMP); in in6p_get_source_filters()
/f-stack/freebsd/netinet/
H A Din_mcast.c1675 struct sockaddr_storage *tss; in inp_get_source_filters() local
1728 tss = NULL; in inp_get_source_filters()
1730 tss = malloc(sizeof(struct sockaddr_storage) * msfr.msfr_nsrcs, in inp_get_source_filters()
1732 if (tss == NULL) { in inp_get_source_filters()
1744 ptss = tss; in inp_get_source_filters()
1751 if (tss != NULL && nsrcs > 0) { in inp_get_source_filters()
1764 if (tss != NULL) { in inp_get_source_filters()
1765 error = copyout(tss, msfr.msfr_srcs, in inp_get_source_filters()
1767 free(tss, M_TEMP); in inp_get_source_filters()
/f-stack/freebsd/i386/i386/
H A Dmachdep.c1539 IDTVEC(tss), IDTVEC(missing), IDTVEC(stk), IDTVEC(prot),
2246 setidt(IDT_TS, &IDTVEC(tss), SDT_SYS386IGT, SEL_KPL, in i386_setidt1()
2520 struct i386tss *tss; in machdep_init_trampoline() local
2531 tss = pmap_trm_alloc(sizeof(struct i386tss) * mp_ncpus, in machdep_init_trampoline()
2533 bcopy(&common_tss0, tss, sizeof(struct i386tss)); in machdep_init_trampoline()
2534 gdt[GPROC0_SEL].sd.sd_lobase = (int)tss; in machdep_init_trampoline()
2535 gdt[GPROC0_SEL].sd.sd_hibase = (u_int)tss >> 24; in machdep_init_trampoline()
2541 PCPU_SET(common_tssp, tss); in machdep_init_trampoline()
2550 tss[0].tss_esp0 = PCPU_GET(trampstk); in machdep_init_trampoline()
H A Dexception.s122 IDTVEC(tss)
/f-stack/freebsd/amd64/amd64/
H A Dsys_machdep.c432 tss_sd = PCPU_GET(tss);
H A Dmachdep.c825 IDTVEC(tss), IDTVEC(missing), IDTVEC(stk), IDTVEC(prot),
1562 PCPU_SET(tss, (struct system_segment_descriptor *)&gdt[GPROC0_SEL]); in amd64_bsp_pcpu_init1()
1745 setidt(IDT_TS, pti ? &IDTVEC(tss_pti) : &IDTVEC(tss), SDT_SYSIGT, in hammer_time()
H A Dexception.S208 TRAP_ERR tss, T_TSSFLT
/f-stack/freebsd/amd64/vmm/amd/
H A Dsvm.c1799 tss_sd = PCPU_GET(tss); in restore_host_tss()