Searched refs:itp (Results 1 - 25 of 31) sorted by relevance

12

/netbsd-current/lib/libc/gen/
H A Dalarm.c56 struct itimerval *itp = ⁢ local
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)
/netbsd-current/sys/arch/riscv/riscv/
H A Dexec_machdep.c53 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");
52 cpu_netbsd_elf32_probe(struct lwp *l, struct exec_package *epp, void *eh0, char *itp, vaddr_t *start_p) argument
62 cpu_netbsd_elf64_probe(struct lwp *l, struct exec_package *epp, void *eh0, char *itp, vaddr_t *start_p) argument
/netbsd-current/sbin/restore/
H A Ddirs.c150 struct inotab *itp; local
194 itp = allocinotab(&curfile, seekpt);
198 itp->t_size = seekpt - itp->t_seekpt;
231 struct inotab *itp; local
237 itp = inotablookup(ino);
238 if (itp == NULL) {
256 rst_seekdir(dirp, itp->t_seekpt, itp->t_seekpt);
280 rst_seekdir(dirp, bpt, itp
319 struct inotab *itp; local
536 struct inotab *itp; local
715 struct inotab *itp; local
759 struct inotab *itp; local
774 struct inotab *itp; local
811 struct inotab *itp; local
[all...]
/netbsd-current/sys/compat/freebsd/
H A Dfreebsd_exec_elf32.c53 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)))
/netbsd-current/sys/compat/netbsd32/
H A Dnetbsd32_exec_elf32.c85 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);
/netbsd-current/sys/kern/
H A Dsubr_emul.c101 emul_find_interp(struct lwp *l, struct exec_package *epp, const char *itp) argument
108 pb = pathbuf_create(itp);
H A Dkern_time.c768 struct itimerspec *itp; local
774 itp = &it->it_time;
775 if (itp->it_value.tv_nsec < nsec) {
776 if (itp->it_value.tv_sec == 0) {
778 nsec -= itp->it_value.tv_nsec;
781 itp->it_value.tv_nsec += 1000000000;
782 itp->it_value.tv_sec--;
784 itp->it_value.tv_nsec -= nsec;
786 if (timespecisset(&itp->it_value))
790 if (timespecisset(&itp
[all...]
H A Dexec_elf.c1115 netbsd_elf_probe(struct lwp *l, struct exec_package *epp, void *eh, char *itp, argument
1123 if ((error = ELF_MD_PROBE_FUNC(l, epp, eh, itp, pos)) != 0)
/netbsd-current/sys/arch/arm/arm/
H A Dcpu_exec.c52 char *itp, vaddr_t *start_p)
103 (void)compat_elf_check_interp(epp, itp, itp_suffix);
51 arm_netbsd_elf32_probe(struct lwp *l, struct exec_package *epp, void *eh0, char *itp, vaddr_t *start_p) argument
/netbsd-current/external/mpl/dhcp/bind/dist/lib/isc/include/isc/
H A Dht.h107 * Create an iterator for the hashtable; point '*itp' to it.
111 *\li 'itp' is non NULL and '*itp' is NULL.
114 isc_ht_iter_create(isc_ht_t *ht, isc_ht_iter_t **itp);
117 * Destroy the iterator '*itp', set it to NULL
120 *\li 'itp' is non NULL and '*itp' is non NULL.
123 isc_ht_iter_destroy(isc_ht_iter_t **itp);
/netbsd-current/external/mpl/bind/dist/lib/isc/include/isc/
H A Dht.h107 * Create an iterator for the hashtable; point '*itp' to it.
111 *\li 'itp' is non NULL and '*itp' is NULL.
114 isc_ht_iter_create(isc_ht_t *ht, isc_ht_iter_t **itp);
117 * Destroy the iterator '*itp', set it to NULL
120 *\li 'itp' is non NULL and '*itp' is non NULL.
123 isc_ht_iter_destroy(isc_ht_iter_t **itp);
/netbsd-current/usr.bin/tip/aculib/
H A Dcourier.c344 struct itimerval *itp = &itv; local
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);
H A Dt3000.c354 struct itimerval *itp = &itv; local
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);
/netbsd-current/sys/compat/linux32/common/
H A Dlinux32_exec_elf32.c72 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)))
/netbsd-current/sys/arch/mips/mips/
H A Dcpu_exec.c94 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);
93 mips_netbsd_elf32_probe(struct lwp *l, struct exec_package *epp, void *eh0, char *itp, vaddr_t *start_p) argument
211 mips_netbsd_elf64_probe(struct lwp *l, struct exec_package *epp, void *eh0, char *itp, vaddr_t *start_p) argument
/netbsd-current/sys/compat/linux/common/
H A Dlinux_exec_elf32.c367 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)))
/netbsd-current/sys/arch/aarch64/aarch64/
H A Dexec_machdep.c63 char *itp, vaddr_t *start_p)
72 char *itp, vaddr_t *start_p)
62 aarch64_netbsd_elf64_probe(struct lwp *l, struct exec_package *epp, void *eh0, char *itp, vaddr_t *start_p) argument
71 aarch64_netbsd_elf32_probe(struct lwp *l, struct exec_package *epp, void *eh0, char *itp, vaddr_t *start_p) argument
/netbsd-current/sys/external/bsd/ipf/netinet/
H A Dip_frag.c1105 ipf_frag_pkt_next(ipf_main_softc_t *softc, ipftoken_t *token, ipfgeniter_t *itp) argument
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) argument
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
1150 ipf_frag_next( ipf_main_softc_t *softc, ipftoken_t *token, ipfgeniter_t *itp, ipfr_t **top , ipfrwlock_t *lock ) argument
[all...]
H A Dip_auth.c900 /* itp(I) - pointer to ipfgeniter structure */
908 ipf_auth_geniter(ipf_main_softc_t *softc, ipftoken_t *token, ipfgeniter_t *itp, argument
915 if (itp->igi_data == NULL) {
920 if (itp->igi_type != IPFGENITER_AUTH) {
926 objp->ipfo_ptr = itp->igi_data;
/netbsd-current/external/mpl/dhcp/bind/dist/lib/isc/
H A Dht.c490 isc_ht_iter_create(isc_ht_t *ht, isc_ht_iter_t **itp) { argument
494 REQUIRE(itp != NULL && *itp == NULL);
502 *itp = it;
506 isc_ht_iter_destroy(isc_ht_iter_t **itp) { argument
510 REQUIRE(itp != NULL && *itp != NULL);
512 it = *itp;
513 *itp = NULL;
/netbsd-current/external/mpl/bind/dist/lib/isc/
H A Dht.c490 isc_ht_iter_create(isc_ht_t *ht, isc_ht_iter_t **itp) { argument
494 REQUIRE(itp != NULL && *itp == NULL);
502 *itp = it;
506 isc_ht_iter_destroy(isc_ht_iter_t **itp) { argument
510 REQUIRE(itp != NULL && *itp != NULL);
512 it = *itp;
513 *itp = NULL;
/netbsd-current/external/mpl/dhcp/bind/dist/lib/dns/include/dns/
H A Dcatz.h463 dns_catz_get_iterator(dns_catz_zone_t *catz, isc_ht_iter_t **itp);
465 * Get the hashtable iterator on catalog zone members, point '*itp' to it.
469 * \li 'itp' is not NULL and '*itp' is NULL.
/netbsd-current/external/mpl/bind/dist/lib/dns/include/dns/
H A Dcatz.h402 dns_catz_get_iterator(dns_catz_zone_t *catz, isc_ht_iter_t **itp);
404 * Get the hashtable iterator on catalog zone members, point '*itp' to it.
408 * \li 'itp' is not NULL and '*itp' is NULL.
/netbsd-current/external/bsd/libarchive/dist/libarchive/
H A Darchive_string.c2029 ICONV_CONST char *itp; local
2050 itp = (char *)(uintptr_t)_p;
2055 size_t result = iconv(cd, &itp, &remaining, &outp, &avail);
2097 itp += from_size;
2234 const uint8_t *itp; local
2255 itp = (const uint8_t *)_p;
2256 while (*itp && remaining > 0) {
2257 if (*itp > 127) {
2268 archive_strappend_char(as, *itp);
2270 ++itp;
[all...]
/netbsd-current/usr.sbin/sysinst/
H A Dmsg.pm.pl66 {Partition Manager. Wszystkie dyski, partycje oraz itp. tam wy�wietlane.

Completed in 300 milliseconds

12