/external/grpc-grpc/include/grpc/support/ |
D | time.h | 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); [all …]
|
/external/rust/crates/grpcio-sys/grpc/include/grpc/support/ |
D | time.h | 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); [all …]
|
/external/rust/crates/grpcio-sys/grpc/spm-core-include/grpc/support/ |
D | time.h | 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); [all …]
|
/external/rust/crates/grpcio-sys/grpc/src/core/lib/gpr/ |
D | time.cc | 29 int gpr_time_cmp(gpr_timespec a, gpr_timespec b) { in gpr_time_cmp() 38 gpr_timespec gpr_time_min(gpr_timespec a, gpr_timespec b) { in gpr_time_min() 42 gpr_timespec gpr_time_max(gpr_timespec a, gpr_timespec b) { in gpr_time_max() 46 gpr_timespec gpr_time_0(gpr_clock_type type) { in gpr_time_0() 47 gpr_timespec out; in gpr_time_0() 54 gpr_timespec gpr_inf_future(gpr_clock_type type) { in gpr_inf_future() 55 gpr_timespec out; in gpr_inf_future() 62 gpr_timespec gpr_inf_past(gpr_clock_type type) { in gpr_inf_past() 63 gpr_timespec out; in gpr_inf_past() 70 static gpr_timespec to_seconds_from_sub_second_time(int64_t time_in_units, in to_seconds_from_sub_second_time() [all …]
|
D | time_precise.cc | 63 gpr_timespec start = gpr_now(GPR_CLOCK_MONOTONIC); in is_fake_clock() 66 gpr_timespec now = gpr_now(GPR_CLOCK_MONOTONIC); in is_fake_clock() 67 gpr_timespec delta = gpr_time_sub(now, start); in is_fake_clock() 97 gpr_timespec start = gpr_now(GPR_CLOCK_MONOTONIC); in gpr_precise_clock_init() 100 gpr_timespec now = gpr_now(GPR_CLOCK_MONOTONIC); in gpr_precise_clock_init() 101 gpr_timespec delta = gpr_time_sub(now, start); in gpr_precise_clock_init() 116 gpr_timespec gpr_cycle_counter_to_time(gpr_cycle_counter cycles) { in gpr_cycle_counter_to_time() 119 gpr_timespec ts; in gpr_cycle_counter_to_time() 127 gpr_timespec gpr_cycle_counter_sub(gpr_cycle_counter a, gpr_cycle_counter b) { in gpr_cycle_counter_sub() 129 gpr_timespec ts; in gpr_cycle_counter_sub() [all …]
|
D | time_posix.cc | 35 static struct timespec timespec_from_gpr(gpr_timespec gts) { in timespec_from_gpr() 47 static gpr_timespec gpr_from_timespec(struct timespec ts, in gpr_from_timespec() 54 gpr_timespec rv; in gpr_from_timespec() 67 static gpr_timespec now_impl(gpr_clock_type clock_type) { in now_impl() 71 gpr_timespec ret; in now_impl() 103 static gpr_timespec now_impl(gpr_clock_type clock) { in now_impl() 104 gpr_timespec now; in now_impl() 144 gpr_timespec (*gpr_now_impl)(gpr_clock_type clock_type) = now_impl; 149 gpr_timespec gpr_now(gpr_clock_type clock_type) { in gpr_now() 157 gpr_timespec ts = gpr_now_impl(clock_type); in gpr_now() [all …]
|
D | time_windows.cc | 43 static gpr_timespec now_impl(gpr_clock_type clock) { in now_impl() 44 gpr_timespec now_tv; in now_impl() 71 gpr_timespec (*gpr_now_impl)(gpr_clock_type clock_type) = now_impl; 73 gpr_timespec gpr_now(gpr_clock_type clock_type) { in gpr_now() 77 void gpr_sleep_until(gpr_timespec until) { in gpr_sleep_until() 78 gpr_timespec now; in gpr_sleep_until() 79 gpr_timespec delta; in gpr_sleep_until()
|
/external/grpc-grpc/src/core/lib/gpr/ |
D | time.cc | 29 int gpr_time_cmp(gpr_timespec a, gpr_timespec b) { in gpr_time_cmp() 38 gpr_timespec gpr_time_min(gpr_timespec a, gpr_timespec b) { in gpr_time_min() 42 gpr_timespec gpr_time_max(gpr_timespec a, gpr_timespec b) { in gpr_time_max() 46 gpr_timespec gpr_time_0(gpr_clock_type type) { in gpr_time_0() 47 gpr_timespec out; in gpr_time_0() 54 gpr_timespec gpr_inf_future(gpr_clock_type type) { in gpr_inf_future() 55 gpr_timespec out; in gpr_inf_future() 62 gpr_timespec gpr_inf_past(gpr_clock_type type) { in gpr_inf_past() 63 gpr_timespec out; in gpr_inf_past() 70 static gpr_timespec to_seconds_from_sub_second_time(int64_t time_in_units, in to_seconds_from_sub_second_time() [all …]
|
D | time_posix.cc | 35 static struct timespec timespec_from_gpr(gpr_timespec gts) { in timespec_from_gpr() 47 static gpr_timespec gpr_from_timespec(struct timespec ts, in gpr_from_timespec() 54 gpr_timespec rv; in gpr_from_timespec() 67 static gpr_timespec now_impl(gpr_clock_type clock_type) { in now_impl() 71 gpr_timespec ret; in now_impl() 103 static gpr_timespec now_impl(gpr_clock_type clock) { in now_impl() 104 gpr_timespec now; in now_impl() 131 gpr_timespec (*gpr_now_impl)(gpr_clock_type clock_type) = now_impl; 137 gpr_timespec gpr_now(gpr_clock_type clock_type) { in gpr_now() 144 void gpr_sleep_until(gpr_timespec until) { in gpr_sleep_until() [all …]
|
D | time_windows.cc | 43 static gpr_timespec now_impl(gpr_clock_type clock) { in now_impl() 44 gpr_timespec now_tv; in now_impl() 71 gpr_timespec (*gpr_now_impl)(gpr_clock_type clock_type) = now_impl; 73 gpr_timespec gpr_now(gpr_clock_type clock_type) { in gpr_now() 77 void gpr_sleep_until(gpr_timespec until) { in gpr_sleep_until() 78 gpr_timespec now; in gpr_sleep_until() 79 gpr_timespec delta; in gpr_sleep_until()
|
/external/grpc-grpc/include/grpcpp/impl/codegen/ |
D | time.h | 43 gpr_timespec raw_time() { in raw_time() 44 gpr_timespec t; in raw_time() 53 class TimePoint<gpr_timespec> { 55 TimePoint(const gpr_timespec& time) : time_(time) {} in TimePoint() 56 gpr_timespec raw_time() { return time_; } in raw_time() 59 gpr_timespec time_; 68 gpr_timespec* to); 71 gpr_timespec* to); 73 std::chrono::system_clock::time_point Timespec2Timepoint(gpr_timespec t); 81 gpr_timespec raw_time() const { return time_; } in raw_time() [all …]
|
/external/rust/crates/grpcio-sys/grpc/include/grpcpp/impl/codegen/ |
D | time.h | 47 gpr_timespec raw_time() = delete; 51 class TimePoint<gpr_timespec> { 54 TimePoint(const gpr_timespec& time) : time_(time) {} in TimePoint() 55 gpr_timespec raw_time() { return time_; } in raw_time() 58 gpr_timespec time_; 67 gpr_timespec* to); 70 gpr_timespec* to); 72 std::chrono::system_clock::time_point Timespec2Timepoint(gpr_timespec t); 81 gpr_timespec raw_time() const { return time_; } in raw_time() 84 gpr_timespec time_;
|
/external/rust/crates/grpcio-sys/grpc/spm-cpp-include/grpcpp/impl/codegen/ |
D | time.h | 47 gpr_timespec raw_time() = delete; 51 class TimePoint<gpr_timespec> { 54 TimePoint(const gpr_timespec& time) : time_(time) {} in TimePoint() 55 gpr_timespec raw_time() { return time_; } in raw_time() 58 gpr_timespec time_; 67 gpr_timespec* to); 70 gpr_timespec* to); 72 std::chrono::system_clock::time_point Timespec2Timepoint(gpr_timespec t); 81 gpr_timespec raw_time() const { return time_; } in raw_time() 84 gpr_timespec time_;
|
/external/grpc-grpc/test/core/gpr/ |
D | time_test.cc | 50 static void ts_to_s(gpr_timespec t, in ts_to_s() 65 gpr_timespec x = gpr_time_0(GPR_CLOCK_REALTIME); in test_values() 139 gpr_timespec it = gpr_time_from_micros(i * k, GPR_TIMESPAN); in test_add_sub() 140 gpr_timespec jt = gpr_time_from_micros(j * k, GPR_TIMESPAN); in test_add_sub() 141 gpr_timespec sumt = gpr_time_add(it, jt); in test_add_sub() 142 gpr_timespec difft = gpr_time_sub(it, jt); in test_add_sub() 168 gpr_timespec x = gpr_time_from_micros(1, GPR_TIMESPAN); in test_overflow() 184 gpr_timespec infinity[2]; in test_sticky_infinities() 185 gpr_timespec addend[3]; in test_sticky_infinities() 195 gpr_timespec x = gpr_time_add(infinity[i], addend[j]); in test_sticky_infinities() [all …]
|
/external/rust/crates/grpcio-sys/grpc/src/core/lib/iomgr/executor/ |
D | mpmcqueue.h | 45 virtual void* Get(gpr_timespec* wait_time) = 0; 68 void* Get(gpr_timespec* wait_time) override; 79 gpr_timespec insert_time; // Time for stats 108 gpr_timespec total_queue_time; // Total waiting time that all the 110 gpr_timespec max_queue_time; // Max waiting time among all removed 112 gpr_timespec busy_queue_time; // Accumulated amount of time that queue 164 gpr_timespec busy_time; // Start time of busy queue
|
/external/rust/crates/grpcio-sys/src/ |
D | grpc_wrap.rs | 7 impl gpr_timespec { impl 8 pub fn inf_future() -> gpr_timespec { in inf_future() 13 impl From<Duration> for gpr_timespec { implementation 14 fn from(dur: Duration) -> gpr_timespec { in from() argument 15 gpr_timespec { in from()
|
/external/grpc-grpc/src/ruby/ext/grpc/ |
D | rb_grpc_imports.generated.h | 116 typedef grpc_event(*grpc_completion_queue_next_type)(grpc_completion_queue* cq, gpr_timespec deadli… 119 …pc_completion_queue_pluck_type)(grpc_completion_queue* cq, void* tag, gpr_timespec deadline, void*… 140 …)(grpc_channel* channel, grpc_connectivity_state last_observed_state, gpr_timespec deadline, grpc_… 146 …n_queue* completion_queue, grpc_slice method, const grpc_slice* host, gpr_timespec deadline, void*… 155 …rpc_completion_queue* completion_queue, void* registered_call_handle, gpr_timespec deadline, void*… 209 …type)(grpc_server* server, void* registered_method, grpc_call** call, gpr_timespec* deadline, grpc… 353 typedef gpr_timespec(*grpc_max_auth_token_lifetime_type)(void); 356 …ice_account_jwt_access_credentials_create_type)(const char* json_key, gpr_timespec token_lifetime,… 689 typedef int(*gpr_cv_wait_type)(gpr_cv* cv, gpr_mu* mu, gpr_timespec abs_deadline); 710 typedef void*(*gpr_event_wait_type)(gpr_event* ev, gpr_timespec abs_deadline); [all …]
|
D | rb_grpc.c | 95 gpr_timespec grpc_rb_time_timeval(VALUE time, int interval) { in grpc_rb_time_timeval() 96 gpr_timespec t; in grpc_rb_time_timeval() 97 gpr_timespec* time_const; in grpc_rb_time_timeval() 105 TypedData_Get_Struct(time, gpr_timespec, &grpc_rb_timespec_data_type, in grpc_rb_time_timeval() 208 gpr_timespec* time_const = NULL; in grpc_rb_time_val_to_time() 209 gpr_timespec real_time; in grpc_rb_time_val_to_time() 210 TypedData_Get_Struct(self, gpr_timespec, &grpc_rb_timespec_data_type, in grpc_rb_time_val_to_time() 227 static gpr_timespec zero_realtime; 228 static gpr_timespec inf_future_realtime; 229 static gpr_timespec inf_past_realtime;
|
D | rb_completion_queue.c | 35 gpr_timespec timeout; 43 gpr_timespec increment = gpr_time_from_millis(20, GPR_TIMESPAN); in grpc_rb_completion_queue_pluck_no_gil() 44 gpr_timespec deadline; in grpc_rb_completion_queue_pluck_no_gil() 75 gpr_timespec deadline, void* reserved) { in rb_completion_queue_pluck()
|
/external/rust/crates/grpcio-sys/grpc/src/core/lib/security/credentials/jwt/ |
D | jwt_credentials.h | 37 gpr_timespec token_lifetime); 49 const gpr_timespec& jwt_lifetime() const { return jwt_lifetime_; } in jwt_lifetime() 68 gpr_timespec jwt_expiration; 72 gpr_timespec jwt_lifetime_; 79 grpc_auth_json_key key, gpr_timespec token_lifetime);
|
D | jwt_verifier.h | 66 gpr_timespec grpc_jwt_claims_issued_at(const grpc_jwt_claims* claims); 67 gpr_timespec grpc_jwt_claims_expires_at(const grpc_jwt_claims* claims); 68 gpr_timespec grpc_jwt_claims_not_before(const grpc_jwt_claims* claims); 84 extern gpr_timespec grpc_jwt_verifier_clock_skew;
|
/external/grpc-grpc/src/core/lib/iomgr/ |
D | exec_ctx.cc | 54 static gpr_timespec g_start_time; 56 static grpc_millis timespec_to_millis_round_down(gpr_timespec ts) { in timespec_to_millis_round_down() 65 static grpc_millis timespec_to_millis_round_up(gpr_timespec ts) { in timespec_to_millis_round_up() 76 gpr_timespec grpc_millis_to_timespec(grpc_millis millis, in grpc_millis_to_timespec() 94 grpc_millis grpc_timespec_to_millis_round_down(gpr_timespec ts) { in grpc_timespec_to_millis_round_down() 99 grpc_millis grpc_timespec_to_millis_round_up(gpr_timespec ts) { in grpc_timespec_to_millis_round_up() 113 void ExecCtx::TestOnlyGlobalInit(gpr_timespec new_val) { in TestOnlyGlobalInit()
|
D | buffer_list.h | 36 gpr_timespec sendmsg_time; 37 gpr_timespec scheduled_time; 38 gpr_timespec sent_time; 39 gpr_timespec acked_time;
|
/external/rust/crates/grpcio-sys/grpc/src/core/lib/iomgr/ |
D | exec_ctx.cc | 54 static gpr_timespec g_start_time; 57 static grpc_millis timespan_to_millis_round_down(gpr_timespec ts) { in timespan_to_millis_round_down() 65 static grpc_millis timespec_to_millis_round_down(gpr_timespec ts) { in timespec_to_millis_round_down() 69 static grpc_millis timespan_to_millis_round_up(gpr_timespec ts) { in timespan_to_millis_round_up() 79 static grpc_millis timespec_to_millis_round_up(gpr_timespec ts) { in timespec_to_millis_round_up() 83 gpr_timespec grpc_millis_to_timespec(grpc_millis millis, in grpc_millis_to_timespec() 101 grpc_millis grpc_timespec_to_millis_round_down(gpr_timespec ts) { in grpc_timespec_to_millis_round_down() 106 grpc_millis grpc_timespec_to_millis_round_up(gpr_timespec ts) { in grpc_timespec_to_millis_round_up() 126 void ExecCtx::TestOnlyGlobalInit(gpr_timespec new_val) { in TestOnlyGlobalInit()
|
/external/grpc-grpc/src/core/lib/security/credentials/jwt/ |
D | jwt_verifier.h | 66 gpr_timespec grpc_jwt_claims_issued_at(const grpc_jwt_claims* claims); 67 gpr_timespec grpc_jwt_claims_expires_at(const grpc_jwt_claims* claims); 68 gpr_timespec grpc_jwt_claims_not_before(const grpc_jwt_claims* claims); 85 extern gpr_timespec grpc_jwt_verifier_clock_skew;
|