Home
last modified time | relevance | path

Searched defs:ClockId (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/nix/src/
Dtime.rs19 pub struct ClockId(clockid_t); struct
21 impl ClockId { implementation
188 impl Into<clockid_t> for ClockId { implementation
194 impl From<clockid_t> for ClockId { implementation
200 impl std::fmt::Display for ClockId { implementation
237 pub fn clock_settime(clock_id: ClockId, timespec: TimeSpec) -> Result<()> { in clock_settime()
251 pub fn clock_getcpuclockid(pid: Pid) -> Result<ClockId> { in clock_getcpuclockid()
/external/rust/crates/nix/src/sys/
Dtimerfd.rs170 pub fn new(clockid: ClockId, flags: TimerFlags) -> Result<Self> { in new()