Home
last modified time | relevance | path

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

/external/grpc-grpc/src/core/lib/iomgr/
Dlockfree_event.cc78 if (curr & kShutdownBit) { in DestroyEvent()
79 GRPC_ERROR_UNREF((grpc_error*)(curr & ~kShutdownBit)); in DestroyEvent()
87 kShutdownBit /* shutdown, no error */)); in DestroyEvent()
138 if ((curr & kShutdownBit) > 0) { in NotifyOn()
139 grpc_error* shutdown_err = (grpc_error*)(curr & ~kShutdownBit); in NotifyOn()
159 gpr_atm new_state = (gpr_atm)shutdown_err | kShutdownBit; in SetShutdown()
181 if ((curr & kShutdownBit) > 0) { in SetShutdown()
234 if ((curr & kShutdownBit) > 0) { in SetReady()
Dlockfree_event.h47 return (gpr_atm_no_barrier_load(&state_) & kShutdownBit) != 0; in IsShutdown()
65 enum State { kClosureNotReady = 0, kClosureReady = 2, kShutdownBit = 1 }; enumerator