HomeSort by relevance Sort by last modified time
    Searched refs:transfer (Results 226 - 250 of 351) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/mesa3d/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/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/mesa3d/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/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...]
  /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/mesa/src/src/gallium/state_trackers/xa/
xa_priv.h 65 struct pipe_transfer *transfer; member in struct:xa_surface
  /external/mesa3d/src/gallium/state_trackers/xa/
xa_priv.h 65 struct pipe_transfer *transfer; member in struct:xa_surface
  /frameworks/av/media/mtp/
MtpPacket.cpp 155 int MtpPacket::transfer(struct usb_request* request) { function in class:android::MtpPacket
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_vbuf.c 309 struct pipe_transfer *transfer = NULL; local
328 PIPE_TRANSFER_READ, &transfer);
343 if (transfer) {
344 pipe_buffer_unmap(mgr->pipe, transfer);
903 struct pipe_transfer *transfer = NULL; local
915 PIPE_TRANSFER_READ, &transfer);
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_vbuf.c 309 struct pipe_transfer *transfer = NULL; local
328 PIPE_TRANSFER_READ, &transfer);
343 if (transfer) {
344 pipe_buffer_unmap(mgr->pipe, transfer);
903 struct pipe_transfer *transfer = NULL; local
915 PIPE_TRANSFER_READ, &transfer);
    [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/state_trackers/vega/
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);
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);
  /external/mesa3d/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/mesa3d/src/gallium/state_trackers/vega/
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/mockwebserver/src/main/java/com/google/mockwebserver/
MockWebServer.java 412 if (lowercaseHeader.startsWith("transfer-encoding:") &&
423 transfer(contentLength, in, requestBody); method
433 transfer(chunkSize, in, requestBody); method
494 * Transfer bytes from {@code in} to {@code out} until either {@code length}
497 private void transfer(int length, InputStream in, OutputStream out) throws IOException { method in class:MockWebServer
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
Filter.java 274 * transfer from a FieldPort or ProgramPort to its connected target (field or program variable).
277 getInputPort(name).transfer(context);
288 inputPort.transfer(context);
629 inputPort.transfer(context);
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_INVOKE_METHOD_NATIVE.S 27 @ go ahead and transfer control to the native code
  /dalvik/vm/compiler/template/mips/
TEMPLATE_INVOKE_METHOD_NATIVE.S 32 # go ahead and transfer control to the native code
  /external/chromium_org/third_party/mesa/src/docs/
MESA_ycbcr_texture.spec 36 during pixel transfer. The texture's YCbCr colors are converted to
126 All pixel transfer operations are bypassed. The texture is stored as
  /external/mesa3d/docs/
MESA_ycbcr_texture.spec 36 during pixel transfer. The texture's YCbCr colors are converted to
126 All pixel transfer operations are bypassed. The texture is stored as
  /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/mesa/src/src/gallium/state_trackers/clover/core/
base.hpp 129 /// Transfer the caller's ownership of a reference-counted object
134 transfer(T *p) { function in namespace:clover

Completed in 1119 milliseconds

1 2 3 4 5 6 7 8 91011>>