/third_party/curl/docs/ |
D | PARALLEL-TRANSFERS.md | 1 # Parallel transfers 3 curl 7.66.0 introduced support for doing multiple transfers simultaneously; in 8 When this command line option is used, curl will perform the transfers given 10 transfers, with a default value of 50. 14 The progress meter that is displayed when doing parallel transfers is 19 o percent download (if known, which means *all* transfers need to have a 24 o number of transfers to perform 25 o number of concurrent transfers being transferred right now 26 o number of transfers queued up waiting to start 27 o total time all transfers are expected to take (if sizes are known) [all …]
|
/third_party/curl/docs/examples/ |
D | 10-at-a-time.c | 112 unsigned int transfers = 0; in main() local 122 for(transfers = 0; transfers < MAX_PARALLEL && transfers < NUM_URLS; in main() 123 transfers++) in main() 124 add_transfer(cm, transfers, &left); in main() 144 if(transfers < NUM_URLS) in main() 145 add_transfer(cm, transfers++, &left); in main()
|
D | http2-pushinmemory.c | 103 int *transfers = (int *)userp; in server_push_callback() local 120 (*transfers)++; /* one more */ in server_push_callback() 133 int transfers = 1; /* we start with one */ in main() local 150 curl_multi_setopt(multi, CURLMOPT_PUSHDATA, &transfers); in main() 152 while(transfers) { in main() 172 transfers--; in main()
|
D | http2-serverpush.c | 172 int *transfers = (int *)userp; in server_push_callback() local 205 (*transfers)++; /* one more */ in server_push_callback() 217 int transfers = 1; /* we start with one */ in main() local 240 curl_multi_setopt(multi_handle, CURLMOPT_PUSHDATA, &transfers); in main() 264 transfers--; in main() 270 } while(transfers); /* as long as we have transfers going */ in main()
|
/third_party/curl/tests/http/clients/ |
D | h2-download.c | 99 static struct transfer *transfers; variable 105 if(easy == transfers[i].easy) in get_transfer_for_easy() 106 return &transfers[i]; in get_transfer_for_easy() 224 transfers = calloc(transfer_count, sizeof(*transfers)); in main() 225 if(!transfers) { in main() 235 t = &transfers[i]; in main() 242 t = &transfers[i]; in main() 286 t = &transfers[i]; in main() 298 t = &transfers[i]; in main() 311 t = &transfers[i]; in main() [all …]
|
D | h2-serverpush.c | 168 int *transfers = (int *)userp; in server_push_callback() local 202 (*transfers)++; /* one more */ in server_push_callback() 217 int transfers = 1; /* we start with one */ in main() local 230 curl_multi_setopt(multi_handle, CURLMOPT_PUSHDATA, &transfers); in main() 260 transfers--; in main() 266 } while(transfers); /* as long as we have transfers going */ in main()
|
/third_party/curl/docs/libcurl/ |
D | libcurl-multi.md | 35 2. Enable multiple simultaneous transfers in the same thread without making it 41 4. Enable event-based handling and scaling transfers up to and beyond 51 transfers in parallel. Each single transfer is built up around an easy 61 curl_easy_perform(3) like when using the easy interface for transfers, 64 handle at any point, even if other transfers are already running. 70 necessary. You can remove handles at any point during transfers. 74 application drive. You drive the transfers by invoking 75 curl_multi_perform(3). libcurl then transfers data if there is anything 77 setup in the individual easy handles. It transfers data on all current 78 transfers in the multi stack that are ready to transfer anything. It may be [all …]
|
D | curl_multi_perform.md | 31 This function performs transfers on all the added handles that need attention 46 you know that there is one or more transfers less "running". You can then call 54 there is no longer any transfers in progress. 56 When this function returns error, the state of all transfers are uncertain and 83 /* if there are still transfers, loop! */ 98 individual transfers may have occurred even when this function returns 100 transfers did. 105 activity on any of the ongoing transfers. As soon as one or more file
|
D | curl_multi_socket.md | 37 zero, all transfers are complete/done. Note that when you call 63 Force libcurl to (re-)check all its internal sockets and transfers instead of 95 occurred on individual transfers even when one of these functions return OK.
|
D | curl_multi_socket_all.md | 37 zero, all transfers are complete/done. Note that when you call 63 Force libcurl to (re-)check all its internal sockets and transfers instead of 95 occurred on individual transfers even when one of these functions return OK.
|
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/commonvalidity/ |
D | image_memory_barrier_common.txt | 33 <<synchronization-queue-transfers, queue family ownership transfer>> or 41 <<synchronization-queue-transfers, queue family ownership transfer>> or 50 <<synchronization-queue-transfers, queue family ownership transfer>> or 59 <<synchronization-queue-transfers, queue family ownership transfer>> or 68 <<synchronization-queue-transfers, queue family ownership transfer>> or 76 <<synchronization-queue-transfers, queue family ownership transfer>> or 84 <<synchronization-queue-transfers, queue family ownership transfer>> or 91 <<synchronization-queue-transfers, queue family ownership transfer>> or 99 <<synchronization-queue-transfers, queue family ownership transfer>> or 108 <<synchronization-queue-transfers, queue family ownership transfer>> or [all …]
|
D | image_memory_barrier_common.adoc | 9 <<synchronization-queue-transfers, queue family ownership transfer>> or 17 <<synchronization-queue-transfers, queue family ownership transfer>> or 26 <<synchronization-queue-transfers, queue family ownership transfer>> or 35 <<synchronization-queue-transfers, queue family ownership transfer>> or 44 <<synchronization-queue-transfers, queue family ownership transfer>> or 52 <<synchronization-queue-transfers, queue family ownership transfer>> or 60 <<synchronization-queue-transfers, queue family ownership transfer>> or 67 <<synchronization-queue-transfers, queue family ownership transfer>> or 75 <<synchronization-queue-transfers, queue family ownership transfer>> or 84 <<synchronization-queue-transfers, queue family ownership transfer>> or [all …]
|
D | buffer_memory_barrier_common.txt | 29 memory ownership transfers, as described in 30 <<synchronization-queue-transfers>> 36 special queue family values reserved for external memory transfers, the 43 the special queue family values reserved for external memory transfers, 44 as described in <<synchronization-queue-transfers>>
|
/third_party/mesa3d/src/gallium/frontends/d3d10umd/ |
D | Resource.cpp | 315 pResource->transfers = (struct pipe_transfer **)calloc(pResource->NumSubResources, in CreateResource() 316 sizeof *pResource->transfers); in CreateResource() 451 if (pResource->transfers[SubResource]) { in DestroyResource() 453 pipe_buffer_unmap(pipe, pResource->transfers[SubResource]); in DestroyResource() 455 pipe_texture_unmap(pipe, pResource->transfers[SubResource]); in DestroyResource() 457 pResource->transfers[SubResource] = NULL; in DestroyResource() 460 free(pResource->transfers); in DestroyResource() 523 assert(!pResource->transfers[SubResource]); in ResourceMap() 532 &pResource->transfers[SubResource]); in ResourceMap() 539 &pResource->transfers[SubResource]); in ResourceMap() [all …]
|
/third_party/curl/docs/cmdline-opts/ |
D | parallel-max.md | 6 Help: Maximum concurrency for parallel transfers 18 When asked to do parallel transfers, using --parallel, this option controls 19 the maximum amount of transfers to do simultaneously.
|
D | fail-early.md | 21 When curl is used to do multiple transfers on the command line, it attempts to 24 returns. So early failures are "hidden" by subsequent successful transfers. 30 This option does not imply --fail, which causes transfers to fail due to the
|
D | rate.md | 6 Help: Request rate for serial transfers 33 is number of transfers per hour. 41 When retrying transfers, enabled with --retry, the separate retry delay logic
|
D | parallel.md | 6 Help: Perform transfers in parallel 20 Makes curl perform its transfers in parallel as compared to the regular serial
|
D | parallel-immediate.md | 19 When doing parallel transfers, this option instructs curl that it should 21 waiting to see if new transfers can be added as multiplexed streams on another
|
/third_party/EGL/extensions/NV/ |
D | EGL_NV_stream_dma.txt | 46 This extension provides the framework for performing DMA transfers 53 through sockets is slower compared to DMA transfers. Since DMA 54 transfers have higher throughput compared to sockets, using 104 buffer transfers. 111 transfers, if that server is not local. Legal values, aside from
|
/third_party/libusb/ |
D | PORTING | 16 asynchronous transfers (synchronous transfers are implemented in the higher 18 functionality to cancel those transfers. 21 transfers and process their results.
|
/third_party/vk-gl-cts/external/vulkan-docs/src/appendices/ |
D | VK_KHR_external_semaphore_fd.txt | 35 A successful get call transfers ownership of the file descriptor to the 36 application, and a successful import transfers it back to the driver.
|
D | VK_FUCHSIA_external_semaphore.adoc | 34 A successful get call transfers ownership of the Zircon event handle to the 35 application, and a successful import transfers it back to the driver.
|
D | VK_FUCHSIA_external_semaphore.txt | 34 A successful get call transfers ownership of the Zircon event handle to the 35 application, and a successful import transfers it back to the driver.
|
/third_party/curl/docs/libcurl/opts/ |
D | CURLINFO_XFER_ID.md | 32 The transfer id is unique among all transfers performed using the same 33 connection cache. This is implicitly the case for all transfers in the
|