Home
last modified time | relevance | path

Searched refs:proto_version (Results 1 – 7 of 7) sorted by relevance

/external/adhd/cras/src/server/
Dcras_rclient.c83 if (msg->proto_version == CRAS_PROTO_VER) { in handle_client_stream_connect()
118 if (msg->proto_version == CRAS_PROTO_VER) { in handle_client_stream_connect()
449 if (old->proto_version + 1 != CRAS_PROTO_VER) in is_connect_msg_old()
/external/python/cpython3/Modules/clinic/
D_ssl.c.h364 _ssl__SSLContext_impl(PyTypeObject *type, int proto_version);
370 int proto_version; in _ssl__SSLContext() local
377 &proto_version)) { in _ssl__SSLContext()
380 return_value = _ssl__SSLContext_impl(type, proto_version); in _ssl__SSLContext()
/external/python/cpython3/Modules/
D_ssl.c2949 _ssl__SSLContext_impl(PyTypeObject *type, int proto_version) in _ssl__SSLContext_impl() argument
2962 if (proto_version == PY_SSL_VERSION_TLS1) in _ssl__SSLContext_impl()
2965 else if (proto_version == PY_SSL_VERSION_TLS1_1) in _ssl__SSLContext_impl()
2967 else if (proto_version == PY_SSL_VERSION_TLS1_2) in _ssl__SSLContext_impl()
2971 else if (proto_version == PY_SSL_VERSION_SSL3) in _ssl__SSLContext_impl()
2975 else if (proto_version == PY_SSL_VERSION_SSL2) in _ssl__SSLContext_impl()
2978 else if (proto_version == PY_SSL_VERSION_TLS) /* SSLv23 */ in _ssl__SSLContext_impl()
2980 else if (proto_version == PY_SSL_VERSION_TLS_CLIENT) in _ssl__SSLContext_impl()
2982 else if (proto_version == PY_SSL_VERSION_TLS_SERVER) in _ssl__SSLContext_impl()
2985 proto_version = -1; in _ssl__SSLContext_impl()
[all …]
/external/kernel-headers/original/uapi/linux/
Dauto_fs.h46 int proto_version; /* Protocol version */ member
/external/adhd/cras/src/common/
Dcras_messages.h101 uint32_t proto_version; member
121 uint32_t proto_version; member
143 m->proto_version = CRAS_PROTO_VER; in cras_fill_connect_message()
/external/python/cpython2/Modules/
D_ssl.c2178 int proto_version = PY_SSL_VERSION_TLS; in context_new() local
2184 &proto_version)) in context_new()
2188 if (proto_version == PY_SSL_VERSION_TLS1) in context_new()
2191 else if (proto_version == PY_SSL_VERSION_TLS1_1) in context_new()
2193 else if (proto_version == PY_SSL_VERSION_TLS1_2) in context_new()
2197 else if (proto_version == PY_SSL_VERSION_SSL3) in context_new()
2201 else if (proto_version == PY_SSL_VERSION_SSL2) in context_new()
2204 else if (proto_version == PY_SSL_VERSION_TLS) in context_new()
2207 proto_version = -1; in context_new()
2210 if (proto_version == -1) { in context_new()
[all …]
/external/adhd/cras/src/tests/
Drclient_unittest.cc146 connect_msg_.proto_version = CRAS_PROTO_VER; in SetUp()
222 connect_msg_.proto_version = CRAS_PROTO_VER - 1; in TEST_F()