Lines Matching defs:length
147 enc.length = len;
152 memcpy(buf, dec.value, dec.length);
153 len = curlx_uztosi(dec.length);
160 krb5_encode(void *app_data, const void *from, int length, int level, void **to)
172 dec.length = length;
183 *to = malloc(enc.length);
186 memcpy(*to, enc.value, enc.length);
187 len = curlx_uztosi(enc.length);
220 chan.initiator_address.length = l - 4;
223 chan.acceptor_address.length = l - 4;
225 chan.application_data.length = 0;
251 input_buffer.length = strlen(stringp);
298 if(output_buffer.length) {
302 output_buffer.length, &p, &base64_sz);
344 &_gssresp.length);
527 /* only realloc if there was a length */
599 /* Send |length| bytes from |from| to the |fd| socket taking care of encoding
602 curl_socket_t fd, const char *from, int length)
620 bytes = conn->mech->encode(conn->app_data, from, length, prot_level,
656 curl_socket_t fd, const char *buffer, size_t length)
661 len = length;
662 while(length) {
663 if(length < (size_t)len)
664 len = length;
667 length -= len;