Home
last modified time | relevance | path

Searched defs:TimeVal (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/nix/src/sys/
Dtime.rs291 pub struct TimeVal(timeval); struct
303 impl AsRef<timeval> for TimeVal { implementation
309 impl AsMut<timeval> for TimeVal { implementation
315 impl Ord for TimeVal { implementation
327 impl PartialOrd for TimeVal { implementation
333 impl TimeValLike for TimeVal { implementation
335 fn seconds(seconds: i64) -> TimeVal { in seconds() method
343 fn milliseconds(milliseconds: i64) -> TimeVal { in milliseconds() method
352 fn microseconds(microseconds: i64) -> TimeVal { in microseconds() method
364 fn nanoseconds(nanoseconds: i64) -> TimeVal { in nanoseconds() method
[all …]
Dstat.rs211 pub fn utimes<P: ?Sized + NixPath>(path: &P, atime: &TimeVal, mtime: &TimeVal) -> Result<()> { in utimes()
236 pub fn lutimes<P: ?Sized + NixPath>(path: &P, atime: &TimeVal, mtime: &TimeVal) -> Result<()> { in lutimes()
Dselect.rs187 T: Into<Option<&'a mut TimeVal>>, in select()