Searched defs:protos (Results 1 - 13 of 13) sorted by relevance

/external/bluetooth/bluez/cups/
H A Dsdp.c64 sdp_list_t *protos; local
66 if (!sdp_get_access_protos(rec, &protos)) {
67 unsigned short psm = sdp_get_proto_port(protos, L2CAP_UUID);
73 if (!sdp_get_add_access_protos(rec, &protos)) {
74 unsigned short psm = sdp_get_proto_port(protos, L2CAP_UUID);
107 sdp_list_t *protos; local
109 if (!sdp_get_access_protos(rec, &protos)) {
110 uint8_t ch = sdp_get_proto_port(protos, RFCOMM_UUID);
/external/bluetooth/bluez/serial/
H A Dmanager.c77 sdp_list_t *protos; local
88 if (sdp_get_access_protos(rec, &protos) < 0)
91 ch = sdp_get_proto_port(protos, RFCOMM_UUID);
92 sdp_list_foreach(protos, (sdp_list_func_t) sdp_list_free, NULL);
93 sdp_list_free(protos, NULL);
H A Dport.c385 sdp_list_t *protos; local
409 if (sdp_get_access_protos(record, &protos) < 0) {
410 error("Unable to get access protos from port record");
415 port->channel = sdp_get_proto_port(protos, RFCOMM_UUID);
417 sdp_list_foreach(protos, (sdp_list_func_t) sdp_list_free, NULL);
418 sdp_list_free(protos, NULL);
/external/bluetooth/bluez/input/
H A Dmanager.c88 sdp_list_t *protos; local
100 if (!record || sdp_get_access_protos(record, &protos) < 0) {
105 ch = sdp_get_proto_port(protos, RFCOMM_UUID);
106 sdp_list_foreach(protos, (sdp_list_func_t) sdp_list_free, NULL);
107 sdp_list_free(protos, NULL);
/external/bluetooth/bluez/tools/
H A Dciptool.c117 sdp_list_t *protos; local
119 if (!sdp_get_access_protos(rec, &protos)) {
120 unsigned short p = sdp_get_proto_port(protos, L2CAP_UUID);
/external/bluetooth/bluez/audio/
H A Dgateway.c274 sdp_list_t *protos, *classes; local
297 if (sdp_get_access_protos(recs->data, &protos) < 0) {
308 sdp_list_free(protos, NULL);
314 ch = sdp_get_proto_port(protos, RFCOMM_UUID);
315 sdp_list_foreach(protos, (sdp_list_func_t) sdp_list_free, NULL);
316 sdp_list_free(protos, NULL);
H A Davdtp.c2108 sdp_list_t *protos; local
2129 if (sdp_get_access_protos(rec, &protos) < 0)
2132 proto_desc = sdp_get_proto_desc(protos, AVDTP_UUID);
2136 sdp_list_foreach(protos, (sdp_list_func_t) sdp_list_free, NULL);
2137 sdp_list_free(protos, NULL);
H A Dheadset.c1417 sdp_list_t *protos; local
1419 if (sdp_get_access_protos(record, &protos) < 0) {
1420 error("Unable to get access protos from headset record");
1424 ch = sdp_get_proto_port(protos, RFCOMM_UUID);
1426 sdp_list_foreach(protos, (sdp_list_func_t) sdp_list_free, NULL);
1427 sdp_list_free(protos, NULL);
/external/bluetooth/bluez/test/
H A Drctest.c123 sdp_list_t *protos; local
125 if (!sdp_get_access_protos(rec, &protos)) {
126 channel = sdp_get_proto_port(protos, RFCOMM_UUID);
/external/bluetooth/bluez/compat/
H A Dsdp.c352 sdp_list_t *protos; local
356 if (!sdp_get_access_protos(rec, &protos)) {
357 uint8_t ch = sdp_get_proto_port(protos, RFCOMM_UUID);
707 sdp_list_t *protos; local
709 if (!sdp_get_access_protos(rec, &protos)) {
710 int ch = sdp_get_proto_port(protos, RFCOMM_UUID);
/external/wpa_supplicant/
H A Dtls_gnutls.c287 const int protos[2] = { GNUTLS_TLS1, 0 }; local
306 ret = gnutls_protocol_set_priority(conn->session, protos);
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/
H A Dtls_gnutls.c292 const int protos[2] = { GNUTLS_TLS1, 0 }; local
311 ret = gnutls_protocol_set_priority(conn->session, protos);
/external/bluetooth/bluez/lib/
H A Dsdp.c2344 sdp_data_t *protos = NULL; local
2348 protos = sdp_seq_append(protos, seq);
2351 sdp_attr_add(rec, SDP_ATTR_PROTO_DESC_LIST, protos);
2359 sdp_data_t *protos = NULL; local
2363 protos = sdp_seq_append(protos, seq);
2367 protos ? sdp_data_alloc(SDP_SEQ8, protos) : NULL);

Completed in 1104 milliseconds