HomeSort by relevance Sort by last modified time
    Searched refs:tlv_size (Results 1 - 16 of 16) sorted by null

  /external/libnfc-nci/src/nfc/nfc/
nfc_ee.c 102 UINT8 tlv_size,
105 return nci_snd_set_routing_cmd (more, num_tlv, tlv_size, p_param_tlvs);
nfc_main.c 789 ** Parameters tlv_size - the length of p_param_tlvs.
795 tNFC_STATUS NFC_SetConfig (UINT8 tlv_size,
798 return nci_snd_core_set_config (p_param_tlvs, tlv_size);
975 UINT8 num_tlv=0, tlv_size=0; local
990 tlv_size = 4;
998 tlv_size = 3;
    [all...]
nfc_ncif.c     [all...]
  /external/libnfc-nci/src/nfc/include/
nci_hmsgs.h 48 UINT8 nci_snd_core_set_config (UINT8 *p_param_tlvs, UINT8 tlv_size);
50 UINT8 nci_snd_core_conn_create (UINT8 dest_type, UINT8 num_tlv, UINT8 tlv_size, UINT8 *p_param_tlvs);
61 UINT8 nci_snd_parameter_update_cmd (UINT8 *p_param_tlvs, UINT8 tlv_size);
66 UINT8 nci_snd_set_routing_cmd (BOOLEAN more, UINT8 num_tlv, UINT8 tlv_size, UINT8 *p_param_tlvs);
nfc_api.h 232 UINT16 tlv_size; /* The length of TLV */ member in struct:__anon28899
297 UINT8 tlv_size; /* the total len of all TLVs */ member in struct:__anon28904
    [all...]
  /external/libnfc-nci/src/nfc/nci/
nci_hmsgs.c 140 UINT8 nci_snd_core_set_config (UINT8 *p_param_tlvs, UINT8 tlv_size)
146 if ((p = NCI_GET_CMD_BUF (tlv_size + 1)) == NULL)
150 p->len = NCI_MSG_HDR_SIZE + tlv_size + 1;
156 UINT8_TO_STREAM (pp, (UINT8) (tlv_size + 1));
157 len = tlv_size;
178 ARRAY_TO_STREAM (pp, p_param_tlvs, tlv_size);
193 UINT8 nci_snd_core_conn_create (UINT8 dest_type, UINT8 num_tlv, UINT8 tlv_size, UINT8 *p_param_tlvs)
197 UINT8 size = NCI_CORE_PARAM_SIZE_CON_CREATE+tlv_size;
213 if (tlv_size)
215 ARRAY_TO_STREAM (pp, p_param_tlvs, tlv_size);
    [all...]
  /external/libnfc-nci/halimpl/bcm2079x/hal/hal/
nfc_hal_dm.c 102 tHAL_NFC_STATUS nfc_hal_dm_set_config (UINT8 tlv_size,
108 UINT16 cmd_len = NCI_MSG_HDR_SIZE + tlv_size + 1;
111 if ((tlv_size == 0)||(p_param_tlvs == NULL))
116 if ((p_buff = (UINT8 *) GKI_getbuf ((UINT16)(NCI_MSG_HDR_SIZE + tlv_size))) != NULL)
122 UINT8_TO_STREAM (p, (UINT8) (tlv_size + 1));
124 rem_len = tlv_size;
155 ARRAY_TO_STREAM (p, p_param_tlvs, tlv_size);
    [all...]
  /external/libnfc-nci/src/nfa/ee/
nfa_ee_act.c 1904 UINT16 tlv_size; local
    [all...]
  /hardware/qcom/audio/legacy/libalsa-intf/
alsa_mixer.c 315 unsigned int tlv_size = DEFAULT_TLV_SIZE; local
323 xtlv = calloc(1, sizeof(struct snd_ctl_tlv) + tlv_size);
327 xtlv->length = tlv_size;
328 memcpy(xtlv->tlv, tlv, tlv_size);
334 if (xtlv->tlv[1] + 2 * sizeof(unsigned int) > tlv_size) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/alsa/
control.h 244 unsigned int *tlv, unsigned int tlv_size);
456 int snd_tlv_parse_dB_info(unsigned int *tlv, unsigned int tlv_size,
541 int snd_hctl_elem_tlv_read(snd_hctl_elem_t *elem, unsigned int *tlv, unsigned int tlv_size);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/
control.h 244 unsigned int *tlv, unsigned int tlv_size);
456 int snd_tlv_parse_dB_info(unsigned int *tlv, unsigned int tlv_size,
541 int snd_hctl_elem_tlv_read(snd_hctl_elem_t *elem, unsigned int *tlv, unsigned int tlv_size);
  /external/libnfc-nci/src/nfa/dm/
nfa_dm_act.c 326 if ((p_nfa_get_confg = (tNFA_GET_CONFIG *) GKI_getbuf ((UINT16) (sizeof (tNFA_GET_CONFIG) + p_data->get_config.tlv_size))) != NULL)
329 p_nfa_get_confg->tlv_size = p_data->get_config.tlv_size;
330 memcpy (p_nfa_get_confg->param_tlvs, p_data->get_config.p_param_tlvs, p_data->get_config.tlv_size);
    [all...]
  /external/libnfc-nci/src/hal/int/
nfc_hal_int.h 487 tHAL_NFC_STATUS nfc_hal_dm_set_config (UINT8 tlv_size, UINT8 *p_param_tlvs, tNFC_HAL_NCI_CBACK *p_cback);
  /external/libnfc-nci/src/nfa/ce/
nfa_ce_act.c 292 UINT8 tlv_size; local
324 tlv_size = (UINT8) (p_params-tlv);
325 nfa_dm_check_set_config (tlv_size, (UINT8 *)tlv, FALSE);
    [all...]
  /packages/apps/Nfc/nci/jni/
NativeNfcManager.cpp 641 eventData->get_config.tlv_size <= sizeof(sConfig))
643 sCurrentConfigLen = eventData->get_config.tlv_size;
644 memcpy(sConfig, eventData->get_config.param_tlvs, eventData->get_config.tlv_size);
    [all...]
  /external/libnfc-nci/src/nfa/include/
nfa_api.h 179 UINT16 tlv_size; /* The length of TLV */ member in struct:__anon28589
    [all...]

Completed in 168 milliseconds