OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tUIPC_CH_ID
(Results
1 - 2
of
2
) sorted by null
/external/bluetooth/bluedroid/udrv/include/
uipc.h
33
typedef UINT8
tUIPC_CH_ID
;
53
typedef void (tUIPC_RCV_CBACK)(
tUIPC_CH_ID
ch_id, tUIPC_EVENT event); /* points to BT_HDR which describes event type and length of data; len contains the number of bytes of entire message (sizeof(BT_HDR) + offset + size of data) */
83
UDRV_API extern BOOLEAN UIPC_Open(
tUIPC_CH_ID
ch_id, tUIPC_RCV_CBACK *p_cback);
94
UDRV_API extern void UIPC_Close(
tUIPC_CH_ID
ch_id);
106
UDRV_API extern BOOLEAN UIPC_SendBuf(
tUIPC_CH_ID
ch_id, BT_HDR *p_msg);
117
UDRV_API extern BOOLEAN UIPC_Send(
tUIPC_CH_ID
ch_id, UINT16 msg_evt, UINT8 *p_buf, UINT16 msglen);
128
UDRV_API extern UINT32 UIPC_Read(
tUIPC_CH_ID
ch_id, UINT16 *p_msg_evt, UINT8 *p_buf, UINT32 len);
139
UDRV_API extern BOOLEAN UIPC_Ioctl(
tUIPC_CH_ID
ch_id, UINT32 request, void *param);
/external/libnfc-nci/src/udrv/include/
uipc.h
63
typedef UINT8
tUIPC_CH_ID
;
93
UDRV_API extern BOOLEAN UIPC_Open(
tUIPC_CH_ID
ch_id, tUIPC_RCV_CBACK *p_cback);
104
UDRV_API extern void UIPC_Close(
tUIPC_CH_ID
ch_id);
116
UDRV_API extern BOOLEAN UIPC_SendBuf(
tUIPC_CH_ID
ch_id, BT_HDR *p_msg);
127
UDRV_API extern BOOLEAN UIPC_Send(
tUIPC_CH_ID
ch_id, UINT16 msg_evt, UINT8 *p_buf, UINT16 msglen);
138
UDRV_API extern UINT32 UIPC_Read(
tUIPC_CH_ID
ch_id, UINT16 *p_msg_evt, UINT8 *p_buf, UINT32 len);
149
UDRV_API extern BOOLEAN UIPC_Ioctl(
tUIPC_CH_ID
ch_id, UINT32 request, void *param);
Completed in 817 milliseconds