Home
last modified time | relevance | path

Searched refs:rbuflen (Results 1 – 4 of 4) sorted by relevance

/third_party/selinux/libselinux/src/
Dseusers.c100 long rbuflen = sysconf(_SC_GETPW_R_SIZE_MAX); in get_default_gid() local
101 if (rbuflen <= 0) return -1; in get_default_gid()
102 char *rbuf = malloc(rbuflen); in get_default_gid()
105 int retval = getpwnam_r(name, &pwstorage, rbuf, rbuflen, &pwent); in get_default_gid()
119 long rbuflen = sysconf(_SC_GETGR_R_SIZE_MAX); in check_group() local
120 if (rbuflen <= 0) in check_group()
125 rbuf = malloc(rbuflen); in check_group()
129 rbuflen, &grent); in check_group()
133 rbuflen = rbuflen * 2; in check_group()
/third_party/ffmpeg/libavformat/
Drtspdec.c72 int *rbuflen) in read_line() argument
77 *rbuflen = 0; in read_line()
87 *rbuflen = idx; in read_line()
147 int rbuflen, ret; in rtsp_read_request() local
149 ret = read_line(s, rbuf, sizeof(rbuf), &rbuflen); in rtsp_read_request()
152 if (rbuflen > 1) { in rtsp_read_request()
153 av_log(s, AV_LOG_TRACE, "Parsing[%d]: %s\n", rbuflen, rbuf); in rtsp_read_request()
156 } while (rbuflen > 0); in rtsp_read_request()
481 int rbuflen = 0; in ff_rtsp_parse_streaming_commands() local
485 ret = read_line(s, rbuf, sizeof(rbuf), &rbuflen); in ff_rtsp_parse_streaming_commands()
[all …]
/third_party/node/deps/ngtcp2/nghttp3/lib/
Dnghttp3_stream.c452 size_t pbuflen, rbuflen, ebuflen; in nghttp3_stream_write_header_block() local
463 rbuflen = nghttp3_buf_len(rbuf); in nghttp3_stream_write_header_block()
467 hd.length = (int64_t)(pbuflen + rbuflen); in nghttp3_stream_write_header_block()
471 if (rbuflen <= NGHTTP3_STREAM_MAX_COPY_THRES) { in nghttp3_stream_write_header_block()
472 len += rbuflen; in nghttp3_stream_write_header_block()
488 if (rbuflen > NGHTTP3_STREAM_MAX_COPY_THRES) { in nghttp3_stream_write_header_block()
502 } else if (rbuflen) { in nghttp3_stream_write_header_block()
503 chunk->last = nghttp3_cpymem(chunk->last, rbuf->pos, rbuflen); in nghttp3_stream_write_header_block()
/third_party/curl/lib/
Dhttp2.c984 size_t rbuflen; in on_stream_frame() local
994 rbuflen = Curl_bufq_len(&stream->recvbuf); in on_stream_frame()
996 stream_id, rbuflen, in on_stream_frame()
1013 else if(rbuflen > stream->local_window_size) { in on_stream_frame()