Home
last modified time | relevance | path

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

/external/grpc-grpc/src/core/lib/surface/
Dcall.cc75 typedef struct batch_control { struct
101 } batch_control; argument
147 batch_control* active_batches[MAX_CONCURRENT_BATCHES];
255 static void process_data_after_md(batch_control* bctl);
256 static void post_batch_completion(batch_control* bctl);
288 return sizeof(grpc_call) + sizeof(batch_control) * MAX_CONCURRENT_BATCHES + in grpc_call_get_initial_size_estimate()
1092 static batch_control* reuse_or_allocate_batch_control(grpc_call* call, in reuse_or_allocate_batch_control()
1096 batch_control** pslot = &call->active_batches[slot_idx]; in reuse_or_allocate_batch_control()
1097 batch_control* bctl; in reuse_or_allocate_batch_control()
1105 bctl = static_cast<batch_control*>( in reuse_or_allocate_batch_control()
[all …]
/external/rust/crates/grpcio-sys/grpc/src/core/lib/surface/
Dcall.cc82 struct batch_control { struct
83 batch_control() = default;
183 batch_control* active_batches[MAX_CONCURRENT_BATCHES] = {};
297 static void process_data_after_md(batch_control* bctl);
298 static void post_batch_completion(batch_control* bctl);
334 return sizeof(grpc_call) + sizeof(batch_control) * MAX_CONCURRENT_BATCHES + in grpc_call_get_initial_size_estimate()
1144 static batch_control* reuse_or_allocate_batch_control(grpc_call* call, in reuse_or_allocate_batch_control()
1147 batch_control** pslot = &call->active_batches[slot_idx]; in reuse_or_allocate_batch_control()
1148 batch_control* bctl; in reuse_or_allocate_batch_control()
1154 bctl->~batch_control(); in reuse_or_allocate_batch_control()
[all …]