Lines Matching refs:cur
995 int cur = 0; in schannel_connect_step1() local
1003 extension_len = (unsigned int *)(void *)(&alpn_buffer[cur]); in schannel_connect_step1()
1004 cur += (int)sizeof(unsigned int); in schannel_connect_step1()
1008 *(unsigned int *)(void *)&alpn_buffer[cur] = in schannel_connect_step1()
1010 cur += (int)sizeof(unsigned int); in schannel_connect_step1()
1014 list_len = (unsigned short*)(void *)(&alpn_buffer[cur]); in schannel_connect_step1()
1015 cur += (int)sizeof(unsigned short); in schannel_connect_step1()
1017 list_start_index = cur; in schannel_connect_step1()
1024 memcpy(&alpn_buffer[cur], proto.data, proto.len); in schannel_connect_step1()
1025 cur += proto.len; in schannel_connect_step1()
1027 *list_len = curlx_uitous(cur - list_start_index); in schannel_connect_step1()
1031 InitSecBuffer(&inbuf, SECBUFFER_APPLICATION_PROTOCOLS, alpn_buffer, cur); in schannel_connect_step1()