Searched defs:pSocket (Results 1 - 3 of 3) sorted by relevance

/external/libnfc-nxp/src/
H A DphFriNfc_LlcpTransport_Connectionless.c35 NFCSTATUS phFriNfc_LlcpTransport_Connectionless_HandlePendingOperations(phFriNfc_LlcpTransport_Socket_t *pSocket) argument
40 if ((pSocket->pfSocketSend_Cb != NULL) &&
41 (pSocket->psTransport->bSendPending == FALSE))
44 pSocket->sLlcpHeader.dsap = pSocket->socket_dSap;
45 pSocket->sLlcpHeader.ptype = PHFRINFC_LLCP_PTYPE_UI;
46 pSocket->sLlcpHeader.ssap = pSocket->socket_sSap;
49 status = phFriNfc_LlcpTransport_LinkSend(pSocket->psTransport,
50 &pSocket
71 phFriNfc_LlcpTransport_Socket_t * pSocket = NULL; local
[all...]
H A DphFriNfc_LlcpTransport_Connection.c124 NFCSTATUS phFriNfc_LlcpTransport_ConnectionOriented_HandlePendingOperations(phFriNfc_LlcpTransport_Socket_t *pSocket) argument
127 phFriNfc_LlcpTransport_t *psTransport = pSocket->psTransport;
130 if(pSocket->bSocketSendPending == TRUE)
133 if(CHECK_SEND_RW(pSocket))
135 result = static_performSendInfo(pSocket);
139 else if(pSocket->bSocketRRPending == TRUE)
142 pSocket->bSocketRRPending = FALSE;
145 result = phFriNfc_Llcp_Send_ReceiveReady_Frame(pSocket);
148 else if(pSocket->bSocketRNRPending == TRUE)
151 pSocket
[all...]
H A DphFriNfc_LlcpTransport.c195 phFriNfc_LlcpTransport_Socket_t * pSocket; local
200 pSocket = &psTransport->pSocketTable[index];
203 if((((pSocket->eSocket_Type == phFriNfc_LlcpTransport_eConnectionOriented)
204 && (pSocket->eSocket_State == phFriNfc_LlcpTransportSocket_eSocketRegistered))
205 || ((pSocket->eSocket_Type == phFriNfc_LlcpTransport_eConnectionLess)
206 && (pSocket->eSocket_State == phFriNfc_LlcpTransportSocket_eSocketBound)))
208 (pServiceName->length == pSocket->sServiceName.length)
209 && !memcmp(pServiceName->buffer, pSocket->sServiceName.buffer, pServiceName->length))
229 pCachedServiceName->nSap = pSocket->socket_sSap;
242 return pSocket;
329 phFriNfc_LlcpTransport_Socket_t *pSocket; local
[all...]

Completed in 44 milliseconds