HomeSort by relevance Sort by last modified time
    Searched refs:is_client (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/grpc-grpc/src/core/tsi/alts/zero_copy_frame_protector/
alts_grpc_integrity_only_record_protocol.h 37 * - is_client: a flag indicating if the alts_grpc_record_protocol instance will
50 gsec_aead_crypter* crypter, size_t overflow_size, bool is_client,
alts_grpc_privacy_integrity_record_protocol.h 36 * - is_client: a flag indicating if the alts_grpc_record_protocol instance will
45 gsec_aead_crypter* crypter, size_t overflow_size, bool is_client,
alts_zero_copy_grpc_protector.h 34 * - is_client: a flag indicating if the protector will be used at client or
52 const uint8_t* key, size_t key_size, bool is_rekey, bool is_client,
alts_grpc_record_protocol_common.h 95 size_t overflow_size, bool is_client,
alts_zero_copy_grpc_protector.cc 112 const uint8_t* key, size_t key_size, bool is_rekey, bool is_client,
135 crypter, overflow_limit, is_client, is_protect,
138 crypter, overflow_limit, is_client, is_protect,
243 const uint8_t* key, size_t key_size, bool is_rekey, bool is_client,
260 key, key_size, is_rekey, is_client, is_integrity_only,
264 key, key_size, is_rekey, is_client, is_integrity_only,
alts_grpc_privacy_integrity_record_protocol.cc 124 gsec_aead_crypter* crypter, size_t overflow_size, bool is_client,
135 alts_grpc_record_protocol_init(impl, crypter, overflow_size, is_client,
  /external/grpc-grpc/src/core/tsi/
fake_transport_security.h 34 tsi_handshaker* tsi_create_fake_handshaker(int is_client);
local_transport_security.h 41 * - is_client: boolean value indicating if the handshaker is used at the client
42 * (is_client = true) or server (is_client = false) side. The parameter is
49 tsi_result local_tsi_handshaker_create(bool is_client, tsi_handshaker** self);
local_transport_security.cc 42 bool is_client; member in struct:local_tsi_handshaker_result
48 bool is_client; member in struct:local_tsi_handshaker
143 static tsi_result create_handshaker_result(bool is_client,
151 result->is_client = is_client;
174 create_handshaker_result(handshaker->is_client, result);
198 tsi_result local_tsi_handshaker_create(bool is_client, tsi_handshaker** self) {
205 handshaker->is_client = is_client;
  /external/grpc-grpc/src/ruby/lib/grpc/generic/
bidi_call.rb 104 write_loop(replies, is_client: false)
112 # @param [Boolean] is_client If this is a client or server request
114 def read_next_loop(finalize_stream, is_client = false)
115 read_loop(finalize_stream, is_client: is_client)
142 def write_loop(requests, is_client: true, set_output_stream_done: nil)
162 if is_client
176 if is_client
183 set_output_stream_done.call if is_client
187 def read_loop(set_input_stream_done, is_client: true
    [all...]
  /external/grpc-grpc/test/core/tsi/alts/frame_protector/
alts_counter_test.cc 85 static void alts_counter_test_overflow_full_range(bool is_client,
91 is_client, counter_size, overflow_size, &ctr, &error_details);
95 if (is_client) {
100 counter_size) == is_client);
116 counter_size) == is_client);
122 counter_size) == is_client);
131 static void alts_counter_test_overflow_single_increment(bool is_client,
137 is_client, counter_size, overflow_size, &ctr, &error_details);
144 if (is_client) {
149 counter_size) == is_client);
    [all...]
  /external/grpc-grpc/src/core/ext/transport/chttp2/transport/
chttp2_transport.h 35 const grpc_channel_args* channel_args, grpc_endpoint* ep, bool is_client);
  /external/grpc-grpc/src/core/tsi/alts/frame_protector/
alts_frame_protector.h 38 * - is_client: a flag indicating if the frame protector will be used at client
39 * (is_client = true) or server (is_client = false) side.
51 bool is_client, bool is_rekey,
alts_crypter.h 202 * - is_client: a flag indicating if the alts_crypter instance will be
203 * used at the client (is_client = true) or server (is_client =
215 grpc_status_code alts_seal_crypter_create(gsec_aead_crypter* gc, bool is_client,
227 * - is_client: a flag indicating if the alts_crypter instance will be
228 * used at the client (is_client = true) or server (is_client =
241 bool is_client,
alts_counter.h 39 * - is_client: a flag indicating if the alts_counter instance will be used
40 * at client (is_client = true) or server (is_client = false) side.
53 grpc_status_code alts_counter_create(bool is_client, size_t counter_size,
alts_record_protocol_crypter_common.h 88 * - is_client: a flag indicating if the alts_crypter instance will be
89 * used at the client (is_client = true) or server (is_client =
102 gsec_aead_crypter* crypter, bool is_client, size_t overflow_size,
alts_counter.cc 34 grpc_status_code alts_counter_create(bool is_client, size_t counter_size,
60 if (is_client) {
alts_record_protocol_crypter_common.cc 91 gsec_aead_crypter* crypter, bool is_client, size_t overflow_size,
103 status = alts_counter_create(is_client, counter_size, overflow_size,
alts_seal_privacy_integrity_crypter.cc 88 grpc_status_code alts_seal_crypter_create(gsec_aead_crypter* gc, bool is_client,
98 alts_crypter_create_common(gc, !is_client, overflow_size, error_details);
alts_unseal_privacy_integrity_crypter.cc 86 bool is_client,
96 alts_crypter_create_common(gc, is_client, overflow_size, error_details);
  /external/grpc-grpc/src/core/tsi/alts/handshaker/
alts_tsi_handshaker.h 52 * - is_client: boolean value indicating if the handshaker is used at the client
53 * (is_client = true) or server (is_client = false) side.
61 const char* handshaker_service_url, bool is_client, tsi_handshaker** self);
alts_tsi_handshaker.cc 53 bool is_client; member in struct:alts_tsi_handshaker
66 bool is_client; member in struct:alts_tsi_handshaker_result
130 kAltsAes128GcmRekeyKeyLength, /*is_rekey=*/true, result->is_client,
152 kAltsAes128GcmRekeyKeyLength, result->is_client, /*is_rekey=*/true,
197 bool is_client,
231 result->is_client = is_client;
266 ok = handshaker->is_client
350 const char* handshaker_service_url, bool is_client, tsi_handshaker** self) {
352 options == nullptr || (is_client && target_name == nullptr))
    [all...]
  /external/grpc-grpc/test/core/tsi/
transport_security_test_lib.cc 50 bool is_client; member in struct:handshaker_args
57 bool is_client) {
66 args->is_client = is_client;
127 bool is_client) {
131 is_client ? test_channel->server_channel : test_channel->client_channel;
133 size_t* bytes_written = is_client
152 strlen(TSI_TEST_UNUSED_BYTES), args->is_client);
162 bool is_client) {
167 is_client ? test_channel->client_channel : test_channel->server_channel
    [all...]
transport_security_test_lib.h 208 tsi_frame_protector* protector, bool is_client);
214 size_t* bytes_received, bool is_client);
  /external/grpc-grpc/src/core/lib/iomgr/
socket_utils_posix.h 57 void config_default_tcp_user_timeout(bool enable, int timeout, bool is_client);
61 int fd, const grpc_channel_args* channel_args, bool is_client);

Completed in 764 milliseconds

1 2 3