Home
last modified time | relevance | path

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

/external/grpc-grpc/test/cpp/microbenchmarks/
Dfullstack_fixtures.h99 ShutdownTag shutdown_tag; in ~FullstackFixture() local
101 &shutdown_tag); in ~FullstackFixture()
228 ShutdownTag shutdown_tag; in ~EndpointPairFixture() local
230 &shutdown_tag); in ~EndpointPairFixture()
/external/grpc-grpc/src/python/grpcio_tests/tests/unit/_cython/
Dcygrpc_test.py86 shutdown_tag = object()
87 server.shutdown(completion_queue, shutdown_tag)
91 self.assertIs(shutdown_tag, event.tag)
D_read_some_but_not_all_responses_test.py28 def __init__(self, completion_queue, shutdown_tag): argument
31 self._shutdown_tag = shutdown_tag
/external/grpc-grpc/src/core/lib/surface/
Dserver.cc109 typedef struct shutdown_tag { struct
113 } shutdown_tag; typedef
215 shutdown_tag* shutdown_tags;
1221 shutdown_tag* sdt; in grpc_server_shutdown_and_notify()
1244 server->shutdown_tags = static_cast<shutdown_tag*>( in grpc_server_shutdown_and_notify()
1246 sizeof(shutdown_tag) * (server->num_shutdown_tags + 1))); in grpc_server_shutdown_and_notify()
/external/grpc-grpc/src/cpp/server/
Dserver_cc.cc607 ShutdownTag shutdown_tag; // Dummy shutdown tag in ShutdownInternal() local
608 grpc_server_shutdown_and_notify(server_, shutdown_cq.cq(), &shutdown_tag); in ShutdownInternal()