Searched refs:ltv (Results 1 - 3 of 3) sorted by path

/freebsd-11-stable/sys/compat/linux/
H A Dlinux_misc.c502 l_timeval ltv; local
518 if ((error = copyin(args->timeout, &ltv, sizeof(ltv))))
520 utv.tv_sec = ltv.tv_sec;
521 utv.tv_usec = ltv.tv_usec;
577 ltv.tv_sec = utv.tv_sec;
578 ltv.tv_usec = utv.tv_usec;
579 if ((error = copyout(&ltv, args->timeout, sizeof(ltv))))
809 l_timeval ltv[ local
937 l_timeval ltv[2]; local
[all...]
H A Dlinux_signal.c405 l_timeval ltv; local
426 if ((error = copyin(args->timeout, &ltv, sizeof(ltv))))
432 (intmax_t)ltv.tv_sec, (intmax_t)ltv.tv_usec);
434 tv.tv_sec = (long)ltv.tv_sec;
435 tv.tv_usec = (suseconds_t)ltv.tv_usec;
/freebsd-11-stable/sys/dev/an/
H A Dif_an.c1374 an_read_record(struct an_softc *sc, struct an_ltv_gen *ltv) argument
1386 if (ltv->an_len < 4 || ltv->an_type == 0)
1392 if (an_cmd(sc, AN_CMD_ACCESS|AN_ACCESS_READ, ltv->an_type)) {
1398 if (an_seek(sc, ltv->an_type, 0, AN_BAP1)) {
1410 if (len > (ltv->an_len - 2)) {
1413 ltv->an_len - 2, len, ltv->an_type);
1414 len = ltv->an_len - 2;
1416 ltv
1487 an_write_record(struct an_softc *sc, struct an_ltv_gen *ltv) argument
1588 an_dump_record(struct an_softc *sc, struct an_ltv_gen *ltv, char *string) argument
[all...]

Completed in 228 milliseconds