Lines Matching refs:uint8_t
41 typedef uint8_t tLLCP_STATUS;
55 uint8_t max_payload_size; /* 64, 128, 192 or 254 */
56 uint8_t waiting_time;
57 uint8_t* p_gen_bytes;
58 uint8_t gen_bytes_len;
63 uint8_t rw; /* Local receiving window */
102 typedef void(tLLCP_LINK_CBACK)(uint8_t event, uint8_t reason);
131 uint8_t event; /* LLCP_SAP_EVT_DATA_IND */
132 uint8_t local_sap; /* SAP of local device */
133 uint8_t remote_sap; /* SAP of remote device */
134 uint8_t link_type; /* link type */
138 uint8_t event; /* LLCP_SAP_EVT_CONNECT_IND */
139 uint8_t server_sap; /* SAP of local server */
140 uint8_t local_sap; /* SAP of local device */
141 uint8_t remote_sap; /* SAP of remote device */
143 uint8_t rw; /* RW of peer device */
148 uint8_t event; /* LLCP_SAP_EVT_CONNECT_RESP */
149 uint8_t local_sap; /* SAP of local device */
150 uint8_t remote_sap; /* SAP of remote device */
152 uint8_t rw; /* RW of peer device */
157 uint8_t event; /* LLCP_SAP_EVT_DISCONNECT_IND */
158 uint8_t local_sap; /* SAP of local device */
159 uint8_t remote_sap; /* SAP of remote device */
163 uint8_t event; /* LLCP_SAP_EVT_DISCONNECT_RESP */
164 uint8_t local_sap; /* SAP of local device */
165 uint8_t remote_sap; /* SAP of remote device */
166 uint8_t reason; /* Reason of DM PDU if not timeout */
170 uint8_t event; /* LLCP_SAP_EVT_CONGEST */
171 uint8_t local_sap; /* SAP of local device */
172 uint8_t remote_sap; /* SAP of remote device */
174 uint8_t link_type; /* congested link type */
178 uint8_t event; /* LLCP_SAP_EVT_LINK_STATUS */
179 uint8_t local_sap; /* SAP of local device */
185 uint8_t event; /* LLCP_SAP_EVT_TX_COMPLETE */
186 uint8_t local_sap; /* SAP of local device */
187 uint8_t remote_sap; /* SAP of remote device */
191 uint8_t event; /* event */
192 uint8_t local_sap; /* SAP of local device */
211 typedef void(tLLCP_SDP_CBACK)(uint8_t tid, uint8_t remote_sap);
240 extern void LLCP_SetConfig(uint16_t link_miu, uint8_t opt, uint8_t wt,
264 extern void LLCP_GetConfig(uint16_t* p_link_miu, uint8_t* p_opt, uint8_t* p_wt,
297 extern void LLCP_GetDiscoveryConfig(uint8_t* p_wt, uint8_t* p_gen_bytes,
298 uint8_t* p_gen_bytes_len);
351 extern uint8_t LLCP_RegisterServer(uint8_t reg_sap, uint8_t link_type,
368 extern uint8_t LLCP_RegisterClient(uint8_t link_type,
381 extern tLLCP_STATUS LLCP_Deregister(uint8_t sap);
393 extern bool LLCP_IsLogicalLinkCongested(uint8_t local_sap,
394 uint8_t num_pending_ui_pdu,
395 uint8_t total_pending_ui_pdu,
396 uint8_t total_pending_i_pdu);
410 extern tLLCP_STATUS LLCP_SendUI(uint8_t ssap, uint8_t dsap, NFC_HDR* p_buf);
427 extern bool LLCP_ReadLogicalLinkData(uint8_t local_sap, uint32_t max_data_len,
428 uint8_t* p_remote_sap,
429 uint32_t* p_data_len, uint8_t* p_data);
441 extern uint32_t LLCP_FlushLogicalLinkRxData(uint8_t local_sap);
455 extern tLLCP_STATUS LLCP_ConnectReq(uint8_t reg_sap, uint8_t dsap,
469 extern tLLCP_STATUS LLCP_ConnectCfm(uint8_t local_sap, uint8_t remote_sap,
488 extern tLLCP_STATUS LLCP_ConnectReject(uint8_t local_sap, uint8_t remote_sap,
489 uint8_t reason);
501 extern bool LLCP_IsDataLinkCongested(uint8_t local_sap, uint8_t remote_sap,
502 uint8_t num_pending_i_pdu,
503 uint8_t total_pending_ui_pdu,
504 uint8_t total_pending_i_pdu);
517 extern tLLCP_STATUS LLCP_SendData(uint8_t local_sap, uint8_t remote_sap,
535 extern bool LLCP_ReadDataLinkData(uint8_t local_sap, uint8_t remote_sap,
537 uint8_t* p_data);
549 extern uint32_t LLCP_FlushDataLinkRxData(uint8_t local_sap, uint8_t remote_sap);
561 extern tLLCP_STATUS LLCP_DisconnectReq(uint8_t local_sap, uint8_t remote_sap,
576 extern tLLCP_STATUS LLCP_SetTxCompleteNtf(uint8_t local_sap,
577 uint8_t remote_sap);
589 extern tLLCP_STATUS LLCP_SetLocalBusyStatus(uint8_t local_sap,
590 uint8_t remote_sap, bool is_busy);
614 extern uint8_t LLCP_GetRemoteLSC(void);
626 extern uint8_t LLCP_GetRemoteVersion(void);
652 uint8_t* p_tid);
676 extern void LLCP_SetTestParams(uint8_t version, uint16_t wks);