Searched refs:header_iovec (Results 1 – 4 of 4) sorted by relevance
/external/grpc-grpc/test/core/tsi/alts/zero_copy_frame_protector/ |
D | alts_iovec_record_protocol_test.cc | 42 iovec_t header_iovec; member 159 var->header_iovec.iov_base = var->header_buf; in alts_iovec_record_protocol_test_var_create() 160 var->header_iovec.iov_len = var->header_length; in alts_iovec_record_protocol_test_var_create() 210 sender, var->data_iovec, var->data_iovec_length, var->header_iovec, in integrity_only_random_seal_unseal() 218 receiver, var->data_iovec, var->data_iovec_length, var->header_iovec, in integrity_only_random_seal_unseal() 235 sender, nullptr, 0, var->header_iovec, var->tag_iovec, nullptr); in integrity_only_empty_seal_unseal() 238 receiver, nullptr, 0, var->header_iovec, var->tag_iovec, nullptr); in integrity_only_empty_seal_unseal() 250 sender, var->data_iovec, var->data_iovec_length, var->header_iovec, in integrity_only_unsync_seal_unseal() 257 sender, var->data_iovec, var->data_iovec_length, var->header_iovec, in integrity_only_unsync_seal_unseal() 263 receiver, var->data_iovec, var->data_iovec_length, var->header_iovec, in integrity_only_unsync_seal_unseal() [all …]
|
/external/grpc-grpc/src/core/tsi/alts/zero_copy_frame_protector/ |
D | alts_grpc_record_protocol_common.cc | 72 iovec_t header_iovec = {nullptr, 0}; in alts_grpc_record_protocol_get_header_iovec() local 74 return header_iovec; in alts_grpc_record_protocol_get_header_iovec() 76 header_iovec.iov_len = rp->header_length; in alts_grpc_record_protocol_get_header_iovec() 78 header_iovec.iov_base = GRPC_SLICE_START_PTR(rp->header_sb.slices[0]); in alts_grpc_record_protocol_get_header_iovec() 83 header_iovec.iov_base = rp->header_buf; in alts_grpc_record_protocol_get_header_iovec() 85 return header_iovec; in alts_grpc_record_protocol_get_header_iovec()
|
D | alts_grpc_integrity_only_record_protocol.cc | 58 iovec_t header_iovec = {GRPC_SLICE_START_PTR(protected_slice), in alts_grpc_integrity_only_extra_copy_protect() local 67 rp->iovec_rp, rp->iovec_buf, 1, header_iovec, tag_iovec, &error_details); in alts_grpc_integrity_only_extra_copy_protect() 99 iovec_t header_iovec = {GRPC_SLICE_START_PTR(header_slice), in alts_grpc_integrity_only_protect() local 106 rp->iovec_rp, rp->iovec_buf, unprotected_slices->count, header_iovec, in alts_grpc_integrity_only_protect() 145 iovec_t header_iovec = alts_grpc_record_protocol_get_header_iovec(rp); in alts_grpc_integrity_only_unprotect() local 169 integrity_only_record_protocol->data_sb.count, header_iovec, tag_iovec, in alts_grpc_integrity_only_unprotect()
|
D | alts_grpc_privacy_integrity_record_protocol.cc | 98 iovec_t header_iovec = alts_grpc_record_protocol_get_header_iovec(rp); in alts_grpc_privacy_integrity_unprotect() local 104 rp->iovec_rp, header_iovec, rp->iovec_buf, protected_slices->count, in alts_grpc_privacy_integrity_unprotect()
|