• Home
  • Raw
  • Download

Lines Matching refs:protocol

221     conn_evt_data.ndef_detect.protocol = p_rw_data->ndef.protocol;  in nfa_rw_handle_ndef_detect()
284 conn_evt_data.ndef_detect.protocol = p_rw_data->ndef.protocol; in nfa_rw_handle_ndef_detect()
341 conn_evt_data.tlv_detect.protocol = p_rw_data->tlv.protocol; in nfa_rw_handle_tlv_detect()
393 (nfa_rw_cb.protocol == NFC_PROTOCOL_T2T) && in nfa_rw_handle_sleep_wakeup_rsp()
403 activate_params.protocol = nfa_rw_cb.protocol; in nfa_rw_handle_sleep_wakeup_rsp()
1533 tNFC_PROTOCOL protocol = nfa_rw_cb.protocol; in nfa_rw_start_ndef_detection() local
1536 if (NFC_PROTOCOL_T1T == protocol) { in nfa_rw_start_ndef_detection()
1539 } else if (NFC_PROTOCOL_T2T == protocol) { in nfa_rw_start_ndef_detection()
1544 } else if (NFC_PROTOCOL_T3T == protocol) { in nfa_rw_start_ndef_detection()
1547 } else if (NFC_PROTOCOL_ISO_DEP == protocol) { in nfa_rw_start_ndef_detection()
1550 } else if (NFC_PROTOCOL_T5T == protocol) { in nfa_rw_start_ndef_detection()
1553 } else if (NFC_PROTOCOL_MIFARE == protocol) { in nfa_rw_start_ndef_detection()
1570 tNFC_PROTOCOL protocol = nfa_rw_cb.protocol; in nfa_rw_start_ndef_read() local
1606 if (NFC_PROTOCOL_T1T == protocol) { in nfa_rw_start_ndef_read()
1610 } else if (NFC_PROTOCOL_T2T == protocol) { in nfa_rw_start_ndef_read()
1616 } else if (NFC_PROTOCOL_T3T == protocol) { in nfa_rw_start_ndef_read()
1619 } else if (NFC_PROTOCOL_ISO_DEP == protocol) { in nfa_rw_start_ndef_read()
1622 } else if (NFC_PROTOCOL_T5T == protocol) { in nfa_rw_start_ndef_read()
1625 } else if (NFC_PROTOCOL_MIFARE == protocol) { in nfa_rw_start_ndef_read()
1670 tNFC_PROTOCOL protocol = nfa_rw_cb.protocol; in nfa_rw_start_ndef_write() local
1684 if (NFC_PROTOCOL_T1T == protocol) { in nfa_rw_start_ndef_write()
1688 } else if (NFC_PROTOCOL_T2T == protocol) { in nfa_rw_start_ndef_write()
1694 } else if (NFC_PROTOCOL_T3T == protocol) { in nfa_rw_start_ndef_write()
1697 } else if (NFC_PROTOCOL_ISO_DEP == protocol) { in nfa_rw_start_ndef_write()
1701 } else if (NFC_PROTOCOL_T5T == protocol) { in nfa_rw_start_ndef_write()
1705 } else if (NFC_PROTOCOL_MIFARE == protocol) { in nfa_rw_start_ndef_write()
1791 if (nfa_rw_cb.protocol == NFC_PROTOCOL_T1T) { in nfa_rw_write_ndef()
1826 tNFC_PROTOCOL protocol = nfa_rw_cb.protocol; in nfa_rw_presence_check() local
1833 if (NFC_PROTOCOL_T1T == protocol) { in nfa_rw_presence_check()
1836 } else if (NFC_PROTOCOL_T2T == protocol) { in nfa_rw_presence_check()
1845 } else if (NFC_PROTOCOL_T3T == protocol) { in nfa_rw_presence_check()
1848 } else if (NFC_PROTOCOL_ISO_DEP == protocol) { in nfa_rw_presence_check()
1876 } else if (NFC_PROTOCOL_T5T == protocol) { in nfa_rw_presence_check()
1952 tNFC_PROTOCOL protocol = nfa_rw_cb.protocol; in nfa_rw_format_tag() local
1955 if (protocol == NFC_PROTOCOL_T1T) { in nfa_rw_format_tag()
1957 } else if ((protocol == NFC_PROTOCOL_T2T) && in nfa_rw_format_tag()
1960 } else if (protocol == NFC_PROTOCOL_T3T) { in nfa_rw_format_tag()
1962 } else if (protocol == NFC_PROTOCOL_T5T) { in nfa_rw_format_tag()
1964 } else if (protocol == NFC_PROTOCOL_ISO_DEP) { in nfa_rw_format_tag()
1966 } else if (protocol == NFC_PROTOCOL_MIFARE) { in nfa_rw_format_tag()
1986 switch (nfa_rw_cb.protocol) { in nfa_rw_detect_tlv()
2016 tNFC_PROTOCOL protocol = nfa_rw_cb.protocol; in nfa_rw_config_tag_ro() local
2021 if (NFC_PROTOCOL_T1T == protocol) { in nfa_rw_config_tag_ro()
2030 } else if (NFC_PROTOCOL_T2T == protocol) { in nfa_rw_config_tag_ro()
2035 } else if (NFC_PROTOCOL_T3T == protocol) { in nfa_rw_config_tag_ro()
2038 } else if (NFC_PROTOCOL_ISO_DEP == protocol) { in nfa_rw_config_tag_ro()
2041 } else if (NFC_PROTOCOL_T5T == protocol) { in nfa_rw_config_tag_ro()
2526 (nfa_rw_cb.protocol == NFC_PROTOCOL_T2T) && in nfa_rw_activate_ntf()
2541 nfa_rw_cb.protocol = p_activate_params->protocol; in nfa_rw_activate_ntf()
2562 if ((p_activate_params->protocol != NFA_PROTOCOL_T1T) && in nfa_rw_activate_ntf()
2563 (p_activate_params->protocol != NFA_PROTOCOL_T2T) && in nfa_rw_activate_ntf()
2564 (p_activate_params->protocol != NFA_PROTOCOL_T3T) && in nfa_rw_activate_ntf()
2565 (p_activate_params->protocol != NFA_PROTOCOL_T5T)) { in nfa_rw_activate_ntf()
2566 nfa_rw_cb.protocol = NFA_PROTOCOL_INVALID; in nfa_rw_activate_ntf()
2569 if (p_activate_params->protocol != NFA_PROTOCOL_ISO_DEP) { in nfa_rw_activate_ntf()
2570 nfa_rw_cb.protocol = NFA_PROTOCOL_INVALID; in nfa_rw_activate_ntf()
2574 if (nfa_rw_cb.protocol == NFA_PROTOCOL_INVALID) { in nfa_rw_activate_ntf()
2588 p_activate_params->protocol, in nfa_rw_activate_ntf()
2611 if (NFC_PROTOCOL_T1T == nfa_rw_cb.protocol) { in nfa_rw_activate_ntf()
2632 } else if (NFC_PROTOCOL_T2T == nfa_rw_cb.protocol) { in nfa_rw_activate_ntf()
2636 } else if (NFC_PROTOCOL_T3T == nfa_rw_cb.protocol) { in nfa_rw_activate_ntf()
2653 } else if (NFA_PROTOCOL_T5T == nfa_rw_cb.protocol) { in nfa_rw_activate_ntf()