Home
last modified time | relevance | path

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

/hal_espressif-latest/components/bt/host/bluedroid/stack/sdp/
Dsdp_utils.c177 UINT8 *sdpu_build_attrib_seq (UINT8 *p_out, UINT16 *p_attr, UINT16 num_attrs) in sdpu_build_attrib_seq() argument
190 UINT8_TO_BE_STREAM (p_out, (DATA_ELE_SEQ_DESC_TYPE << 3) | SIZE_IN_NEXT_WORD); in sdpu_build_attrib_seq()
191 UINT16_TO_BE_STREAM (p_out, xx); in sdpu_build_attrib_seq()
193 UINT8_TO_BE_STREAM (p_out, (DATA_ELE_SEQ_DESC_TYPE << 3) | SIZE_IN_NEXT_BYTE); in sdpu_build_attrib_seq()
194 UINT8_TO_BE_STREAM (p_out, xx); in sdpu_build_attrib_seq()
199 UINT8_TO_BE_STREAM (p_out, (UINT_DESC_TYPE << 3) | SIZE_FOUR_BYTES); in sdpu_build_attrib_seq()
200 UINT16_TO_BE_STREAM (p_out, 0); in sdpu_build_attrib_seq()
201 UINT16_TO_BE_STREAM (p_out, 0xFFFF); in sdpu_build_attrib_seq()
205 UINT8_TO_BE_STREAM (p_out, (UINT_DESC_TYPE << 3) | SIZE_TWO_BYTES); in sdpu_build_attrib_seq()
206 UINT16_TO_BE_STREAM (p_out, *p_attr); in sdpu_build_attrib_seq()
[all …]
Dsdp_discovery.c71 static UINT8 *sdpu_build_uuid_seq (UINT8 *p_out, UINT16 num_uuids, tSDP_UUID *p_uuid_list) in sdpu_build_uuid_seq() argument
77 UINT8_TO_BE_STREAM (p_out, (DATA_ELE_SEQ_DESC_TYPE << 3) | SIZE_IN_NEXT_BYTE); in sdpu_build_uuid_seq()
80 p_len = p_out; in sdpu_build_uuid_seq()
81 p_out += 1; in sdpu_build_uuid_seq()
86 UINT8_TO_BE_STREAM (p_out, (UUID_DESC_TYPE << 3) | SIZE_TWO_BYTES); in sdpu_build_uuid_seq()
87 UINT16_TO_BE_STREAM (p_out, p_uuid_list->uu.uuid16); in sdpu_build_uuid_seq()
89 UINT8_TO_BE_STREAM (p_out, (UUID_DESC_TYPE << 3) | SIZE_FOUR_BYTES); in sdpu_build_uuid_seq()
90 UINT32_TO_BE_STREAM (p_out, p_uuid_list->uu.uuid32); in sdpu_build_uuid_seq()
92 UINT8_TO_BE_STREAM (p_out, (UUID_DESC_TYPE << 3) | SIZE_SIXTEEN_BYTES); in sdpu_build_uuid_seq()
93 ARRAY_TO_BE_STREAM (p_out, p_uuid_list->uu.uuid128, p_uuid_list->len); in sdpu_build_uuid_seq()
[all …]
/hal_espressif-latest/components/bt/host/bluedroid/stack/sdp/include/
Dsdpint.h272 extern UINT8 *sdpu_build_attrib_seq (UINT8 *p_out, UINT16 *p_attr, UINT16 num_attrs);
273 extern UINT8 *sdpu_build_attrib_entry (UINT8 *p_out, tSDP_ATTRIBUTE *p_attr);
289 extern UINT8 *sdpu_build_partial_attrib_entry (UINT8 *p_out, tSDP_ATTRIBUTE *p_attr, UINT16 len, UI…
/hal_espressif-latest/components/bt/host/bluedroid/stack/hid/
Dhidd_conn.c716 uint8_t *p_out; in hidd_conn_send_data() local
749 p_out = (uint8_t *)(p_buf + 1) + p_buf->offset; in hidd_conn_send_data()
750 *p_out = HID_BUILD_HDR(msg_type, param); in hidd_conn_send_data()
751 p_out++; in hidd_conn_send_data()
755 *p_out = data; // report_id in hidd_conn_send_data()
756 p_out++; in hidd_conn_send_data()
760 memcpy(p_out, p_data, len); in hidd_conn_send_data()
Dhidh_conn.c830 UINT8 *p_out; in hidh_conn_snd_data() local
906 p_out = (UINT8 *)(p_buf + 1) + p_buf->offset; in hidh_conn_snd_data()
907 *p_out++ = HID_BUILD_HDR(trans_type, param); in hidh_conn_snd_data()
911 *p_out = report_id; in hidh_conn_snd_data()
917 memcpy (p_out, (((UINT8 *)(buf + 1)) + buf->offset), bytes_copied); in hidh_conn_snd_data()
921 *(p_out + bytes_copied) = data & 0xff; in hidh_conn_snd_data()
923 *(p_out + bytes_copied) = data & 0xff; in hidh_conn_snd_data()
924 *(p_out + bytes_copied + 1) = (data >> 8) & 0xff ; in hidh_conn_snd_data()
/hal_espressif-latest/components/bt/host/bluedroid/stack/smp/
Dsmp_api.c538 tSMP_ENC *p_out) in SMP_Encrypt() argument
542 status = smp_encrypt_data(key, key_len, plain_text, pt_len, p_out); in SMP_Encrypt()
Dsmp_keys.c160 tSMP_ENC *p_out) in smp_encrypt_data() argument
170 if ( (p_out == NULL ) || (key_len != SMP_ENCRYT_KEY_SIZE) ) { in smp_encrypt_data()
200 p = p_out->param_buf; in smp_encrypt_data()
203 …smp_debug_print_nbyte_little_endian(p_out->param_buf, (const UINT8 *)"Encrypted text", SMP_ENCRYT_… in smp_encrypt_data()
206 p_out->param_len = SMP_ENCRYT_KEY_SIZE; in smp_encrypt_data()
207 p_out->status = HCI_SUCCESS; in smp_encrypt_data()
208 p_out->opcode = HCI_BLE_ENCRYPT; in smp_encrypt_data()
/hal_espressif-latest/components/bt/host/bluedroid/stack/include/stack/
Dsmp_api.h479 tSMP_ENC *p_out);
/hal_espressif-latest/components/bt/host/bluedroid/stack/smp/include/
Dsmp_int.h485 tSMP_ENC *p_out);