Searched refs:proto_len (Results 1 - 4 of 4) sorted by relevance

/external/bluetooth/bluedroid/stack/pan/
H A Dpan_utils.c67 UINT32 proto_len = (UINT32)pan_proto_elem_data[1]; local
83 proto_len, (UINT8 *)(pan_proto_elem_data+2));
/external/openssl/apps/
H A Ds_client.c2123 unsigned int proto_len; local
2124 SSL_get0_next_proto_negotiated(s, &proto, &proto_len);
2126 BIO_write(bio, proto, proto_len);
2131 unsigned int proto_len; local
2132 SSL_get0_alpn_selected(s, &proto, &proto_len);
2133 if (proto_len > 0)
2136 BIO_write(bio, proto, proto_len);
/external/openssl/ssl/
H A Dt1_lib.c1041 unsigned proto_len; local
1066 proto_len = data[i];
1069 if (proto_len == 0)
1072 if (i + proto_len < i || i + proto_len > data_len)
1075 i += proto_len;
H A Ds3_srvr.c3637 int proto_len, padding_len; local
3674 * uint8 proto_len;
3675 * uint8 proto[proto_len];
3679 proto_len = p[0];
3680 if (proto_len + 2 > s->init_num)
3682 padding_len = p[proto_len + 1];
3683 if (proto_len + padding_len + 2 != s->init_num)
3686 s->next_proto_negotiated = OPENSSL_malloc(proto_len);
3692 memcpy(s->next_proto_negotiated, p + 1, proto_len);
3693 s->next_proto_negotiated_len = proto_len;
[all...]

Completed in 269 milliseconds