Searched refs:errorbuf (Results 1 – 10 of 10) sorted by relevance
/third_party/curl/lib/vtls/ |
D | mbedtls.c | 327 char errorbuf[128]; in mbed_connect_step1() local 344 mbedtls_strerror(ret, errorbuf, sizeof(errorbuf)); in mbed_connect_step1() 346 -ret, errorbuf); in mbed_connect_step1() 356 mbedtls_strerror(ret, errorbuf, sizeof(errorbuf)); in mbed_connect_step1() 358 -ret, errorbuf); in mbed_connect_step1() 379 mbedtls_strerror(ret, errorbuf, sizeof(errorbuf)); in mbed_connect_step1() 381 -ret, errorbuf); in mbed_connect_step1() 391 mbedtls_strerror(ret, errorbuf, sizeof(errorbuf)); in mbed_connect_step1() 393 ssl_cafile, -ret, errorbuf); in mbed_connect_step1() 407 mbedtls_strerror(ret, errorbuf, sizeof(errorbuf)); in mbed_connect_step1() [all …]
|
D | rustls.c | 162 char errorbuf[255]; in tls_recv_more() local 164 rustls_error(rresult, errorbuf, sizeof(errorbuf), &errorlen); in tls_recv_more() 166 errorlen, errorbuf); in tls_recv_more() 232 char errorbuf[255]; in cr_recv() local 234 rustls_error(rresult, errorbuf, sizeof(errorbuf), &errorlen); in cr_recv() 235 failf(data, "rustls_connection_read: %.*s", errorlen, errorbuf); in cr_recv() 295 char errorbuf[256]; in cr_send() local 310 rustls_error(rresult, errorbuf, sizeof(errorbuf), &errorlen); in cr_send() 311 failf(data, "rustls_connection_write: %.*s", errorlen, errorbuf); in cr_send() 390 char errorbuf[256]; in cr_init_backend() local [all …]
|
/third_party/curl/lib/ |
D | curl_trc.c | 101 if(data->set.errorbuffer && !data->state.errorbuf) { in Curl_failf() 103 data->state.errorbuf = TRUE; /* wrote error string */ in Curl_failf()
|
D | urldata.h | 1470 BIT(errorbuf); /* Set to TRUE if the error buffer is already filled in.
|
D | transfer.c | 1369 data->state.errorbuf = FALSE; /* no error has occurred */ in Curl_pretransfer()
|
D | cf-socket.c | 586 data->state.errorbuf = FALSE; in bindlocal()
|
D | multi.c | 2472 data->state.errorbuf = FALSE;
|
D | ftp.c | 1774 data->state.errorbuf = FALSE; /* allow error message to get in ftp_epsv_disable()
|
/third_party/ffmpeg/libavcodec/ |
D | qsv.c | 331 char errorbuf[128]; in qsv_load_plugins() local 332 snprintf(errorbuf, sizeof(errorbuf), in qsv_load_plugins() 334 err = ff_qsv_print_error(logctx, ret, errorbuf); in qsv_load_plugins()
|
/third_party/curl/src/ |
D | tool_operate.c | 2459 char *errorbuf; in add_parallel_transfers() local 2484 errorbuf = malloc(CURL_ERROR_SIZE); in add_parallel_transfers() 2485 if(!errorbuf) in add_parallel_transfers() 2506 free(errorbuf); in add_parallel_transfers() 2509 errorbuf[0] = 0; in add_parallel_transfers() 2510 (void)curl_easy_setopt(per->curl, CURLOPT_ERRORBUFFER, errorbuf); in add_parallel_transfers() 2511 per->errorbuffer = errorbuf; in add_parallel_transfers()
|