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

/external/bluetooth/bluedroid/stack/sdp/
H A Dsdp_utils.c178 UINT8 *sdpu_build_attrib_seq (UINT8 *p_out, UINT16 *p_attr, UINT16 num_attrs) argument
191 UINT8_TO_BE_STREAM (p_out, (DATA_ELE_SEQ_DESC_TYPE << 3) | SIZE_IN_NEXT_WORD);
192 UINT16_TO_BE_STREAM (p_out, xx);
196 UINT8_TO_BE_STREAM (p_out, (DATA_ELE_SEQ_DESC_TYPE << 3) | SIZE_IN_NEXT_BYTE);
197 UINT8_TO_BE_STREAM (p_out, xx);
203 UINT8_TO_BE_STREAM (p_out, (UINT_DESC_TYPE << 3) | SIZE_FOUR_BYTES);
204 UINT16_TO_BE_STREAM (p_out, 0);
205 UINT16_TO_BE_STREAM (p_out, 0xFFFF);
212 UINT8_TO_BE_STREAM (p_out, (UINT_DESC_TYPE << 3) | SIZE_TWO_BYTES);
213 UINT16_TO_BE_STREAM (p_out, *p_att
232 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.c71 static UINT8 *sdpu_build_uuid_seq (UINT8 *p_out, UINT16 num_uuids, tSDP_UUID *p_uuid_list) argument
77 UINT8_TO_BE_STREAM (p_out, (DATA_ELE_SEQ_DESC_TYPE << 3) | SIZE_IN_NEXT_BYTE);
80 p_len = p_out;
81 p_out += 1;
88 UINT8_TO_BE_STREAM (p_out, (UUID_DESC_TYPE << 3) | SIZE_TWO_BYTES);
89 UINT16_TO_BE_STREAM (p_out, p_uuid_list->uu.uuid16);
93 UINT8_TO_BE_STREAM (p_out, (UUID_DESC_TYPE << 3) | SIZE_FOUR_BYTES);
94 UINT32_TO_BE_STREAM (p_out, p_uuid_list->uu.uuid32);
98 UINT8_TO_BE_STREAM (p_out, (UUID_DESC_TYPE << 3) | SIZE_SIXTEEN_BYTES);
99 ARRAY_TO_BE_STREAM (p_out, p_uuid_lis
[all...]
H A Dsdpint.h281 extern UINT8 *sdpu_build_attrib_seq (UINT8 *p_out, UINT16 *p_attr, UINT16 num_attrs);
282 extern UINT8 *sdpu_build_attrib_entry (UINT8 *p_out, tSDP_ATTRIBUTE *p_attr);
298 extern UINT8 *sdpu_build_partial_attrib_entry (UINT8 *p_out, tSDP_ATTRIBUTE *p_attr, UINT16 len, UINT16 *offset);
/external/libselinux/src/
H A Dmapping.c63 struct selinux_mapping *p_out = current_mapping + j; local
65 p_out->value = string_to_security_class(p_in->name);
66 if (!p_out->value)
76 p_out->perms[k] = string_to_av_perm(p_out->value,
78 if (!p_out->perms[k])
82 p_out->num_perms = k;
/external/qemu/distrib/libselinux/src/
H A Dmapping.c63 struct selinux_mapping *p_out = current_mapping + j; local
65 p_out->value = string_to_security_class(p_in->name);
66 if (!p_out->value)
76 p_out->perms[k] = string_to_av_perm(p_out->value,
78 if (!p_out->perms[k])
82 p_out->num_perms = k;
/external/libnfc-nci/halimpl/bcm2079x/gki/ulinux/
H A Dgki_ulinux.c1059 INT8 *p_out = tbuf; local
1071 *p_out++ = (INT8)((h_time / 10) + '0');
1072 *p_out++ = (INT8)((h_time % 10) + '0');
1073 *p_out++ = ':';
1074 *p_out++ = (INT8)((m_time / 10) + '0');
1075 *p_out++ = (INT8)((m_time % 10) + '0');
1076 *p_out++ = ':';
1077 *p_out++ = (INT8)((s_time / 10) + '0');
1078 *p_out++ = (INT8)((s_time % 10) + '0');
1079 *p_out
[all...]
/external/libnfc-nci/src/gki/ulinux/
H A Dgki_ulinux.c1036 INT8 *p_out = tbuf; local
1048 *p_out++ = (INT8)((h_time / 10) + '0');
1049 *p_out++ = (INT8)((h_time % 10) + '0');
1050 *p_out++ = ':';
1051 *p_out++ = (INT8)((m_time / 10) + '0');
1052 *p_out++ = (INT8)((m_time % 10) + '0');
1053 *p_out++ = ':';
1054 *p_out++ = (INT8)((s_time / 10) + '0');
1055 *p_out++ = (INT8)((s_time % 10) + '0');
1056 *p_out
[all...]
/external/bluetooth/bluedroid/stack/smp/
H A Dsmp_api.c327 ** p_out - output of the encrypted texts
333 tSMP_ENC *p_out)
337 status = smp_encrypt_data(key, key_len, plain_text, pt_len, p_out);
331 SMP_Encrypt(UINT8 *key, UINT8 key_len, UINT8 *plain_text, UINT8 pt_len, tSMP_ENC *p_out) argument
H A Dsmp_keys.c101 tSMP_ENC *p_out)
111 if ( (p_out == NULL ) || (key_len != SMP_ENCRYT_KEY_SIZE) )
140 p = p_out->param_buf;
142 smp_debug_print_nbyte_little_endian(p_out->param_buf, (const UINT8 *)"Encrypted text", SMP_ENCRYT_KEY_SIZE);
144 p_out->param_len = SMP_ENCRYT_KEY_SIZE;
145 p_out->status = HCI_SUCCESS;
146 p_out->opcode = HCI_BLE_ENCRYPT;
99 smp_encrypt_data(UINT8 *key, UINT8 key_len, UINT8 *plain_text, UINT8 pt_len, tSMP_ENC *p_out) argument
H A Dsmp_int.h309 tSMP_ENC *p_out);
/external/bluetooth/bluedroid/stack/hid/
H A Dhidh_conn.c877 UINT8 *p_out; local
957 p_out = (UINT8 *)(p_buf + 1) + p_buf->offset;
958 *p_out++ = HID_BUILD_HDR(trans_type, param);
963 *p_out = report_id;
970 memcpy (p_out, (((UINT8 *)(buf+1)) + buf->offset), bytes_copied);
976 *(p_out+bytes_copied) = data & 0xff;
980 *(p_out+bytes_copied) = data & 0xff;
981 *(p_out+bytes_copied+1) = (data >> 8) & 0xff ;
/external/bluetooth/bluedroid/stack/include/
H A Dsmp_api.h290 ** p_out - pointer to the encrypted outputs
296 tSMP_ENC *p_out);

Completed in 565 milliseconds