Home
last modified time | relevance | path

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

/external/rust/crates/nix/src/sys/
Dtime.rs453 pub struct TimeVal(timeval); struct
465 impl AsRef<timeval> for TimeVal { implementation
471 impl AsMut<timeval> for TimeVal { implementation
477 impl Ord for TimeVal { implementation
489 impl PartialOrd for TimeVal { implementation
495 impl TimeValLike for TimeVal { implementation
497 fn seconds(seconds: i64) -> TimeVal { in seconds() method
512 fn milliseconds(milliseconds: i64) -> TimeVal { in milliseconds() method
522 fn microseconds(microseconds: i64) -> TimeVal { in microseconds() method
539 fn nanoseconds(nanoseconds: i64) -> TimeVal { in nanoseconds() method
[all …]
Dstat.rs362 atime: &TimeVal, in utimes()
363 mtime: &TimeVal, in utimes()
394 atime: &TimeVal, in lutimes()
395 mtime: &TimeVal, in lutimes()
Dresource.rs307 pub fn user_time(&self) -> TimeVal { in user_time()
312 pub fn system_time(&self) -> TimeVal { in system_time()
Dselect.rs188 T: Into<Option<&'a mut TimeVal>>, in select()