Lines Matching refs:gpr_timespec
34 GPRAPI gpr_timespec
36 GPRAPI gpr_timespec gpr_inf_future(gpr_clock_type type); /** The far future */
37 GPRAPI gpr_timespec gpr_inf_past(gpr_clock_type type); /** The far past. */
50 GPRAPI gpr_timespec gpr_now(gpr_clock_type clock);
53 GPRAPI gpr_timespec gpr_convert_clock_type(gpr_timespec t,
58 GPRAPI int gpr_time_cmp(gpr_timespec a, gpr_timespec b);
60 GPRAPI gpr_timespec gpr_time_max(gpr_timespec a, gpr_timespec b);
61 GPRAPI gpr_timespec gpr_time_min(gpr_timespec a, gpr_timespec b);
64 GPRAPI gpr_timespec gpr_time_add(gpr_timespec a, gpr_timespec b);
65 GPRAPI gpr_timespec gpr_time_sub(gpr_timespec a, gpr_timespec b);
69 GPRAPI gpr_timespec gpr_time_from_micros(int64_t x, gpr_clock_type clock_type);
70 GPRAPI gpr_timespec gpr_time_from_nanos(int64_t x, gpr_clock_type clock_type);
71 GPRAPI gpr_timespec gpr_time_from_millis(int64_t x, gpr_clock_type clock_type);
72 GPRAPI gpr_timespec gpr_time_from_seconds(int64_t x, gpr_clock_type clock_type);
73 GPRAPI gpr_timespec gpr_time_from_minutes(int64_t x, gpr_clock_type clock_type);
74 GPRAPI gpr_timespec gpr_time_from_hours(int64_t x, gpr_clock_type clock_type);
76 GPRAPI int32_t gpr_time_to_millis(gpr_timespec timespec);
80 GPRAPI int gpr_time_similar(gpr_timespec a, gpr_timespec b,
81 gpr_timespec threshold);
84 GPRAPI void gpr_sleep_until(gpr_timespec until);
86 GPRAPI double gpr_timespec_to_micros(gpr_timespec t);