OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GRPC_SLICE_MALLOC
(Results
1 - 25
of
28
) sorted by null
1
2
/external/grpc-grpc/src/core/lib/slice/
percent_encoding.cc
61
grpc_slice out =
GRPC_SLICE_MALLOC
(output_length);
115
*slice_out =
GRPC_SLICE_MALLOC
(out_length);
153
grpc_slice out =
GRPC_SLICE_MALLOC
(out_length);
slice.cc
46
grpc_slice out =
GRPC_SLICE_MALLOC
(GRPC_SLICE_LENGTH(s));
199
grpc_slice slice =
GRPC_SLICE_MALLOC
(length);
261
grpc_slice
grpc_slice_malloc
(size_t length) {
function
489
grpc_slice copy =
GRPC_SLICE_MALLOC
(GRPC_SLICE_LENGTH(a));
b64.cc
194
grpc_slice result =
GRPC_SLICE_MALLOC
(b64_len);
/external/grpc-grpc/src/core/tsi/alts/zero_copy_frame_protector/
alts_grpc_privacy_integrity_record_protocol.cc
50
grpc_slice protected_slice =
GRPC_SLICE_MALLOC
(protected_frame_size);
91
grpc_slice unprotected_slice =
GRPC_SLICE_MALLOC
(unprotected_frame_size);
alts_grpc_integrity_only_record_protocol.cc
49
grpc_slice protected_slice =
GRPC_SLICE_MALLOC
(protected_frame_size);
95
grpc_slice header_slice =
GRPC_SLICE_MALLOC
(rp->header_length);
96
grpc_slice tag_slice =
GRPC_SLICE_MALLOC
(rp->tag_length);
/external/grpc-grpc/src/core/ext/transport/chttp2/transport/
bin_encoder.cc
56
grpc_slice output =
GRPC_SLICE_MALLOC
(output_length);
109
output =
GRPC_SLICE_MALLOC
(nbits / 8 + (nbits % 8 != 0));
176
grpc_slice output =
GRPC_SLICE_MALLOC
(max_output_length);
frame_ping.cc
33
grpc_slice slice =
GRPC_SLICE_MALLOC
(9 + 8);
frame_rst_stream.cc
34
grpc_slice slice =
GRPC_SLICE_MALLOC
(frame_size);
frame_window_update.cc
31
grpc_slice slice =
GRPC_SLICE_MALLOC
(frame_size);
frame_settings.cc
60
output =
GRPC_SLICE_MALLOC
(9 + 6 * n);
81
grpc_slice output =
GRPC_SLICE_MALLOC
(9);
bin_decoder.cc
185
output =
GRPC_SLICE_MALLOC
(output_length);
208
grpc_slice output =
GRPC_SLICE_MALLOC
(output_length);
frame_goaway.cc
154
grpc_slice header =
GRPC_SLICE_MALLOC
(9 + 4 + 4);
frame_data.cc
80
hdr =
GRPC_SLICE_MALLOC
(header_size);
chttp2_transport.cc
[
all
...]
/external/grpc-grpc/include/grpc/
slice.h
67
GPRAPI grpc_slice
grpc_slice_malloc
(size_t length);
70
#define
GRPC_SLICE_MALLOC
(len)
grpc_slice_malloc
(len)
82
grpc_slice slice =
grpc_slice_malloc
(len);
88
grpc_slice slice =
grpc_slice_malloc
(len);
/external/grpc-grpc/src/core/lib/security/transport/
secure_endpoint.cc
125
ep->read_staging_buffer =
GRPC_SLICE_MALLOC
(STAGING_BUFFER_SIZE);
251
ep->write_staging_buffer =
GRPC_SLICE_MALLOC
(STAGING_BUFFER_SIZE);
420
ep->write_staging_buffer =
GRPC_SLICE_MALLOC
(STAGING_BUFFER_SIZE);
421
ep->read_staging_buffer =
GRPC_SLICE_MALLOC
(STAGING_BUFFER_SIZE);
/external/grpc-grpc/src/core/lib/surface/
byte_buffer_reader.cc
116
grpc_slice out_slice =
GRPC_SLICE_MALLOC
(input_size);
/external/grpc-grpc/src/core/lib/compression/
message_compress.cc
40
grpc_slice outbuf =
GRPC_SLICE_MALLOC
(OUTPUT_BLOCK_SIZE);
55
outbuf =
GRPC_SLICE_MALLOC
(OUTPUT_BLOCK_SIZE);
stream_compression_gzip.cc
52
grpc_slice slice_out =
GRPC_SLICE_MALLOC
(slice_size);
/external/grpc-grpc/src/core/ext/filters/client_channel/resolver/dns/c_ares/
grpc_ares_ev_driver_windows.cc
112
read_buf_ =
GRPC_SLICE_MALLOC
(4192);
203
grpc_slice out =
GRPC_SLICE_MALLOC
(total);
/external/grpc-grpc/src/core/ext/filters/client_channel/lb_policy/grpclb/
load_balancer_api.cc
144
slice =
GRPC_SLICE_MALLOC
(encoded_length);
/external/grpc-grpc/test/core/tsi/alts/zero_copy_frame_protector/
alts_zero_copy_grpc_protector_test.cc
62
grpc_slice slice =
GRPC_SLICE_MALLOC
(length);
alts_grpc_record_protocol_test.cc
60
grpc_slice slice =
GRPC_SLICE_MALLOC
(slice_length);
/external/grpc-grpc/src/core/lib/iomgr/
tcp_windows.cc
233
tcp->read_slice =
GRPC_SLICE_MALLOC
(8192);
/external/grpc-grpc/src/core/ext/filters/http/client/
http_client_filter.cc
267
grpc_slice path_with_query_slice =
GRPC_SLICE_MALLOC
(estimated_len);
Completed in 1179 milliseconds
1
2