Home
last modified time | relevance | path

Searched refs:tNFC_HAL_MSG (Results 1 – 6 of 6) sorted by relevance

/hardware/samsung/nfc/halimpl/include/
Dhal.h179 void nfc_hal_power_sm(tNFC_HAL_MSG* msg);
181 void nfc_hal_grant_sm(tNFC_HAL_MSG* msg);
182 void nfc_hal_service_sm(tNFC_HAL_MSG* msg);
183 void nfc_hal_vs_sm(tNFC_HAL_MSG* msg);
184 void nfc_hal_postinit_sm(tNFC_HAL_MSG* msg);
185 void nfc_hal_open_sm(tNFC_HAL_MSG* msg);
199 int fw_read_payload(tNFC_HAL_MSG* msg);
208 int nci_read_payload(tNFC_HAL_MSG* msg);
Dhal_msg.h116 } tNFC_HAL_MSG; typedef
/hardware/samsung/nfc/halimpl/src/
Dhal_task.cc37 static void nfc_hal_state_switch(tNFC_HAL_MSG* msg, eHAL_STATE state) { in nfc_hal_state_switch()
38 tNFC_HAL_MSG* new_msg; in nfc_hal_state_switch()
40 new_msg = (tNFC_HAL_MSG*)OSI_mem_get(HAL_EVT_SIZE); in nfc_hal_state_switch()
80 void nfc_hal_open_sm(tNFC_HAL_MSG* msg) { in nfc_hal_open_sm()
125 void nfc_hal_postinit_sm(tNFC_HAL_MSG* msg) { in nfc_hal_postinit_sm()
214 void nfc_hal_vs_sm(tNFC_HAL_MSG* msg) { in nfc_hal_vs_sm()
243 void nfc_hal_service_sm(tNFC_HAL_MSG* msg) { in nfc_hal_service_sm()
282 void nfc_hal_grant_sm(tNFC_HAL_MSG* msg) { in nfc_hal_grant_sm()
314 void nfc_hal_power_sm(tNFC_HAL_MSG* msg) { in nfc_hal_power_sm()
334 tNFC_HAL_MSG* msg; in nfc_hal_task()
[all …]
Dhal.cc152 tNFC_HAL_MSG* msg; in nfc_hal_open()
177 msg = (tNFC_HAL_MSG*)OSI_mem_get(HAL_EVT_SIZE); in nfc_hal_open()
187 tNFC_HAL_MSG* msg; in nfc_hal_close()
198 msg = (tNFC_HAL_MSG*)OSI_mem_get(HAL_EVT_SIZE); in nfc_hal_close()
221 tNFC_HAL_MSG* msg; in nfc_hal_write()
232 msg = (tNFC_HAL_MSG*)OSI_mem_get(size + HAL_EVT_SIZE); in nfc_hal_write()
251 tNFC_HAL_MSG* msg; in nfc_hal_core_initialized()
256 msg = (tNFC_HAL_MSG*)OSI_mem_get(size + HAL_EVT_SIZE); in nfc_hal_core_initialized()
284 tNFC_HAL_MSG* msg; in nfc_hal_control_granted()
288 msg = (tNFC_HAL_MSG*)OSI_mem_get(HAL_EVT_SIZE); in nfc_hal_control_granted()
[all …]
Ddevice.cc234 tNFC_HAL_MSG* msg = NULL; in read_thread()
306 msg = (tNFC_HAL_MSG*)OSI_mem_get(NCI_CTRL_SIZE); in read_thread()
Dhal_nci.cc127 int nci_read_payload(tNFC_HAL_MSG* msg) { in nci_read_payload()