Searched defs:TimeSpec (Results 1 – 7 of 7) sorted by relevance
51 pub struct TimeSpec(timespec); struct72 impl From<timespec> for TimeSpec { implementation78 impl From<Duration> for TimeSpec { implementation90 impl AsRef<timespec> for TimeSpec { implementation96 impl AsMut<timespec> for TimeSpec { implementation102 impl Ord for TimeSpec { implementation114 impl PartialOrd for TimeSpec { implementation120 impl TimeValLike for TimeSpec { implementation122 fn seconds(seconds: i64) -> TimeSpec { in seconds() method130 fn milliseconds(milliseconds: i64) -> TimeSpec { in milliseconds() method[all …]
251 pub fn futimens(fd: RawFd, atime: &TimeSpec, mtime: &TimeSpec) -> Result<()> { in futimens()286 atime: &TimeSpec, in utimensat()287 mtime: &TimeSpec, in utimensat()
256 T: Into<Option<&'a TimeSpec>>, in pselect()
41 pub fn res(self) -> Result<TimeSpec> { in res()46 pub fn now(self) -> Result<TimeSpec> { in now()209 pub fn clock_getres(clock_id: ClockId) -> Result<TimeSpec> { in clock_getres()219 pub fn clock_gettime(clock_id: ClockId) -> Result<TimeSpec> { in clock_gettime()
154 pub fn ppoll(fds: &mut [PollFd], timeout: Option<TimeSpec>, sigmask: SigSet) -> Result<libc::c_int>… in ppoll()
91 fn futex_wait(&self, ts: Option<TimeSpec>) { in futex_wait()
38 using TimeSpec = struct ::timespec; typedef