Home
last modified time | relevance | path

Searched refs:uuid_str (Results 1 – 9 of 9) sorted by relevance

/external/bluetooth/bluez/src/
Deir.c66 char *uuid_str; in eir_parse() local
134 uuid_str = bt_uuid2string(&service); in eir_parse()
135 eir->services = g_slist_append(eir->services, uuid_str); in eir_parse()
148 uuid_str = bt_uuid2string(&service); in eir_parse()
149 eir->services = g_slist_append(eir->services, uuid_str); in eir_parse()
160 uuid_str = bt_uuid2string(&service); in eir_parse()
161 eir->services = g_slist_append(eir->services, uuid_str); in eir_parse()
Dstorage.c937 char *uuid_str; in find_record_in_list() local
943 uuid_str = bt_uuid2string(svcclass->data); in find_record_in_list()
944 if (!uuid_str) in find_record_in_list()
947 if (!strcasecmp(uuid_str, uuid)) { in find_record_in_list()
949 free(uuid_str); in find_record_in_list()
954 free(uuid_str); in find_record_in_list()
/external/wpa_supplicant_8/wpa_supplicant/
Dwps_supplicant.c494 char uuid_str[100]; in wpa_supplicant_wps_event_er_ap_add() local
497 uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str)); in wpa_supplicant_wps_event_er_ap_add()
506 uuid_str, MAC2STR(ap->mac_addr), dev_type, ap->wps_state, in wpa_supplicant_wps_event_er_ap_add()
519 char uuid_str[100]; in wpa_supplicant_wps_event_er_ap_remove() local
520 uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str)); in wpa_supplicant_wps_event_er_ap_remove()
521 wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_AP_REMOVE "%s", uuid_str); in wpa_supplicant_wps_event_er_ap_remove()
528 char uuid_str[100]; in wpa_supplicant_wps_event_er_enrollee_add() local
531 uuid_bin2str(enrollee->uuid, uuid_str, sizeof(uuid_str)); in wpa_supplicant_wps_event_er_enrollee_add()
541 uuid_str, MAC2STR(enrollee->mac_addr), enrollee->m1_received, in wpa_supplicant_wps_event_er_enrollee_add()
554 char uuid_str[100]; in wpa_supplicant_wps_event_er_enrollee_remove() local
[all …]
/external/bluetooth/bluez/serial/
Dproxy.c943 const char *uuid_str, const char *address, in register_proxy() argument
959 err = proxy_socket_register(adapter, uuid_str, address, proxy); in register_proxy()
962 err = proxy_tty_register(adapter, uuid_str, address, NULL, in register_proxy()
966 err = proxy_tcp_register(adapter, uuid_str, address, proxy); in register_proxy()
1020 char *uuid_str; in create_proxy() local
1029 uuid_str = bt_name2string(pattern); in create_proxy()
1030 if (!uuid_str) in create_proxy()
1033 err = register_proxy(adapter, uuid_str, address, &proxy); in create_proxy()
1034 g_free(uuid_str); in create_proxy()
1178 char *group_str = group_list[i], *uuid_str, *address; in serial_proxy_init() local
[all …]
Dport.c112 char *uuid_str; in find_port() local
127 uuid_str = bt_name2string(pattern); in find_port()
128 if (!uuid_str) in find_port()
131 ret = strcasecmp(port->uuid, uuid_str); in find_port()
132 g_free(uuid_str); in find_port()
/external/e2fsprogs/lib/blkid/
Dprobe.c689 char uuid_str[17], label_str[129], *cp; in probe_ntfs() local
782 sprintf(uuid_str, "%016llX", blkid_le64(ns->volume_serial)); in probe_ntfs()
783 blkid_set_tag(probe->dev, "UUID", uuid_str, 0); in probe_ntfs()
1166 char uuid_str[17]; in probe_hfs() local
1175 sprintf(uuid_str, "%016llX", uuid); in probe_hfs()
1176 blkid_set_tag(probe->dev, "UUID", uuid_str, 0); in probe_hfs()
1209 char uuid_str[17], label[512]; in probe_hfsplus() local
1239 sprintf(uuid_str, "%016llX", uuid); in probe_hfsplus()
1240 blkid_set_tag(probe->dev, "UUID", uuid_str, 0); in probe_hfsplus()
/external/dbus/dbus/
Ddbus-internals.c823 _dbus_get_local_machine_uuid_encoded (DBusString *uuid_str) in _dbus_get_local_machine_uuid_encoded() argument
851 ok = _dbus_uuid_encode (&machine_uuid, uuid_str); in _dbus_get_local_machine_uuid_encoded()
Ddbus-internals.h367 dbus_bool_t _dbus_get_local_machine_uuid_encoded (DBusString *uuid_str);
/external/bluetooth/bluez/plugins/
Dservice.c579 char uuid_str[MAX_LEN_UUID_STR]; in request_authorization() local
616 if (sdp_uuid2strn(uuid128, uuid_str, MAX_LEN_UUID_STR) < 0) { in request_authorization()
626 memcpy(auth->uuid, uuid_str, MAX_LEN_UUID_STR); in request_authorization()