Searched defs:len_out (Results 1 - 5 of 5) sorted by relevance

/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Drtp_packet_history_unittest.cc116 size_t len_out = kMaxPacketLength; local
119 &len_out, &time));
120 EXPECT_EQ(len, len_out);
135 size_t len_out = kMaxPacketLength; local
138 &len_out, &time));
139 EXPECT_EQ(len, len_out);
154 size_t len_out = kMaxPacketLength; local
157 &len_out, &time));
158 EXPECT_EQ(len, len_out);
/external/curl/lib/
H A Dcurl_ntlm_wb.c260 size_t len_in = strlen(input), len_out = 0; local
282 size = sread(conn->ntlm_auth_hlpr_socket, buf + len_out, NTLM_BUFSIZE);
291 len_out += size;
292 if(buf[len_out - 1] == '\n') {
293 buf[len_out - 1] = '\0';
296 newbuf = realloc(buf, len_out + NTLM_BUFSIZE);
306 len_out == 3 &&
310 if(len_out < 4)
320 conn->response_header = aprintf("NTLM %.*s", len_out - 4, buf + 3);
/external/dnsmasq/src/
H A Drfc2131.c1311 int clid_len, unsigned char *clid, int *len_out)
1317 *len_out = clid_len - 1 ;
1324 *len_out = clid_len - 1 ;
1329 *len_out = clid_len;
1333 *len_out = hwlen;
1310 extended_hwaddr(int hwtype, int hwlen, unsigned char *hwaddr, int clid_len, unsigned char *clid, int *len_out) argument
/external/libevent/
H A Devutil.c117 string. Set *content_out to hold this string, and *len_out to hold its
126 evutil_read_file(const char *filename, char **content_out, size_t *len_out, argument
136 EVUTIL_ASSERT(len_out);
138 *len_out = 0;
177 *len_out = read_so_far;
H A Devdns.c3540 size_t len_out; local
3544 len_out = strlen(path)+strlen(hostfile);
3545 path_out = mm_malloc(len_out+1);
3546 evutil_snprintf(path_out, len_out, "%s%s", path, hostfile);

Completed in 147 milliseconds