Lines Matching defs:size
357 int size, int size_min,
360 int size))
370 ret = transfer_func(h, buf + len, size - len);
401 int ffurl_read(URLContext *h, unsigned char *buf, int size)
405 return retry_transfer_wrapper(h, buf, size, 1, h->prot->url_read);
408 int ffurl_read_complete(URLContext *h, unsigned char *buf, int size)
412 return retry_transfer_wrapper(h, buf, size, size, h->prot->url_read);
415 int ffurl_write(URLContext *h, const unsigned char *buf, int size)
420 if (h->max_packet_size && size > h->max_packet_size)
423 return retry_transfer_wrapper(h, (unsigned char *)buf, size, size,
607 int64_t pos, size;
609 size = ffurl_seek(h, 0, AVSEEK_SIZE);
610 if (size < 0) {
612 if ((size = ffurl_seek(h, -1, SEEK_END)) < 0)
613 return size;
614 size++;
617 return size;