Home
last modified time | relevance | path

Searched refs:g_timer_ht (Results 1 – 1 of 1) sorted by relevance

/external/grpc-grpc/src/core/lib/iomgr/
Dtimer_generic.cc93 static grpc_timer* g_timer_ht[NUM_HASH_BUCKETS] = {nullptr}; variable
111 grpc_timer* p = g_timer_ht[i]; in is_in_ht()
125 grpc_timer* p = g_timer_ht[i]; in add_to_ht()
141 t->hash_table_next = g_timer_ht[i]; in add_to_ht()
142 g_timer_ht[i] = t; in add_to_ht()
151 if (g_timer_ht[i] == t) { in remove_from_ht()
152 g_timer_ht[i] = g_timer_ht[i]->hash_table_next; in remove_from_ht()
154 } else if (g_timer_ht[i] != nullptr) { in remove_from_ht()
155 grpc_timer* p = g_timer_ht[i]; in remove_from_ht()