Home
last modified time | relevance | path

Searched refs:header_used (Results 1 – 2 of 2) sorted by relevance

/external/libcups/scheduler/
Dclient.c1901 con->header_used = 0; in cupsdSendCommand()
2309 bytes = (ssize_t)(sizeof(con->header) - (size_t)con->header_used); in cupsdWriteClient()
2358 else if ((bytes = read(con->file, con->header + con->header_used, (size_t)bytes)) > 0) in cupsdWriteClient()
2360 con->header_used += bytes; in cupsdWriteClient()
2368 for (bufptr = con->header, bufend = con->header + con->header_used, in cupsdWriteClient()
2432 con->header_used -= bufptr - con->header; in cupsdWriteClient()
2434 if (con->header_used > 0) in cupsdWriteClient()
2435 memmove(con->header, bufptr, (size_t)con->header_used); in cupsdWriteClient()
2481 if (con->header_used > 0) in cupsdWriteClient()
2483 if (httpWrite2(con->http, con->header, (size_t)con->header_used) < 0) in cupsdWriteClient()
[all …]
Dclient.h48 header_used; /* Number of header bytes used */ member