HomeSort by relevance Sort by last modified time
    Searched defs:CallData (Results 1 - 4 of 4) sorted by null

  /external/grpc-grpc/examples/cpp/helloworld/
greeter_async_server.cc 70 class CallData {
75 CallData(Greeter::AsyncService* service, ServerCompletionQueue* cq)
88 // the tag uniquely identifying the request (so that different CallData
90 // the memory address of this CallData instance.
94 // Spawn a new CallData instance to serve new clients while we process
95 // the one for this CallData. The instance will deallocate itself as
97 new CallData(service_, cq_);
110 // Once in the FINISH state, deallocate ourselves (CallData).
141 // Spawn a new CallData instance to serve new clients.
142 new CallData(&service_, cq_.get())
    [all...]
  /external/grpc-grpc/src/core/lib/surface/
lame_client.cc 42 struct CallData {
55 CallData* calld = static_cast<CallData*>(elem->call_data);
81 CallData* calld = static_cast<CallData*>(elem->call_data);
122 CallData* calld = static_cast<CallData*>(elem->call_data);
149 sizeof(grpc_core::CallData),
  /external/grpc-grpc/src/cpp/common/
channel_filter.h 35 /// To define a filter, implement a subclass of each of \c CallData and
254 class CallData {
256 CallData() {}
257 virtual ~CallData() {}
  /external/grpc-grpc/src/cpp/server/
server_cc.cc 207 class CallData final {
209 explicit CallData(Server* server, SyncRequest* mrd)
225 ~CallData() {
321 // Calldata takes ownership of the completion queue inside sync_req
322 SyncRequest::CallData cd(server_, sync_req);

Completed in 90 milliseconds