Searched refs:p_out (Results 1 - 8 of 8) sorted by relevance

/system/bt/stack/sdp/
H A Dsdp_utils.c173 UINT8 *sdpu_build_attrib_seq (UINT8 *p_out, UINT16 *p_attr, UINT16 num_attrs) argument
186 UINT8_TO_BE_STREAM (p_out, (DATA_ELE_SEQ_DESC_TYPE << 3) | SIZE_IN_NEXT_WORD);
187 UINT16_TO_BE_STREAM (p_out, xx);
191 UINT8_TO_BE_STREAM (p_out, (DATA_ELE_SEQ_DESC_TYPE << 3) | SIZE_IN_NEXT_BYTE);
192 UINT8_TO_BE_STREAM (p_out, xx);
198 UINT8_TO_BE_STREAM (p_out, (UINT_DESC_TYPE << 3) | SIZE_FOUR_BYTES);
199 UINT16_TO_BE_STREAM (p_out, 0);
200 UINT16_TO_BE_STREAM (p_out, 0xFFFF);
207 UINT8_TO_BE_STREAM (p_out, (UINT_DESC_TYPE << 3) | SIZE_TWO_BYTES);
208 UINT16_TO_BE_STREAM (p_out, *p_att
227 sdpu_build_attrib_entry(UINT8 *p_out, tSDP_ATTRIBUTE *p_attr) argument
1000 sdpu_build_partial_attrib_entry(UINT8 *p_out, tSDP_ATTRIBUTE *p_attr, UINT16 len, UINT16 *offset) argument
[all...]
H A Dsdp_discovery.c72 static UINT8 *sdpu_build_uuid_seq (UINT8 *p_out, UINT16 num_uuids, tSDP_UUID *p_uuid_list) argument
78 UINT8_TO_BE_STREAM (p_out, (DATA_ELE_SEQ_DESC_TYPE << 3) | SIZE_IN_NEXT_BYTE);
81 p_len = p_out;
82 p_out += 1;
89 UINT8_TO_BE_STREAM (p_out, (UUID_DESC_TYPE << 3) | SIZE_TWO_BYTES);
90 UINT16_TO_BE_STREAM (p_out, p_uuid_list->uu.uuid16);
94 UINT8_TO_BE_STREAM (p_out, (UUID_DESC_TYPE << 3) | SIZE_FOUR_BYTES);
95 UINT32_TO_BE_STREAM (p_out, p_uuid_list->uu.uuid32);
99 UINT8_TO_BE_STREAM (p_out, (UUID_DESC_TYPE << 3) | SIZE_SIXTEEN_BYTES);
100 ARRAY_TO_BE_STREAM (p_out, p_uuid_lis
[all...]
H A Dsdpint.h277 extern UINT8 *sdpu_build_attrib_seq (UINT8 *p_out, UINT16 *p_attr, UINT16 num_attrs);
278 extern UINT8 *sdpu_build_attrib_entry (UINT8 *p_out, tSDP_ATTRIBUTE *p_attr);
294 extern UINT8 *sdpu_build_partial_attrib_entry (UINT8 *p_out, tSDP_ATTRIBUTE *p_attr, UINT16 len, UINT16 *offset);
/system/bt/stack/hid/
H A Dhidh_conn.c888 UINT8 *p_out; local
964 p_out = (UINT8 *)(p_buf + 1) + p_buf->offset;
965 *p_out++ = HID_BUILD_HDR(trans_type, param);
970 *p_out = report_id;
977 memcpy (p_out, (((UINT8 *)(buf+1)) + buf->offset), bytes_copied);
983 *(p_out+bytes_copied) = data & 0xff;
987 *(p_out+bytes_copied) = data & 0xff;
988 *(p_out+bytes_copied+1) = (data >> 8) & 0xff ;
/system/bt/stack/smp/
H A Dsmp_api.c517 ** p_out - output of the encrypted texts
523 tSMP_ENC *p_out)
527 status = smp_encrypt_data(key, key_len, plain_text, pt_len, p_out);
521 SMP_Encrypt(UINT8 *key, UINT8 key_len, UINT8 *plain_text, UINT8 pt_len, tSMP_ENC *p_out) argument
H A Dsmp_keys.c118 ** Plain_text is encrypted using key, the result is at p_out.
125 tSMP_ENC *p_out)
135 if ( (p_out == NULL ) || (key_len != SMP_ENCRYT_KEY_SIZE) )
161 p = p_out->param_buf;
164 smp_debug_print_nbyte_little_endian(p_out->param_buf, (const UINT8 *)"Encrypted text", SMP_ENCRYT_KEY_SIZE);
167 p_out->param_len = SMP_ENCRYT_KEY_SIZE;
168 p_out->status = HCI_SUCCESS;
169 p_out->opcode = HCI_BLE_ENCRYPT;
123 smp_encrypt_data(UINT8 *key, UINT8 key_len, UINT8 *plain_text, UINT8 pt_len, tSMP_ENC *p_out) argument
H A Dsmp_int.h490 tSMP_ENC *p_out);
/system/bt/stack/include/
H A Dsmp_api.h455 ** p_out - pointer to the encrypted outputs
461 tSMP_ENC *p_out);

Completed in 260 milliseconds