/third_party/curl/docs/examples/ |
H A D | 10-at-a-time.c | 87 #define MAX_PARALLEL 10 /* number of simultaneous transfers */ 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()
|
H A 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() 183 /* 'pushindex' is now the number of received transfers */ in main()
|
H A 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/ |
H A 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() 284 /* abort paused transfers */ in main() 286 t = &transfers[ in main() [all...] |
H A 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/mesa3d/src/gallium/frontends/d3d10umd/ |
H A 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[SubResourc in ResourceMap() [all...] |
H A D | State.h | 155 struct pipe_transfer **transfers; member
|
/third_party/curl/src/ |
H A D | tool_operate.h | 58 time_t startat; /* when doing parallel transfers, this is a retry transfer 61 bool abort; /* when doing parallel transfers and this is TRUE then a critical 84 extern struct per_transfer *transfers; /* first node */
|
H A D | tool_operate.c | 205 struct per_transfer *transfers; /* first node */ variable 210 list of transfers */ 217 if(!transfers) in add_per_transfer() 219 transfersl = transfers = p; in add_per_transfer() 229 all_xfers++; /* count total number of transfers added */ in add_per_transfer() 241 DEBUGASSERT(transfers); in del_per_transfer() 251 transfers = n; in del_per_transfer() 346 /* When doing serial transfers, we use a single fixed error area */ 992 * the headers, we need to open it in append mode, since transfers in single_transfer() 2242 * add_parallel_transfers() sets 'morep' to TRUE if there are more transfers [all...] |
H A D | tool_progress.c | 196 /* first add the amounts of the already completed transfers */ in progress_meter() 200 for(per = transfers; per; per = per->next) { in progress_meter()
|
/third_party/mesa3d/src/gallium/auxiliary/driver_rbug/ |
H A D | rbug_screen.h | 56 struct list_head transfers; member
|
H A D | rbug_screen.c | 457 list_inithead(&rb_screen->transfers); in rbug_screen_create()
|
/third_party/mesa3d/src/gallium/auxiliary/driver_ddebug/ |
H A D | dd_screen.c | 526 bool transfers = false; in ddebug_screen_create() local 540 puts(" GALLIUM_DDEBUG=\"[<timeout in ms>] [(always|apitrace <call#)] [flush] [transfers] [verbose]\""); in ddebug_screen_create() 554 puts("transfers"); in ddebug_screen_create() 555 puts(" Also dump and do hang detection on transfers."); in ddebug_screen_create() 587 } else if (match_word(&option, "transfers")) { in ddebug_screen_create() 588 transfers = true; in ddebug_screen_create() 667 dscreen->transfers = transfers; in ddebug_screen_create()
|
H A D | dd_pipe.h | 55 bool transfers; member
|
H A D | dd_draw.c | 1641 dd_screen(dctx->base.screen)->transfers ? dd_create_record(dctx) : NULL; in dd_context_buffer_map() 1675 dd_screen(dctx->base.screen)->transfers ? dd_create_record(dctx) : NULL; in dd_context_texture_map() 1708 dd_screen(dctx->base.screen)->transfers ? dd_create_record(dctx) : NULL; in dd_context_transfer_flush_region() 1734 dd_screen(dctx->base.screen)->transfers ? dd_create_record(dctx) : NULL; in dd_context_buffer_unmap() 1759 dd_screen(dctx->base.screen)->transfers ? dd_create_record(dctx) : NULL; in dd_context_texture_unmap() 1786 dd_screen(dctx->base.screen)->transfers ? dd_create_record(dctx) : NULL; in dd_context_buffer_subdata() 1815 dd_screen(dctx->base.screen)->transfers ? dd_create_record(dctx) : NULL; in dd_context_texture_subdata()
|
/third_party/curl/lib/ |
H A D | multi.c | 210 struct Curl_hash transfers; /* hash of transfers using this socket */ member 213 unsigned int users; /* number of transfers using this */ 215 unsigned int readers; /* this many transfers want to read */ 216 unsigned int writers; /* this many transfers want to write */ 266 Curl_hash_destroy(&sh->transfers); in sockhash_destroy() 290 Curl_hash_init(&check->transfers, TRHASH_SIZE, trhash, trhash_compare, in sh_addentry() 295 Curl_hash_destroy(&check->transfers); in sh_addentry() 308 Curl_hash_destroy(&entry->transfers); in sh_delentry() 520 /* a "dead" handle cannot get added transfers whil in curl_multi_add_handle() [all...] |
/third_party/node/deps/v8/src/wasm/baseline/ |
H A D | liftoff-assembler.cc | 759 StackTransferRecipe transfers(this); in MergeFullStackWith() 761 transfers.TransferStackSlot(target.stack_state[i], source.stack_state[i]); in MergeFullStackWith() 790 StackTransferRecipe transfers(this); in MergeStackWith() 792 transfers.TransferStackSlot(target.stack_state[i], in MergeStackWith() 803 transfers.TransferStackSlot(target.stack_state[target_stack_base + i], in MergeStackWith() 814 // reloaded after executing the stack transfers. in MergeStackWith() 834 transfers.MoveRegister(LiftoffRegister{*dst_reg}, in MergeStackWith() 842 // Now execute stack transfers and register moves/loads. in MergeStackWith() 843 transfers.Execute(); in MergeStackWith() 999 // Execute the stack transfers befor in PrepareBuiltinCall() [all...] |
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | [all...] |