Searched defs:proto_len (Results 1 - 6 of 6) 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/chromium_org/third_party/openssl/openssl/ssl/
H A Ds3_srvr.c3567 int proto_len, padding_len; local
3604 * uint8 proto_len;
3605 * uint8 proto[proto_len];
3609 proto_len = p[0];
3610 if (proto_len + 2 > s->init_num)
3612 padding_len = p[proto_len + 1];
3613 if (proto_len + padding_len + 2 != s->init_num)
3616 s->next_proto_negotiated = OPENSSL_malloc(proto_len);
3622 memcpy(s->next_proto_negotiated, p + 1, proto_len);
3623 s->next_proto_negotiated_len = proto_len;
[all...]
/external/openssl/ssl/
H A Ds3_srvr.c3624 int proto_len, padding_len; local
3661 * uint8 proto_len;
3662 * uint8 proto[proto_len];
3666 proto_len = p[0];
3667 if (proto_len + 2 > s->init_num)
3669 padding_len = p[proto_len + 1];
3670 if (proto_len + padding_len + 2 != s->init_num)
3673 s->next_proto_negotiated = OPENSSL_malloc(proto_len);
3679 memcpy(s->next_proto_negotiated, p + 1, proto_len);
3680 s->next_proto_negotiated_len = proto_len;
[all...]
H A Dt1_lib.c1042 unsigned proto_len; local
1067 proto_len = data[i];
1070 if (proto_len == 0)
1073 if (i + proto_len < i || i + proto_len > data_len)
1076 i += proto_len;
/external/chromium_org/third_party/openssl/openssl/apps/
H A Ds_client.c2093 unsigned int proto_len; local
2094 SSL_get0_next_proto_negotiated(s, &proto, &proto_len);
2096 BIO_write(bio, proto, proto_len);
/external/openssl/apps/
H A Ds_client.c2121 unsigned int proto_len; local
2122 SSL_get0_next_proto_negotiated(s, &proto, &proto_len);
2124 BIO_write(bio, proto, proto_len);
2129 unsigned int proto_len; local
2130 SSL_get0_alpn_selected(s, &proto, &proto_len);
2131 if (proto_len > 0)
2134 BIO_write(bio, proto, proto_len);

Completed in 555 milliseconds