Home
last modified time | relevance | path

Searched refs:d_sec (Results 1 – 25 of 120) sorted by relevance

12345

/dports/sysutils/nut/nut-2.7.4/drivers/
H A Dserial.h54 int ser_get_char(int fd, void *ch, long d_sec, long d_usec);
56 int ser_get_buf(int fd, void *buf, size_t buflen, long d_sec, long d_usec);
59 int ser_get_buf_len(int fd, void *buf, size_t buflen, long d_sec, long d_usec);
65 long d_sec, long d_usec);
69 const char *ignset, long d_sec, long d_usec);
H A Dserial.c336 int ser_get_char(int fd, void *ch, long d_sec, long d_usec) in ser_get_char() argument
338 return select_read(fd, ch, 1, d_sec, d_usec); in ser_get_char()
341 int ser_get_buf(int fd, void *buf, size_t buflen, long d_sec, long d_usec) in ser_get_buf() argument
345 return select_read(fd, buf, buflen, d_sec, d_usec); in ser_get_buf()
349 int ser_get_buf_len(int fd, void *buf, size_t buflen, long d_sec, long d_usec) in ser_get_buf_len() argument
359 ret = select_read(fd, &data[recv], buflen - recv, d_sec, d_usec); in ser_get_buf_len()
373 long d_sec, long d_usec) in ser_get_line_alert() argument
385 ret = select_read(fd, tmp, sizeof(tmp), d_sec, d_usec); in ser_get_line_alert()
416 const char *ignset, long d_sec, long d_usec) in ser_get_line() argument
419 d_sec, d_usec); in ser_get_line()
/dports/sysutils/nut-devel/nut-9e6a5ab2/drivers/
H A Dserial.h56 ssize_t ser_get_char(int fd, void *ch, time_t d_sec, useconds_t d_usec);
58 ssize_t ser_get_buf(int fd, void *buf, size_t buflen, time_t d_sec, useconds_t d_usec);
61 ssize_t ser_get_buf_len(int fd, void *buf, size_t buflen, time_t d_sec, useconds_t d_usec);
67 time_t d_sec, useconds_t d_usec);
71 const char *ignset, time_t d_sec, useconds_t d_usec);
H A Dserial.c379 ssize_t ser_get_char(int fd, void *ch, time_t d_sec, useconds_t d_usec) in ser_get_char() argument
385 return select_read(fd, ch, 1, d_sec, (suseconds_t)d_usec); in ser_get_char()
388 ssize_t ser_get_buf(int fd, void *buf, size_t buflen, time_t d_sec, useconds_t d_usec) in ser_get_buf() argument
392 return select_read(fd, buf, buflen, d_sec, (suseconds_t)d_usec); in ser_get_buf()
396 ssize_t ser_get_buf_len(int fd, void *buf, size_t buflen, time_t d_sec, useconds_t d_usec) in ser_get_buf_len() argument
409 d_sec, (suseconds_t)d_usec); in ser_get_buf_len()
423 time_t d_sec, useconds_t d_usec) in ser_get_line_alert() argument
436 ret = select_read(fd, tmp, sizeof(tmp), d_sec, (suseconds_t)d_usec); in ser_get_line_alert()
467 const char *ignset, time_t d_sec, useconds_t d_usec) in ser_get_line() argument
470 d_sec, d_usec); in ser_get_line()
/dports/sysutils/nut/nut-2.7.4/include/
H A Dcommon.h122 int select_read(const int fd, void *buf, const size_t buflen, const long d_sec, const long d_usec);
123 int select_write(const int fd, const void *buf, const size_t buflen, const long d_sec, const long d…
/dports/lang/v/v-0.1.29/vlib/time/
H A Dtime_nix.c.v87 d_sec := d / second
89 ts.tv_sec += d_sec
/dports/sysutils/nut-devel/nut-9e6a5ab2/include/
H A Dcommon.h177 ssize_t select_read(const int fd, void *buf, const size_t buflen, const time_t d_sec, const susecon…
178 ssize_t select_write(const int fd, const void *buf, const size_t buflen, const time_t d_sec, const …
/dports/sysutils/nut/nut-2.7.4/common/
H A Dcommon.c590 int select_read(const int fd, void *buf, const size_t buflen, const long d_sec, const long d_usec) in select_read() argument
599 tv.tv_sec = d_sec; in select_read()
614 int select_write(const int fd, const void *buf, const size_t buflen, const long d_sec, const long d… in select_write() argument
623 tv.tv_sec = d_sec; in select_write()
/dports/dns/unbound/unbound-1.14.0/util/shm_side/
H A Dshm_main.c68 stat_timeval_subtract(long long *d_sec, long long *d_usec, const struct timeval* end, in stat_timeval_subtract() argument
73 *d_sec = end->tv_sec - start->tv_sec; in stat_timeval_subtract()
76 (*d_sec)--; in stat_timeval_subtract()
/dports/sysutils/nut-devel/nut-9e6a5ab2/common/
H A Dcommon.c823 ssize_t select_read(const int fd, void *buf, const size_t buflen, const time_t d_sec, const susecon… in select_read() argument
832 tv.tv_sec = d_sec; in select_read()
847 ssize_t select_write(const int fd, const void *buf, const size_t buflen, const time_t d_sec, const … in select_write() argument
856 tv.tv_sec = d_sec; in select_write()
/dports/devel/sentry-cli/sentry-cli-1.71.0/cargo-crates/time-0.1.43/src/
H A Dlib.rs96 let d_sec = other.num_seconds(); in add() localVariable
99 let d_nsec = (other - Duration::seconds(d_sec)) in add()
101 let mut sec = self.sec + d_sec; in add()
118 let d_sec = other.num_seconds(); in sub() localVariable
121 let d_nsec = (other - Duration::seconds(d_sec)) in sub()
123 let mut sec = self.sec - d_sec; in sub()
/dports/multimedia/librav1e/rav1e-0.5.1/cargo-crates/time-0.1.43/src/
H A Dlib.rs96 let d_sec = other.num_seconds(); in add() localVariable
99 let d_nsec = (other - Duration::seconds(d_sec)) in add()
101 let mut sec = self.sec + d_sec; in add()
118 let d_sec = other.num_seconds(); in sub() localVariable
121 let d_nsec = (other - Duration::seconds(d_sec)) in sub()
123 let mut sec = self.sec - d_sec; in sub()
/dports/multimedia/rav1e/rav1e-0.5.1/cargo-crates/time-0.1.43/src/
H A Dlib.rs96 let d_sec = other.num_seconds(); in add() localVariable
99 let d_nsec = (other - Duration::seconds(d_sec)) in add()
101 let mut sec = self.sec + d_sec; in add()
118 let d_sec = other.num_seconds(); in sub() localVariable
121 let d_nsec = (other - Duration::seconds(d_sec)) in sub()
123 let mut sec = self.sec - d_sec; in sub()
/dports/misc/broot/broot-1.7.0/cargo-crates/time-0.1.43/src/
H A Dlib.rs96 let d_sec = other.num_seconds(); in add() localVariable
99 let d_nsec = (other - Duration::seconds(d_sec)) in add()
101 let mut sec = self.sec + d_sec; in add()
118 let d_sec = other.num_seconds(); in sub() localVariable
121 let d_nsec = (other - Duration::seconds(d_sec)) in sub()
123 let mut sec = self.sec - d_sec; in sub()
/dports/multimedia/librespot/librespot-0.1.3/cargo-crates/time-0.1.43/src/
H A Dlib.rs96 let d_sec = other.num_seconds(); in add() localVariable
99 let d_nsec = (other - Duration::seconds(d_sec)) in add()
101 let mut sec = self.sec + d_sec; in add()
118 let d_sec = other.num_seconds(); in sub() localVariable
121 let d_nsec = (other - Duration::seconds(d_sec)) in sub()
123 let mut sec = self.sec - d_sec; in sub()
/dports/devel/cargo-generate/cargo-generate-0.9.0/cargo-crates/time-0.1.43/src/
H A Dlib.rs96 let d_sec = other.num_seconds(); in add() localVariable
99 let d_nsec = (other - Duration::seconds(d_sec)) in add()
101 let mut sec = self.sec + d_sec; in add()
118 let d_sec = other.num_seconds(); in sub() localVariable
121 let d_nsec = (other - Duration::seconds(d_sec)) in sub()
123 let mut sec = self.sec - d_sec; in sub()
/dports/net/gemserv/gemserv-v0.4.5/cargo-crates/time-0.1.44/src/
H A Dlib.rs98 let d_sec = other.num_seconds(); in add() localVariable
101 let d_nsec = (other - Duration::seconds(d_sec)) in add()
103 let mut sec = self.sec + d_sec; in add()
120 let d_sec = other.num_seconds(); in sub() localVariable
123 let d_nsec = (other - Duration::seconds(d_sec)) in sub()
125 let mut sec = self.sec - d_sec; in sub()
/dports/devel/sccache/sccache-0.2.15/cargo-crates/time-0.1.44/src/
H A Dlib.rs98 let d_sec = other.num_seconds(); in add() localVariable
101 let d_nsec = (other - Duration::seconds(d_sec)) in add()
103 let mut sec = self.sec + d_sec; in add()
120 let d_sec = other.num_seconds(); in sub() localVariable
123 let d_nsec = (other - Duration::seconds(d_sec)) in sub()
125 let mut sec = self.sec - d_sec; in sub()
/dports/games/jaggedalliance2/ja2-stracciatella-0.18.0/cargo-crates/time-0.1.44/src/
H A Dlib.rs98 let d_sec = other.num_seconds(); in add() localVariable
101 let d_nsec = (other - Duration::seconds(d_sec)) in add()
103 let mut sec = self.sec + d_sec; in add()
120 let d_sec = other.num_seconds(); in sub() localVariable
123 let d_nsec = (other - Duration::seconds(d_sec)) in sub()
125 let mut sec = self.sec - d_sec; in sub()
/dports/devel/bingrep/bingrep-0.8.5/cargo-crates/time-0.1.44/src/
H A Dlib.rs98 let d_sec = other.num_seconds(); in add() localVariable
101 let d_nsec = (other - Duration::seconds(d_sec)) in add()
103 let mut sec = self.sec + d_sec; in add()
120 let d_sec = other.num_seconds(); in sub() localVariable
123 let d_nsec = (other - Duration::seconds(d_sec)) in sub()
125 let mut sec = self.sec - d_sec; in sub()
/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/time-0.1.44/src/
H A Dlib.rs98 let d_sec = other.num_seconds(); in add() localVariable
101 let d_nsec = (other - Duration::seconds(d_sec)) in add()
103 let mut sec = self.sec + d_sec; in add()
120 let d_sec = other.num_seconds(); in sub() localVariable
123 let d_nsec = (other - Duration::seconds(d_sec)) in sub()
125 let mut sec = self.sec - d_sec; in sub()
/dports/games/genact/genact-0.10.0/cargo-crates/time-0.1.43/src/
H A Dlib.rs96 let d_sec = other.num_seconds(); in add() localVariable
99 let d_nsec = (other - Duration::seconds(d_sec)) in add()
101 let mut sec = self.sec + d_sec; in add()
118 let d_sec = other.num_seconds(); in sub() localVariable
121 let d_nsec = (other - Duration::seconds(d_sec)) in sub()
123 let mut sec = self.sec - d_sec; in sub()
/dports/accessibility/sctd/sctd-0.2.0/cargo-crates/time-0.1.42/src/
H A Dlib.rs95 let d_sec = other.num_seconds(); in add() localVariable
98 let d_nsec = (other - Duration::seconds(d_sec)) in add()
100 let mut sec = self.sec + d_sec; in add()
117 let d_sec = other.num_seconds(); in sub() localVariable
120 let d_nsec = (other - Duration::seconds(d_sec)) in sub()
122 let mut sec = self.sec - d_sec; in sub()
/dports/x11-wm/leftwm/leftwm-0.2.11/cargo-crates/time-0.1.44/src/
H A Dlib.rs98 let d_sec = other.num_seconds(); in add() localVariable
101 let d_nsec = (other - Duration::seconds(d_sec)) in add()
103 let mut sec = self.sec + d_sec; in add()
120 let d_sec = other.num_seconds(); in sub() localVariable
123 let d_nsec = (other - Duration::seconds(d_sec)) in sub()
125 let mut sec = self.sec - d_sec; in sub()
/dports/databases/redisjson/RedisJSON-2.0.6/cargo-crates/time-0.1.44/src/
H A Dlib.rs98 let d_sec = other.num_seconds(); in add() localVariable
101 let d_nsec = (other - Duration::seconds(d_sec)) in add()
103 let mut sec = self.sec + d_sec; in add()
120 let d_sec = other.num_seconds(); in sub() localVariable
123 let d_nsec = (other - Duration::seconds(d_sec)) in sub()
125 let mut sec = self.sec - d_sec; in sub()

12345