Lines Matching refs:xReq
235 register xReq *request;
276 else if (gotnow < sizeof(xReq)) {
277 /* We don't have an entire xReq yet. Can't tell how big
278 * the request will be until we get the whole xReq.
280 needed = sizeof(xReq);
284 /* We have a whole xReq. We can tell how big the whole
287 request = (xReq *) oci->bufptr;
309 * complete xReq (if need_header is TRUE), a complete
389 /* We wanted an xReq, now we've gotten it. */
390 request = (xReq *) oci->bufptr;
414 needed = sizeof(xReq);
452 if (client->req_len < bytes_to_int32(sizeof(xBigReq) - sizeof(xReq))) {
457 request = (xReq *) oci->bufptr;
458 oci->bufptr += (sizeof(xBigReq) - sizeof(xReq));
459 *(xReq *) oci->bufptr = *request;
460 oci->lenLastReq -= (sizeof(xBigReq) - sizeof(xReq));
461 client->req_len -= bytes_to_int32(sizeof(xBigReq) - sizeof(xReq));
466 xReq *req = client->requestBuffer;
550 if ((gotnow >= sizeof(xReq)) &&
551 (gotnow >= (int) (get_req_len((xReq *) oci->bufptr, client) << 2)))
574 register xReq *request;
581 if (gotnow < sizeof(xReq)) {
585 request = (xReq *) oci->bufptr;
588 oci->bufptr -= sizeof(xBigReq) - sizeof(xReq);
589 *(xReq *) oci->bufptr = *request;