/external/chromium_org/device/usb/ |
usb_device_handle_impl.h | 96 struct Transfer; 107 // If the device's task runner is on the current thread then the transfer will 117 // Submits a transfer and starts tracking it. Retains the buffer and copies 118 // the completion callback until the transfer finishes, whereupon it invokes 130 // Invokes the callbacks associated with a given transfer, and removes it from 131 // the in-flight transfer set. 132 void CompleteTransfer(PlatformUsbTransferHandle transfer); 151 typedef std::map<PlatformUsbTransferHandle, Transfer> TransferMap;
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/galahad/ |
glhd_objects.c | 152 struct pipe_transfer *transfer) 156 if(!transfer) 159 assert(transfer->resource == glhd_resource->resource); 165 memcpy(&glhd_transfer->base, transfer, sizeof(struct pipe_transfer)); 168 glhd_transfer->transfer = transfer; 176 glhd_context->pipe->transfer_destroy(glhd_context->pipe, transfer); 186 glhd_transfer->transfer);
|
/external/mesa3d/src/gallium/drivers/galahad/ |
glhd_objects.c | 152 struct pipe_transfer *transfer) 156 if(!transfer) 159 assert(transfer->resource == glhd_resource->resource); 165 memcpy(&glhd_transfer->base, transfer, sizeof(struct pipe_transfer)); 168 glhd_transfer->transfer = transfer; 176 glhd_context->pipe->transfer_destroy(glhd_context->pipe, transfer); 186 glhd_transfer->transfer);
|
/external/compiler-rt/lib/asan/tests/ |
asan_mem_test.cc | 130 // valid transfer of bytes between arrays 131 M::transfer(dest, src, size); 132 M::transfer(dest + 1, src, size - sizeof(T)); 133 M::transfer(dest, src + length - 1, sizeof(T)); 134 M::transfer(dest, src, 1); 136 // transfer zero bytes 137 M::transfer(dest - 1, src, 0); 138 M::transfer(dest + length, src, zero); 139 M::transfer(dest, src - 1, zero); 140 M::transfer(dest, src, zero) 186 static void* transfer(void *to, const void *from, size_t size) { function in class:MemCpyWrapper 198 static void* transfer(void *to, const void *from, size_t size) { function in class:MemMoveWrapper [all...] |
/external/libusb/examples/ |
dpfp.c | 152 static void cb_mode_changed(struct libusb_transfer *transfer) 154 if (transfer->status != LIBUSB_TRANSFER_COMPLETED) { 155 fprintf(stderr, "mode change transfer not completed!\n"); 160 transfer->length, transfer->actual_length); 168 struct libusb_transfer *transfer; local 173 transfer = libusb_alloc_transfer(0); 174 if (!transfer) { 182 libusb_fill_control_transfer(transfer, devh, buf, cb_mode_changed, NULL, 185 transfer->flags = LIBUSB_TRANSFER_SHORT_NOT_O [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
Constants.java | 55 * only retry Outbound transfer 59 /** the intent that gets sent when clicking a successful transfer */ 62 /** the intent that gets sent when clicking outbound transfer notification */ 65 /** the intent that gets sent when clicking a inbound transfer notification */ 74 /** the intent that can be sent by handover requesters to stop a BTOPP transfer */ 77 /** the intent extra to show all received files in the transfer history */ 80 /** the intent that gets sent when clicking an incomplete/failed transfer */ 83 /** the intent that is used for initiating a handover transfer */ 87 /** the intent that is used for initiating a multi-uri handover transfer */ 91 /** the intent that is used for indicating an incoming transfer*/ [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/ |
ServiceWorkerClient.idl | 13 [Custom, RaisesException, CallWith=ExecutionContext] void postMessage(SerializedScriptValue message, optional sequence<Transferable> transfer);
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/ |
r600_texture.c | 39 /* Copy from a full GPU texture to a transfer's staging one. */ 42 struct pipe_transfer *transfer = (struct pipe_transfer*)rtransfer; local 43 struct pipe_resource *texture = transfer->resource; 46 0, 0, 0, 0, texture, transfer->level, 47 &transfer->box); 51 /* Copy from a transfer's staging texture to a full GPU one. */ 54 struct pipe_transfer *transfer = (struct pipe_transfer*)rtransfer; local 55 struct pipe_resource *texture = transfer->resource; 59 sbox.width = transfer->box.width; 60 sbox.height = transfer->box.height [all...] |
/external/libmtp/doc/ |
mainpage.h | 6 * libmtp is a library for the Media Transfer Protocol (MTP)
|
/external/libmtp/ |
libmtp.pc | 9 Description: libmtp is a library for accessing Media Transfer Protocol devices
|
libmtp.pc.in | 9 Description: libmtp is a library for accessing Media Transfer Protocol devices
|
/external/mesa3d/src/gallium/drivers/radeonsi/ |
r600_texture.c | 39 /* Copy from a full GPU texture to a transfer's staging one. */ 42 struct pipe_transfer *transfer = (struct pipe_transfer*)rtransfer; local 43 struct pipe_resource *texture = transfer->resource; 46 0, 0, 0, 0, texture, transfer->level, 47 &transfer->box); 51 /* Copy from a transfer's staging texture to a full GPU one. */ 54 struct pipe_transfer *transfer = (struct pipe_transfer*)rtransfer; local 55 struct pipe_resource *texture = transfer->resource; 59 sbox.width = transfer->box.width; 60 sbox.height = transfer->box.height [all...] |
/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/chromium_org/device/hid/ |
hid_connection_win.h | 46 PendingHidTransfer* transfer, 50 PendingHidTransfer* transfer, 53 PendingHidTransfer* transfer,
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/ |
i915_resource_buffer.c | 71 struct pipe_transfer *transfer = util_slab_alloc(&i915->transfer_pool); local 73 if (transfer == NULL) 76 transfer->resource = resource; 77 transfer->level = level; 78 transfer->usage = usage; 79 transfer->box = *box; 84 return transfer; 89 struct pipe_transfer *transfer) 92 util_slab_free(&i915->transfer_pool, transfer); 97 struct pipe_transfer *transfer ) [all...] |
/external/mesa3d/src/gallium/drivers/i915/ |
i915_resource_buffer.c | 71 struct pipe_transfer *transfer = util_slab_alloc(&i915->transfer_pool); local 73 if (transfer == NULL) 76 transfer->resource = resource; 77 transfer->level = level; 78 transfer->usage = usage; 79 transfer->box = *box; 84 return transfer; 89 struct pipe_transfer *transfer) 92 util_slab_free(&i915->transfer_pool, transfer); 97 struct pipe_transfer *transfer ) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/data/ |
msg_04.txt | 7 Content-Transfer-Encoding: 7bit 22 Content-Transfer-Encoding: 7bit 31 Content-Transfer-Encoding: 7bit
|
msg_44.txt | 7 Content-Transfer-Encoding: 7bit 20 Content-Transfer-Encoding: 7bit 27 Content-Transfer-Encoding: 7bit
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/data/ |
msg_04.txt | 7 Content-Transfer-Encoding: 7bit 22 Content-Transfer-Encoding: 7bit 31 Content-Transfer-Encoding: 7bit
|
msg_44.txt | 7 Content-Transfer-Encoding: 7bit 20 Content-Transfer-Encoding: 7bit 27 Content-Transfer-Encoding: 7bit
|
/prebuilts/eclipse/maven/apache-maven-3.2.1/lib/ |
aether-spi-0.9.0.M2.jar | |
/external/smack/src/org/xbill/DNS/ |
ZoneTransferIn.java | 29 * An incoming DNS Zone Transfer. To use this class, first initialize an 95 * Handles a Zone Transfer. 99 * Called when an AXFR transfer begins. 104 * Called when an IXFR transfer begins. 194 * Instantiates a ZoneTransferIn object to do an AXFR (full zone transfer). 195 * @param zone The zone to transfer. 196 * @param address The host/port from which to transfer the zone. 197 * @param key The TSIG key used to authenticate the transfer, or null. 207 * Instantiates a ZoneTransferIn object to do an AXFR (full zone transfer). 208 * @param zone The zone to transfer [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/ |
svga_resource_texture.c | 55 SVGA3dTransferType transfer, 81 transfer == SVGA3D_WRITE_HOST_VRAM ? "to" : "from", 93 ret = SVGA3D_SurfaceDMA(svga->swc, st, transfer, &box, 1, flags); 96 ret = SVGA3D_SurfaceDMA(svga->swc, st, transfer, &box, 1, flags); 105 SVGA3dTransferType transfer, 113 if (transfer == SVGA3D_READ_HOST_VRAM) { 114 SVGA_DBG(DEBUG_PERF, "%s: readback transfer\n", __FUNCTION__); 123 /* Do the DMA transfer in a single go */ 125 svga_transfer_dma_band(svga, st, transfer, 129 if(transfer == SVGA3D_READ_HOST_VRAM) [all...] |
/external/mesa3d/src/gallium/drivers/svga/ |
svga_resource_texture.c | 55 SVGA3dTransferType transfer, 81 transfer == SVGA3D_WRITE_HOST_VRAM ? "to" : "from", 93 ret = SVGA3D_SurfaceDMA(svga->swc, st, transfer, &box, 1, flags); 96 ret = SVGA3D_SurfaceDMA(svga->swc, st, transfer, &box, 1, flags); 105 SVGA3dTransferType transfer, 113 if (transfer == SVGA3D_READ_HOST_VRAM) { 114 SVGA_DBG(DEBUG_PERF, "%s: readback transfer\n", __FUNCTION__); 123 /* Do the DMA transfer in a single go */ 125 svga_transfer_dma_band(svga, st, transfer, 129 if(transfer == SVGA3D_READ_HOST_VRAM) [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...] |