Lines Matching defs:request
202 * |<---- request ---->| ... |<----- request ---->|
215 * <---- request ------> <------ request ----->
253 size_t request; /* number of requested bytes in one iteration */
284 * We must only request operations aligned to the block
286 * we have to request the operation to start at the
305 request = buf->length;
313 request = skip + left;
314 request = (request + (block_size - 1U)) &
317 request = ops->read(lba, buf->offset, request);
319 if (request <= skip) {
333 nbytes = request - skip;
365 size_t request; /* number of requested bytes in one iteration */
397 * We must only request operations aligned to the block
399 * we have to request the operation to start at the
418 request = buf->length;
426 request = skip + left;
427 request = (request + (block_size - 1U)) &
434 * of the current request.
436 nbytes = request - skip;
446 request = ops->read(lba, buf->offset, request);
452 request &= ~(block_size - 1U);
453 if (request <= skip) {
462 nbytes = request - skip;
471 request = ops->write(lba, buf->offset, request);
472 if (request <= skip)
477 * of the request, so again, we have to calculate the
481 nbytes = request - skip;