Home
last modified time | relevance | path

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

/third_party/selinux/libselinux/src/
H A 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 * in check_group()
[all...]
/third_party/ffmpeg/libavformat/
H A Drtspdec.c75 int *rbuflen) in read_line()
80 *rbuflen = 0; in read_line()
90 *rbuflen = idx; in read_line()
150 int rbuflen, ret; in rtsp_read_request() local
152 ret = read_line(s, rbuf, sizeof(rbuf), &rbuflen); in rtsp_read_request()
155 if (rbuflen > 1) { in rtsp_read_request()
156 av_log(s, AV_LOG_TRACE, "Parsing[%d]: %s\n", rbuflen, rbuf); in rtsp_read_request()
159 } while (rbuflen > 0); in rtsp_read_request()
490 int rbuflen = 0; in ff_rtsp_parse_streaming_commands() local
494 ret = read_line(s, rbuf, sizeof(rbuf), &rbuflen); in ff_rtsp_parse_streaming_commands()
74 read_line(AVFormatContext *s, char *rbuf, const int rbufsize, int *rbuflen) read_line() argument
660 int rbuflen = 0; rtsp_listen() local
[all...]
/third_party/node/deps/ngtcp2/nghttp3/lib/
H A 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/
H A Dhttp2.c988 size_t rbuflen; in on_stream_frame() local
998 rbuflen = Curl_bufq_len(&stream->recvbuf); in on_stream_frame()
1000 stream_id, rbuflen, in on_stream_frame()
1017 else if(rbuflen > stream->local_window_size) { in on_stream_frame()

Completed in 8 milliseconds