Lines Matching refs:xReq
202 register xReq *request;
262 else if (gotnow < sizeof(xReq))
264 /* We don't have an entire xReq yet. Can't tell how big
265 * the request will be until we get the whole xReq.
267 needed = sizeof(xReq);
272 /* We have a whole xReq. We can tell how big the whole
275 request = (xReq *)oci->bufptr;
296 * complete xReq (if need_header is TRUE), a complete
386 /* We wanted an xReq, now we've gotten it. */
387 request = (xReq *)oci->bufptr;
412 needed = sizeof(xReq);
446 if (gotnow >= sizeof(xReq))
448 request = (xReq *)(oci->bufptr + needed);
478 request = (xReq *)oci->bufptr;
479 oci->bufptr += (sizeof(xBigReq) - sizeof(xReq));
480 *(xReq *)oci->bufptr = *request;
481 oci->lenLastReq -= (sizeof(xBigReq) - sizeof(xReq));
482 client->req_len -= bytes_to_int32(sizeof(xBigReq) - sizeof(xReq));
487 xReq *req = client->requestBuffer;
561 if ((gotnow >= sizeof(xReq)) &&
562 (gotnow >= (int)(get_req_len((xReq *)oci->bufptr, client) << 2)))
581 register xReq *request;
587 if (gotnow < sizeof(xReq))
593 request = (xReq *)oci->bufptr;
597 oci->bufptr -= sizeof(xBigReq) - sizeof(xReq);
598 *(xReq *)oci->bufptr = *request;