Home
last modified time | relevance | path

Searched refs:decdata_buffer (Results 1 – 2 of 2) sorted by relevance

/external/curl/lib/vtls/
Dschannel.c894 if(BACKEND->decdata_buffer == NULL) { in schannel_connect_step2()
897 BACKEND->decdata_buffer = malloc(BACKEND->decdata_length); in schannel_connect_step2()
898 if(BACKEND->decdata_buffer == NULL) { in schannel_connect_step2()
1759 reallocated_buffer = realloc(BACKEND->decdata_buffer, in schannel_recv()
1766 BACKEND->decdata_buffer = reallocated_buffer; in schannel_recv()
1773 memcpy(BACKEND->decdata_buffer + BACKEND->decdata_offset, in schannel_recv()
1904 memcpy(buf, BACKEND->decdata_buffer, size); in schannel_recv()
1905 memmove(BACKEND->decdata_buffer, BACKEND->decdata_buffer + size, in schannel_recv()
2083 if(BACKEND->decdata_buffer != NULL) { in Curl_schannel_shutdown()
2084 Curl_safefree(BACKEND->decdata_buffer); in Curl_schannel_shutdown()
Dschannel.h90 unsigned char *encdata_buffer, *decdata_buffer; member