/src/lib/libc/gen/ |
alarm.c | 56 struct itimerval *itp = ⁢ local in function:__weak_alias 58 timerclear(&itp->it_interval); 59 itp->it_value.tv_sec = secs; 60 itp->it_value.tv_usec = 0; 61 if (setitimer(ITIMER_REAL, itp, &oitv) == -1)
|
/src/sys/arch/riscv/riscv/ |
exec_machdep.c | 53 char *itp, vaddr_t *start_p) 55 (void)compat_elf_check_interp(epp, itp, "rv32"); 63 char *itp, vaddr_t *start_p) 65 (void)compat_elf_check_interp(epp, itp, "rv64");
|
/src/sbin/restore/ |
dirs.c | 150 struct inotab *itp; local in function:extractdirs 194 itp = allocinotab(&curfile, seekpt); 198 itp->t_size = seekpt - itp->t_seekpt; 231 struct inotab *itp; local in function:treescan 237 itp = inotablookup(ino); 238 if (itp == NULL) { 256 rst_seekdir(dirp, itp->t_seekpt, itp->t_seekpt); 280 rst_seekdir(dirp, bpt, itp->t_seekpt) 319 struct inotab *itp; local in function:searchdir 536 struct inotab *itp; local in function:rst_opendir 715 struct inotab *itp; local in function:genliteraldir 759 struct inotab *itp; local in function:inodetype 774 struct inotab *itp; local in function:allocinotab 811 struct inotab *itp; local in function:inotablookup [all...] |
/src/sys/compat/freebsd/ |
freebsd_exec_elf32.c | 53 char *itp, vaddr_t *pos) 74 if (itp) { 75 if (strncmp(itp, wantInterp, sizeof(wantInterp) - 1)) 77 if ((error = emul_find_interp(l, epp, itp)))
|
/src/sys/compat/netbsd32/ |
netbsd32_exec_elf32.c | 85 void *eh, char *itp, vaddr_t *pos); 91 void *eh, char *itp, vaddr_t *pos) 99 if ((error = ELF_MD_PROBE_FUNC(l, epp, eh, itp, pos)) != 0) 105 return ELFNAME2(netbsd32,probe_noteless)(l, epp, eh, itp, pos); 110 void *eh, char *itp, vaddr_t *pos) 114 if (itp && epp->ep_interp == NULL) { 116 (void)compat_elf_check_interp(epp, itp, m);
|
/src/sys/arch/arm/arm/ |
cpu_exec.c | 52 char *itp, vaddr_t *start_p) 103 (void)compat_elf_check_interp(epp, itp, itp_suffix);
|
/src/sys/kern/ |
subr_emul.c | 101 emul_find_interp(struct lwp *l, struct exec_package *epp, const char *itp) 108 pb = pathbuf_create(itp);
|
kern_time.c | 780 struct itimerspec *itp; local in function:itimer_decr 786 itp = &it->it_time; 787 if (itp->it_value.tv_nsec < nsec) { 788 if (itp->it_value.tv_sec == 0) { 790 nsec -= itp->it_value.tv_nsec; 793 itp->it_value.tv_nsec += 1000000000; 794 itp->it_value.tv_sec--; 796 itp->it_value.tv_nsec -= nsec; 798 if (timespecisset(&itp->it_value)) 802 if (timespecisset(&itp->it_interval)) [all...] |
exec_elf.c | 1118 netbsd_elf_probe(struct lwp *l, struct exec_package *epp, void *eh, char *itp, 1126 if ((error = ELF_MD_PROBE_FUNC(l, epp, eh, itp, pos)) != 0)
|
/src/usr.bin/tip/aculib/ |
courier.c | 344 struct itimerval *itp = &itv; local in function:cour_nap 348 timerclear(&itp->it_interval); 349 timerclear(&itp->it_value); 350 if (setitimer(ITIMER_REAL, itp, &oitv) < 0) 357 itp->it_value.tv_sec = napms/1000; 358 itp->it_value.tv_usec = ((napms%1000)*1000); 363 (void)setitimer(ITIMER_REAL, itp, NULL);
|
t3000.c | 354 struct itimerval *itp = &itv; local in function:t3000_nap 358 timerclear(&itp->it_interval); 359 timerclear(&itp->it_value); 360 if (setitimer(ITIMER_REAL, itp, &oitv) < 0) 367 itp->it_value.tv_sec = napms/1000; 368 itp->it_value.tv_usec = ((napms%1000)*1000); 373 (void)setitimer(ITIMER_REAL, itp, NULL);
|
/src/sys/compat/linux32/common/ |
linux32_exec_elf32.c | 72 void *eh, char *itp, vaddr_t *pos) 76 if (((error = ELFNAME2(linux,signature)(l, epp, eh, itp)) != 0) && 92 if (itp) { 93 if ((error = emul_find_interp(l, epp, itp)))
|
/src/sys/arch/mips/mips/ |
cpu_exec.c | 94 char *itp, vaddr_t *start_p) 165 (void)compat_elf_check_interp(epp, itp, itp_suffix); 212 char *itp, vaddr_t *start_p) 274 (void)compat_elf_check_interp(epp, itp, itp_suffix);
|
/src/sys/compat/linux/common/ |
linux_exec_elf32.c | 367 ELFNAME2(linux,signature)(struct lwp *l, struct exec_package *epp, Elf_Ehdr *eh, char *itp) 425 if (itp) { 426 if (!strncmp(itp, "/lib/ld-linux", 13) || 428 !strncmp(itp, "/lib64/ld-linux", 15) || 430 !strncmp(itp, "/lib/ld.so.", 11)) 445 char *itp, vaddr_t *pos) 449 if (((error = ELFNAME2(linux,signature)(l, epp, eh, itp)) != 0) && 467 if (itp) { 468 if ((error = emul_find_interp(l, epp, itp)))
|
/src/sys/arch/aarch64/aarch64/ |
exec_machdep.c | 63 char *itp, vaddr_t *start_p) 72 char *itp, vaddr_t *start_p)
|
/src/sys/external/bsd/ipf/netinet/ |
ip_frag.c | 1105 ipf_frag_pkt_next(ipf_main_softc_t *softc, ipftoken_t *token, ipfgeniter_t *itp) 1110 return ipf_frag_next(softc, token, itp, &softf->ipfr_list, 1113 return ipf_frag_next(softc, token, itp, &softf->ipfr_list); 1122 ipf_frag_nat_next(ipf_main_softc_t *softc, ipftoken_t *token, ipfgeniter_t *itp) 1127 return ipf_frag_next(softc, token, itp, &softf->ipfr_natlist, 1130 return ipf_frag_next(softc, token, itp, &softf->ipfr_natlist); 1138 /* itp(I) - pointer to generic iterator from caller */ 1153 ipfgeniter_t *itp, 1163 if (itp->igi_data == NULL) { 1168 if (itp->igi_nitems != 1) [all...] |
ip_auth.c | 900 /* itp(I) - pointer to ipfgeniter structure */ 908 ipf_auth_geniter(ipf_main_softc_t *softc, ipftoken_t *token, ipfgeniter_t *itp, 915 if (itp->igi_data == NULL) { 920 if (itp->igi_type != IPFGENITER_AUTH) { 926 objp->ipfo_ptr = itp->igi_data;
|
ip_nat.c | 6509 /* itp(I) - pointer to ipfgeniter_t structure */ 6516 ipf_nat_getnext(ipf_main_softc_t *softc, ipftoken_t *t, ipfgeniter_t *itp, 6526 if (itp->igi_nitems != 1) { 6533 switch (itp->igi_type) 6599 objp->ipfo_ptr = itp->igi_data; 6601 switch (itp->igi_type) 6831 /* itp(I) - pointer to ipfgeniter_t structure */ 6840 ipf_nat_iterator(ipf_main_softc_t *softc, ipftoken_t *token, ipfgeniter_t *itp, 6845 if (itp->igi_data == NULL) { 6850 switch (itp->igi_type [all...] |
ip_state.c | 4737 /* itp(I) - pointer to ipfgeniter structure */ 4744 ipf_state_iter(ipf_main_softc_t *softc, ipftoken_t *token, ipfgeniter_t *itp, 4751 if (itp->igi_data == NULL) { 4756 if (itp->igi_nitems < 1) { 4761 if (itp->igi_type != IPFGENITER_STATE) { 4804 obj->ipfo_ptr = itp->igi_data;
|
fil.c | 7846 /* itp(I) - pointer to iterator data */ 7849 /* the ipfgeniter_t structure at itp. */ 7852 ipf_geniter(ipf_main_softc_t *softc, ipftoken_t *token, ipfgeniter_t *itp) 7856 switch (itp->igi_type) 7859 error = ipf_frag_pkt_next(softc, token, itp);
|
/src/usr.sbin/sysinst/ |
msg.pm.pl | 66 {Partition Manager. Wszystkie dyski, partycje oraz itp. tam wy�wietlane.
|
/src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/exynos/ |
exynos7.dtsi | 670 "phy_utmi", "itp";
|
exynos5433.dtsi | 1777 "itp"; 1791 "itp";
|