Home
last modified time | relevance | path

Searched refs:client_context (Results 1 – 22 of 22) sorted by relevance

/third_party/python/Lib/test/
Dtest_ssl.py318 client_context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT)
319 client_context.load_verify_locations(SIGNING_CA)
326 return client_context, server_context, hostname
1128 client_context, server_context, hostname = testing_context()
1131 with client_context.wrap_socket(socket.socket(),
2800 def server_params_test(client_context, server_context, indata=b"FOO\n", argument
2812 with client_context.wrap_socket(socket.socket(),
2873 client_context = ssl.SSLContext(client_protocol)
2874 client_context.options |= client_options
2894 if client_context.protocol == ssl.PROTOCOL_TLS:
[all …]
/third_party/python/Lib/test/test_asyncio/
Dtest_sslproto.py222 client_context = test_utils.simple_client_sslcontext()
266 new_tr = await self.loop.start_tls(tr, proto, client_context)
280 client_context = weakref.ref(client_context)
282 self.assertIsNone(client_context())
288 client_context = test_utils.simple_client_sslcontext()
329 ssl=client_context)
344 client_context = weakref.ref(client_context)
346 self.assertIsNone(client_context())
352 client_context = test_utils.simple_client_sslcontext()
417 new_tr = await self.loop.start_tls(tr, proto, client_context)
[all …]
Dutils.py83 client_context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT)
84 client_context.check_hostname = False
86 client_context.verify_mode = ssl.CERT_NONE
87 return client_context
Dtest_events.py748 client_context = test_utils.simple_client_sslcontext()
750 self.test_connect_accepted_socket(server_context, client_context)
/third_party/mbedtls/tests/suites/
Dtest_suite_ssl.function1697 mbedtls_test_message_socket_context server_context, client_context;
1699 mbedtls_message_socket_init( &client_context );
1705 options->pk_alg, &client_context,
2030 mbedtls_endpoint_free( &client, options->dtls != 0 ? &client_context : NULL );
2656 mbedtls_test_message_socket_context server_context, client_context;
2658 mbedtls_message_socket_init( &client_context );
2673 &client_context ) == 0 );
2675 TEST_ASSERT( mbedtls_mock_tcp_send_msg( &client_context, message, MSGLEN )
2691 mbedtls_message_socket_close( &client_context );
2703 mbedtls_test_message_socket_context server_context, client_context;
[all …]
/third_party/gstreamer/gstplugins_good/tests/examples/rpicamsrc/
Dwebrtc-unidirectional-h264.c41 const char *path, GHashTable * query, SoupClientContext * client_context,
45 SoupClientContext * client_context, gpointer user_data);
476 G_GNUC_UNUSED SoupClientContext * client_context, in soup_http_handler() argument
501 G_GNUC_UNUSED SoupClientContext * client_context, gpointer user_data) in soup_websocket_handler() argument
/third_party/grpc/doc/cpp/
Dpending_api_cleanups.md17 `include/grpc++/impl/codegen/client_context.h` (commit `9477724`)
/third_party/grpc/include/grpcpp/impl/codegen/
Dclient_interceptor.h95 grpc::ClientContext* client_context() { return ctx_; } in client_context() function
/third_party/grpc/test/cpp/end2end/
Dchannelz_service_test.cc72 std::unique_ptr<ClientContext> client_context = in Echo() local
76 return stubs_[idx]->Echo(client_context.get(), *request, response); in Echo()
84 std::unique_ptr<ClientContext> client_context = in BidiStream() local
88 auto stream_to_backend = stubs_[0]->BidiStream(client_context.get()); in BidiStream()
Dend2end_test.cc254 std::unique_ptr<ClientContext> client_context = in Echo() local
256 return stub_->Echo(client_context.get(), *request, response); in Echo()
1797 info_->client_context()->set_credentials(creds); in Intercept()
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
Dconnection.c283 &connection->client_context, in MHD_connection_close()
1412 connection->client_context
1458 &connection->client_context))
1615 &connection->client_context))
2581 &connection->client_context,
2619 connection->client_context = NULL;
Dinternal.h590 void *client_context; member
/third_party/grpc/test/cpp/cocoapods/generic/
Dgeneric.mm26 #include <grpcpp/client_context.h>
/third_party/grpc/test/cpp/ios/CronetTests/
DCppCronetEnd2EndTests.mm24 #import <grpcpp/impl/codegen/client_context.h>
/third_party/grpc/
DBUILD128 "src/cpp/client/client_context.cc",
177 "include/grpc++/client_context.h",
224 "include/grpcpp/client_context.h",
2206 "include/grpc++/impl/codegen/client_context.h",
2244 "include/grpcpp/impl/codegen/client_context.h",
DBUILD.gn1258 "include/grpc++/client_context.h",
1276 "include/grpc++/impl/codegen/client_context.h",
1335 "include/grpcpp/client_context.h",
1358 "include/grpcpp/impl/codegen/client_context.h",
1442 "src/cpp/client/client_context.cc",
DgRPC-C++.podspec83 'include/grpcpp/client_context.h',
111 'include/grpcpp/impl/codegen/client_context.h',
614 'src/cpp/client/client_context.cc',
DCMakeLists.txt2509 src/cpp/client/client_context.cc
2598 include/grpc++/client_context.h
2616 include/grpc++/impl/codegen/client_context.h
2677 include/grpcpp/client_context.h
2705 include/grpcpp/impl/codegen/client_context.h
3210 src/cpp/client/client_context.cc
3292 include/grpc++/client_context.h
3310 include/grpc++/impl/codegen/client_context.h
3371 include/grpcpp/client_context.h
3399 include/grpcpp/impl/codegen/client_context.h
Dgrpc.gyp1324 'src/cpp/client/client_context.cc',
1476 'src/cpp/client/client_context.cc',
/third_party/python/Doc/library/
Dssl.rst2688 >>> client_context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT)
2689 >>> client_context.minimum_version = ssl.TLSVersion.TLSv1_3
2690 >>> client_context.maximum_version = ssl.TLSVersion.TLSv1_3
/third_party/grpc/tools/doxygen/
DDoxyfile.c++.internal805 include/grpc++/client_context.h \
823 include/grpc++/impl/codegen/client_context.h \
939 include/grpcpp/client_context.h \
967 include/grpcpp/impl/codegen/client_context.h \
1920 src/cpp/client/client_context.cc \
/third_party/grpc/test/cpp/codegen/
Dcompiler_test_golden35 #include <grpcpp/impl/codegen/client_context.h>