Searched refs:itp (Results 1 - 10 of 10) sorted by path

/freebsd-11-stable/lib/libc/gen/
H A Dalarm.c46 struct itimerval *itp = ⁢ local
48 timerclear(&itp->it_interval);
49 itp->it_value.tv_sec = secs;
50 itp->it_value.tv_usec = 0;
51 if (setitimer(ITIMER_REAL, itp, &oitv) < 0)
/freebsd-11-stable/sbin/restore/
H A Ddirs.c135 struct inotab *itp; local
180 itp = allocinotab(&curfile, seekpt);
184 itp->t_size = seekpt - itp->t_seekpt;
217 struct inotab *itp; local
223 itp = inotablookup(ino);
224 if (itp == NULL) {
243 rst_seekdir(dirp, itp->t_seekpt, itp->t_seekpt);
267 rst_seekdir(dirp, bpt, itp
306 struct inotab *itp; local
496 struct inotab *itp; local
676 struct inotab *itp; local
720 struct inotab *itp; local
735 struct inotab *itp; local
772 struct inotab *itp; local
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_string.c2024 ICONV_CONST char *itp; local
2045 itp = (char *)(uintptr_t)_p;
2050 size_t result = iconv(cd, &itp, &remaining, &outp, &avail);
2092 itp += from_size;
2229 const uint8_t *itp; local
2250 itp = (const uint8_t *)_p;
2251 while (*itp && remaining > 0) {
2252 if (*itp > 127) {
2263 archive_strappend_char(as, *itp);
2265 ++itp;
[all...]
/freebsd-11-stable/sys/contrib/ipfilter/netinet/
H A Dfil.c8089 /* itp(I) - pointer to iterator data */
8092 /* the ipfgeniter_t structure at itp. */
8095 ipf_geniter(softc, token, itp)
8098 ipfgeniter_t *itp;
8102 switch (itp->igi_type)
8105 error = ipf_frag_pkt_next(softc, token, itp);
H A Dip_auth.c872 /* itp(I) - pointer to ipfgeniter structure */
880 ipf_auth_geniter(softc, token, itp, objp)
883 ipfgeniter_t *itp;
890 if (itp->igi_data == NULL) {
895 if (itp->igi_type != IPFGENITER_AUTH) {
901 objp->ipfo_ptr = itp->igi_data;
H A Dip_frag.c1146 /* itp(I) - pointer to generic iterator from caller */
1152 ipf_frag_pkt_next(softc, token, itp)
1155 ipfgeniter_t *itp;
1160 return ipf_frag_next(softc, token, itp, &softf->ipfr_list,
1163 return ipf_frag_next(softc, token, itp, &softf->ipfr_list);
1173 /* itp(I) - pointer to generic iterator from caller */
1179 ipf_frag_nat_next(softc, token, itp)
1182 ipfgeniter_t *itp;
1187 return ipf_frag_next(softc, token, itp, &softf->ipfr_natlist,
1190 return ipf_frag_next(softc, token, itp,
[all...]
H A Dip_nat.c6588 /* itp(I) - pointer to ipfgeniter_t structure */
6595 ipf_nat_getnext(softc, t, itp, objp)
6598 ipfgeniter_t *itp;
6608 if (itp->igi_nitems != 1) {
6615 switch (itp->igi_type)
6681 objp->ipfo_ptr = itp->igi_data;
6683 switch (itp->igi_type)
6918 /* itp(I) - pointer to ipfgeniter_t structure */
6927 ipf_nat_iterator(softc, token, itp, obj)
6930 ipfgeniter_t *itp;
[all...]
H A Dip_state.c4835 /* itp(I) - pointer to ipfgeniter structure */
4842 ipf_state_iter(softc, token, itp, obj)
4845 ipfgeniter_t *itp;
4852 if (itp->igi_data == NULL) {
4857 if (itp->igi_nitems < 1) {
4862 if (itp->igi_type != IPFGENITER_STATE) {
4905 obj->ipfo_ptr = itp->igi_data;
/freebsd-11-stable/sys/kern/
H A Dkern_time.c948 itimerdecr(struct itimerval *itp, int usec) argument
951 if (itp->it_value.tv_usec < usec) {
952 if (itp->it_value.tv_sec == 0) {
954 usec -= itp->it_value.tv_usec;
957 itp->it_value.tv_usec += 1000000;
958 itp->it_value.tv_sec--;
960 itp->it_value.tv_usec -= usec;
962 if (timevalisset(&itp->it_value))
966 if (timevalisset(&itp->it_interval)) {
967 itp
[all...]
/freebsd-11-stable/sys/sys/
H A Dtime.h496 int itimerdecr(struct itimerval *itp, int usec);

Completed in 218 milliseconds