Lines Matching defs:size
214 debuginfod_write_callback (char *ptr, size_t size, size_t nmemb, void *data)
216 ssize_t count = size * nmemb;
549 header_callback (char * buffer, size_t size, size_t numitems, void * userdata)
552 if (size != 1)
890 /* PR 27982: Add max size if DEBUGINFOD_MAXSIZE is set. */
915 dprintf (vfd, "using max size %ldB\n", maxsize);
1455 /* Get size of file being downloaded. NB: If going through
1474 /* If Content-Length is -1, try to get the size from
1479 char *hdr = strcasestr(c->winning_headers, "x-debuginfod-size");
1482 && sscanf(hdr, "x-debuginfod-size: %ld", &xdl) == 1)
1813 size_t size = sizeof (struct debuginfod_client);
1814 client = calloc (1, size);