Home
last modified time | relevance | path

Searched refs:msqid (Results 1 – 2 of 2) sorted by relevance

/hardware/nxp/nfc/halimpl/tml/
DphDal4Nfc_messageQueueLib.cc85 void phDal4Nfc_msgrelease(intptr_t msqid) { in phDal4Nfc_msgrelease() argument
86 phDal4Nfc_message_queue_t* pQueue = (phDal4Nfc_message_queue_t*)msqid; in phDal4Nfc_msgrelease()
116 int phDal4Nfc_msgctl(intptr_t msqid, int cmd, void* buf) { in phDal4Nfc_msgctl() argument
121 if (msqid == 0) return -1; in phDal4Nfc_msgctl()
123 pQueue = (phDal4Nfc_message_queue_t*)msqid; in phDal4Nfc_msgctl()
161 intptr_t phDal4Nfc_msgsnd(intptr_t msqid, phLibNfc_Message_t* msg, int msgflg) { in phDal4Nfc_msgsnd() argument
166 if ((msqid == 0) || (msg == NULL)) return -1; in phDal4Nfc_msgsnd()
168 pQueue = (phDal4Nfc_message_queue_t*)msqid; in phDal4Nfc_msgsnd()
211 int phDal4Nfc_msgrcv(intptr_t msqid, phLibNfc_Message_t* msg, long msgtyp, in phDal4Nfc_msgrcv() argument
217 if ((msqid == 0) || (msg == NULL)) return -1; in phDal4Nfc_msgrcv()
[all …]
DphDal4Nfc_messageQueueLib.h28 void phDal4Nfc_msgrelease(intptr_t msqid);
29 int phDal4Nfc_msgctl(intptr_t msqid, int cmd, void* buf);
30 intptr_t phDal4Nfc_msgsnd(intptr_t msqid, phLibNfc_Message_t* msg, int msgflg);
31 int phDal4Nfc_msgrcv(intptr_t msqid, phLibNfc_Message_t* msg, long msgtyp,