Lines Matching full:rp

44 	ng_hci_read_local_ver_rp	rp;  in hci_read_local_version_information()  local
47 n = sizeof(rp); in hci_read_local_version_information()
49 NG_HCI_OCF_READ_LOCAL_VER), (char *) &rp, &n) == ERROR) in hci_read_local_version_information()
52 if (rp.status != 0x00) { in hci_read_local_version_information()
54 hci_status2str(rp.status), rp.status); in hci_read_local_version_information()
58 rp.manufacturer = le16toh(rp.manufacturer); in hci_read_local_version_information()
61 hci_ver2str(rp.hci_version), rp.hci_version); in hci_read_local_version_information()
63 le16toh(rp.hci_revision)); in hci_read_local_version_information()
65 hci_lmpver2str(rp.lmp_version), rp.lmp_version); in hci_read_local_version_information()
67 le16toh(rp.lmp_subversion)); in hci_read_local_version_information()
69 hci_manufacturer2str(rp.manufacturer), rp.manufacturer); in hci_read_local_version_information()
78 ng_hci_read_local_commands_rp rp; in hci_read_local_supported_commands() local
82 n = sizeof(rp); in hci_read_local_supported_commands()
85 (char *) &rp, &n) == ERROR) in hci_read_local_supported_commands()
88 if (rp.status != 0x00) { in hci_read_local_supported_commands()
90 hci_status2str(rp.status), rp.status); in hci_read_local_supported_commands()
95 for (n = 0; n < sizeof(rp.features); n++) { in hci_read_local_supported_commands()
98 fprintf(stdout, "%#02x ", rp.features[n]); in hci_read_local_supported_commands()
100 fprintf(stdout, "\n%s\n", hci_commands2str(rp.features, in hci_read_local_supported_commands()
110 ng_hci_read_local_features_rp rp; in hci_read_local_supported_features() local
114 n = sizeof(rp); in hci_read_local_supported_features()
117 (char *) &rp, &n) == ERROR) in hci_read_local_supported_features()
120 if (rp.status != 0x00) { in hci_read_local_supported_features()
122 hci_status2str(rp.status), rp.status); in hci_read_local_supported_features()
127 for (n = 0; n < sizeof(rp.features); n++) in hci_read_local_supported_features()
128 fprintf(stdout, "%#02x ", rp.features[n]); in hci_read_local_supported_features()
129 fprintf(stdout, "\n%s\n", hci_features2str(rp.features, in hci_read_local_supported_features()
139 ng_hci_read_buffer_size_rp rp; in hci_read_buffer_size() local
142 n = sizeof(rp); in hci_read_buffer_size()
145 (char *) &rp, &n) == ERROR) in hci_read_buffer_size()
148 if (rp.status != 0x00) { in hci_read_buffer_size()
150 hci_status2str(rp.status), rp.status); in hci_read_buffer_size()
155 le16toh(rp.max_acl_size)); in hci_read_buffer_size()
157 le16toh(rp.num_acl_pkt)); in hci_read_buffer_size()
159 rp.max_sco_size); in hci_read_buffer_size()
161 le16toh(rp.num_sco_pkt)); in hci_read_buffer_size()
170 ng_hci_read_country_code_rp rp; in hci_read_country_code() local
173 n = sizeof(rp); in hci_read_country_code()
176 (char *) &rp, &n) == ERROR) in hci_read_country_code()
179 if (rp.status != 0x00) { in hci_read_country_code()
181 hci_status2str(rp.status), rp.status); in hci_read_country_code()
186 hci_cc2str(rp.country_code), rp.country_code); in hci_read_country_code()
195 ng_hci_read_bdaddr_rp rp; in hci_read_bd_addr() local
198 n = sizeof(rp); in hci_read_bd_addr()
200 NG_HCI_OCF_READ_BDADDR), (char *) &rp, &n) == ERROR) in hci_read_bd_addr()
203 if (rp.status != 0x00) { in hci_read_bd_addr()
205 hci_status2str(rp.status), rp.status); in hci_read_bd_addr()
209 fprintf(stdout, "BD_ADDR: %s\n", bt_ntoa(&rp.bdaddr, NULL)); in hci_read_bd_addr()