Home
last modified time | relevance | path

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

/external/grpc-grpc/src/core/lib/iomgr/
Dclosure.h188 inline void grpc_closure_list_init(grpc_closure_list* closure_list) { argument
189 closure_list->head = closure_list->tail = nullptr;
195 inline bool grpc_closure_list_append(grpc_closure_list* closure_list, argument
203 bool was_empty = (closure_list->head == nullptr);
205 closure_list->head = closure;
207 closure_list->tail->next_data.next = closure;
209 closure_list->tail = closure;
240 inline bool grpc_closure_list_empty(grpc_closure_list closure_list) { argument
241 return closure_list.head == nullptr;
345 #define GRPC_CLOSURE_LIST_SCHED(closure_list) \ argument
[all …]
Dexec_ctx.h137 grpc_closure_list* closure_list() { return &closure_list_; } in closure_list() function
Dexec_ctx.cc50 grpc_closure_list_append(grpc_core::ExecCtx::Get()->closure_list(), closure, in exec_ctx_sched()
Dpollset_windows.cc171 if (!grpc_closure_list_empty(*grpc_core::ExecCtx::Get()->closure_list())) { in pollset_work()
Dexecutor.cc218 grpc_closure_list_append(grpc_core::ExecCtx::Get()->closure_list(), in Enqueue()
Dev_epoll1_linux.cc926 grpc_core::ExecCtx::Get()->closure_list()); in end_worker()
/external/rust/crates/grpcio-sys/grpc/src/core/lib/iomgr/
Dclosure.h170 inline void grpc_closure_list_init(grpc_closure_list* closure_list) { argument
171 closure_list->head = closure_list->tail = nullptr;
177 inline bool grpc_closure_list_append(grpc_closure_list* closure_list, argument
185 bool was_empty = (closure_list->head == nullptr);
187 closure_list->head = closure;
189 closure_list->tail->next_data.next = closure;
191 closure_list->tail = closure;
222 inline bool grpc_closure_list_empty(grpc_closure_list closure_list) { argument
223 return closure_list.head == nullptr;
Dexec_ctx.h155 grpc_closure_list* closure_list() { return &closure_list_; } in closure_list() function
Dexec_ctx.cc50 grpc_closure_list_append(grpc_core::ExecCtx::Get()->closure_list(), closure, in exec_ctx_sched()
Dpollset_windows.cc172 if (!grpc_closure_list_empty(*grpc_core::ExecCtx::Get()->closure_list())) { in pollset_work()
Dexecutor.cc277 grpc_closure_list_append(grpc_core::ExecCtx::Get()->closure_list(), in Enqueue()
Dev_epoll1_linux.cc948 grpc_core::ExecCtx::Get()->closure_list()); in end_worker()