HomeSort by relevance Sort by last modified time
    Searched defs:transfer (Results 126 - 150 of 213) sorted by null

1 2 3 4 56 7 8 9

  /external/kernel-headers/original/linux/
loop.h 37 int (*transfer)(struct loop_device *, int cmd, member in struct:loop_device
132 /* Support for loadable transfer modules */
135 int (*transfer)(struct loop_device *lo, int cmd, member in struct:loop_func_table
  /external/libusb/libusb/
io.c 50 * application by considering each transfer on a case-by-case basis.
84 * The synchronous I/O interface allows you to perform a USB transfer with
85 * a single function call. When the function call returns, the transfer has
119 * Additionally, there is no opportunity to cancel the transfer after the
133 * begin a transfer and then return immediately. Your application passes a
151 * order to accurately handle transfer timeouts.
153 * the function with that stack is guaranteed not to return until the transfer
156 * the transfer request is done in a separate function from where the transfer
158 * submit a second transfer based on the results of an earlier transfer
1312 struct usbi_transfer *transfer; local
1359 struct libusb_transfer *transfer = local
1675 struct libusb_transfer *transfer = local
1701 struct usbi_transfer *transfer; local
2089 struct usbi_transfer *transfer; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_pstipple.c 394 struct pipe_transfer *transfer; local
399 transfer = pipe_get_transfer(pipe, pstip->texture, 0, 0,
401 data = pipe->transfer_map(pipe, transfer);
413 data[i * transfer->stride + j] = 0;
417 data[i * transfer->stride + j] = 255;
423 pipe->transfer_unmap(pipe, transfer);
424 pipe->transfer_destroy(pipe, transfer);
draw_pipe_aaline.c 442 struct pipe_transfer *transfer; local
454 transfer = pipe->get_transfer(pipe,
460 data = pipe->transfer_map(pipe, transfer);
479 data[i * transfer->stride + j] = d;
484 pipe->transfer_unmap(pipe, transfer);
485 pipe->transfer_destroy(pipe, transfer);
  /external/mesa3d/src/gallium/drivers/i915/
i915_resource_texture.c 723 struct i915_transfer *transfer = util_slab_alloc(&i915->texture_transfer_pool); local
726 if (transfer == NULL)
729 transfer->b.resource = resource;
730 transfer->b.level = level;
731 transfer->b.usage = usage;
732 transfer->b.box = *box;
733 transfer->b.stride = tex->stride;
734 transfer->staging_texture = NULL;
736 transfer->b.layer_stride = 0;
737 transfer->b.data = NULL
845 struct pipe_transfer *transfer = NULL; local
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
evergreen_compute.c 804 struct pipe_transfer* transfer)
806 assert(transfer->resource->target == PIPE_BUFFER);
807 assert(transfer->resource->bind & PIPE_BIND_GLOBAL);
808 assert(transfer->box.x >= 0);
809 assert(transfer->box.y == 0);
810 assert(transfer->box.z == 0);
814 (struct r600_resource_global*)transfer->resource;
820 ctx->cs, transfer->usage))) {
825 return ((char*)(map + buffer->chunk->start_in_dw)) + transfer->box.x;
830 struct pipe_transfer* transfer)
856 struct pipe_transfer *transfer = util_slab_alloc(&rctx->pool_transfers); local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
api_filters.c 81 struct pipe_transfer *transfer = local
86 void *map = pipe->transfer_map(pipe, transfer);
88 pipe->transfer_unmap(pipe, transfer);
89 pipe->transfer_destroy(pipe, transfer);
image.c 421 struct pipe_transfer *transfer = pipe_get_transfer( local
427 pipe_put_tile_rgba(pipe, transfer, x+image->x, y+image->y, width, 1, df);
431 pipe->transfer_destroy(pipe, transfer);
451 struct pipe_transfer *transfer = local
463 pipe_get_tile_rgba(pipe, transfer, sx+image->x, y, width, 1, df);
469 pipe->transfer_destroy(pipe, transfer);
  /external/smack/src/org/jivesoftware/smackx/filetransfer/
FileTransferNegotiator.java 55 * @see <a href="http://xmpp.org/extensions/xep-0096.html">XEP-0096: SI File Transfer</a>
62 "http://jabber.org/protocol/si/profile/file-transfer",
75 * A static variable to use only offer IBB for file transfer. It is generally recommend to only
76 * set this variable to true for testing purposes as IBB is the backup file transfer method
77 * and shouldn't be used as the only transfer method in production systems.
82 * Returns the file transfer negotiator related to a particular connection.
83 * When this class is requested on a particular connection the file transfer
86 * @param connection The connection for which the transfer manager is desired
102 FileTransferNegotiator transfer = new FileTransferNegotiator( local
105 transferObject.put(connection, transfer);
    [all...]
  /external/valgrind/main/coregrind/m_gdbserver/
target.c 591 void VG_(transfer) (void *valgrind, function
  /libcore/support/src/test/java/tests/http/
MockWebServer.java 353 if (lowercaseHeader.startsWith("transfer-encoding:") &&
364 transfer(contentLength, in, requestBody); method
374 transfer(chunkSize, in, requestBody); method
432 * Transfer bytes from {@code in} to {@code out} until either {@code length}
435 private void transfer(int length, InputStream in, OutputStream out) throws IOException { method in class:MockWebServer
  /external/chromium_org/third_party/libusb/src/libusb/
core.c 92 * - All transfer types supported (control/bulk/interrupt/isochronous)
93 * - 2 transfer interfaces:
108 * or the asynchronous data transfer interface. The \ref io documentation
255 * \section earlycomp Early transfer completion
260 * When a transfer completes early (i.e. when less data is received/sent in
261 * any one packet than the transfer buffer allows for) then libusbx is designed
262 * to terminate the transfer immediately, not transferring or receiving any
268 * transfer is updated) and, for device-to-host transfers, any surplus data was
271 * that surplus data to arrive in the next logical transfer.
277 * submitting a transfer of zero length
1191 struct libusb_transfer *transfer = local
    [all...]
  /external/chromium_org/third_party/libusb/src/libusb/os/
wince_usb.c 592 // No need to cancel transfer as it is either complete or abandoned
601 struct libusb_transfer *transfer = USBI_TRANSFER_TO_LIBUSB_TRANSFER(itransfer); local
602 struct wince_device_priv *priv = _device_priv(transfer->dev_handle->dev);
613 struct libusb_transfer *transfer = USBI_TRANSFER_TO_LIBUSB_TRANSFER(itransfer); local
614 struct libusb_context *ctx = DEVICE_CTX(transfer->dev_handle->dev);
616 struct wince_device_priv *priv = _device_priv(transfer->dev_handle->dev);
622 const BOOL control_transfer = transfer->type == LIBUSB_TRANSFER_TYPE_CONTROL;
626 setup = (PUKW_CONTROL_HEADER) transfer->buffer;
629 direction_in = transfer->endpoint & LIBUSB_ENDPOINT_IN;
636 usbi_err(ctx, "Failed to create event for async transfer");
678 struct libusb_transfer *transfer = USBI_TRANSFER_TO_LIBUSB_TRANSFER(itransfer); local
695 struct libusb_transfer *transfer = USBI_TRANSFER_TO_LIBUSB_TRANSFER(itransfer); local
790 struct libusb_transfer *transfer = USBI_TRANSFER_TO_LIBUSB_TRANSFER(itransfer); local
811 struct usbi_transfer *transfer; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_pipe_aaline.c 442 struct pipe_transfer *transfer; local
454 transfer = pipe->get_transfer(pipe,
460 data = pipe->transfer_map(pipe, transfer);
479 data[i * transfer->stride + j] = d;
484 pipe->transfer_unmap(pipe, transfer);
485 pipe->transfer_destroy(pipe, transfer);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_debug.c 505 struct pipe_transfer *transfer; local
519 transfer = pipe_get_transfer(pipe, texture, surface->u.tex.level,
524 data = pipe->transfer_map(pipe, transfer);
533 transfer->stride,
536 pipe->transfer_unmap(pipe, transfer);
538 pipe->transfer_destroy(pipe, transfer);
598 struct pipe_transfer *transfer; local
601 transfer = pipe_get_transfer(pipe, texture, surface->u.tex.level,
605 debug_dump_transfer_bmp(pipe, filename, transfer);
607 pipe->transfer_destroy(pipe, transfer);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/galahad/
glhd_context.c 895 struct pipe_transfer *transfer = glhd_transfer->transfer; local
902 transfer);
915 struct pipe_transfer *transfer = glhd_transfer->transfer; local
918 transfer,
930 struct pipe_transfer *transfer = glhd_transfer->transfer; local
941 transfer);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/identity/
id_context.c 804 struct pipe_transfer *transfer = id_transfer->transfer; local
807 transfer);
820 struct pipe_transfer *transfer = id_transfer->transfer; local
823 transfer,
835 struct pipe_transfer *transfer = id_transfer->transfer; local
838 transfer);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600_texture.c 34 /* Copy from a full GPU texture to a transfer's staging one. */
37 struct pipe_transfer *transfer = (struct pipe_transfer*)rtransfer; local
38 struct pipe_resource *texture = transfer->resource;
41 0, 0, 0, 0, texture, transfer->level,
42 &transfer->box);
46 /* Copy from a transfer's staging texture to a full GPU one. */
49 struct pipe_transfer *transfer = (struct pipe_transfer*)rtransfer; local
50 struct pipe_resource *texture = transfer->resource;
53 u_box_origin_2d(transfer->box.width, transfer->box.height, &sbox)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/rbug/
rbug_context.c 1068 struct pipe_transfer *transfer = rb_transfer->transfer; local
1089 struct pipe_transfer *transfer = rb_transfer->transfer; local
1106 struct pipe_transfer *transfer = rb_transfer->transfer; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/trace/
tr_context.c 1405 struct pipe_transfer *transfer = tr_trans->transfer; local
1428 struct pipe_transfer *transfer = tr_transfer->transfer; local
1442 struct pipe_transfer *transfer = tr_trans->transfer; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
paint.c 163 struct pipe_transfer *transfer = local
166 void *map = pipe->transfer_map(pipe, transfer);
168 pipe->transfer_unmap(pipe, transfer);
169 pipe->transfer_destroy(pipe, transfer);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xa/
xa_priv.h 65 struct pipe_transfer *transfer; member in struct:xa_surface
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_bitmap.c 290 struct pipe_transfer *transfer; local
311 transfer = pipe_get_transfer(st->pipe, pt, 0, 0,
315 dest = pipe_transfer_map(pipe, transfer);
317 /* Put image into texture transfer */
318 memset(dest, 0xff, height * transfer->stride);
320 dest, transfer->stride);
324 /* Release transfer */
325 pipe_transfer_unmap(pipe, transfer);
326 pipe->transfer_destroy(pipe, transfer);
618 /* Map the texture transfer
    [all...]
  /external/dnsmasq/src/
dnsmasq.c 598 /* Whilst polling for the dbus, or doing a tftp transfer, wake every quarter second */
1045 struct tftp_transfer *transfer; local
1046 for (transfer = daemon->tftp_trans; transfer; transfer = transfer->next)
1049 FD_SET(transfer->sockfd, set);
1050 bump_maxfd(transfer->sockfd, maxfdp);
    [all...]
  /external/llvm/lib/Analysis/
ProfileInfo.cpp 478 void ProfileInfoT<Function,BasicBlock>::transfer(const Function *Old, function in class:llvm::ProfileInfoT
    [all...]

Completed in 2929 milliseconds

1 2 3 4 56 7 8 9