/external/libnfc-nci/halimpl/pn54x/tml/ |
D | phDal4Nfc_messageQueueLib.c | 90 void phDal4Nfc_msgrelease(intptr_t msqid) in phDal4Nfc_msgrelease() argument 92 phDal4Nfc_message_queue_t * pQueue = (phDal4Nfc_message_queue_t*)msqid; in phDal4Nfc_msgrelease() 123 int phDal4Nfc_msgctl(intptr_t msqid, int cmd, void *buf) in phDal4Nfc_msgctl() argument 129 if (msqid == 0) in phDal4Nfc_msgctl() 132 pQueue = (phDal4Nfc_message_queue_t *) msqid; in phDal4Nfc_msgctl() 173 intptr_t phDal4Nfc_msgsnd(intptr_t msqid, phLibNfc_Message_t * msg, int msgflg) in phDal4Nfc_msgsnd() argument 179 if ((msqid == 0) || (msg == NULL) ) in phDal4Nfc_msgsnd() 183 pQueue = (phDal4Nfc_message_queue_t *) msqid; in phDal4Nfc_msgsnd() 230 int phDal4Nfc_msgrcv(intptr_t msqid, phLibNfc_Message_t * msg, long msgtyp, int msgflg) in phDal4Nfc_msgrcv() argument 236 if ((msqid == 0) || (msg == NULL)) in phDal4Nfc_msgrcv() [all …]
|
D | phDal4Nfc_messageQueueLib.h | 28 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, int msgflg);
|
/external/strace/tests/ |
D | ipc_msgbuf.c | 52 int msqid = msgget(IPC_PRIVATE, IPC_CREAT | S_IRWXU); in main() local 53 if (msqid == -1) in main() 55 if (msgsnd(msqid, &msg, msgsz, 0) == -1) in main() 57 if (msgrcv(msqid, &msg, msgsz, mtype, 0) != msgsz) in main() 59 if (msgctl(msqid, IPC_RMID, 0) == -1) in main() 64 msgctl(msqid, IPC_RMID, 0); in main()
|
/external/libnfc-nxp/Linux_x86/ |
D | phDal4Nfc_messageQueueLib.c | 96 int phDal4Nfc_msgctl ( intptr_t msqid, int cmd, void *buf ) in phDal4Nfc_msgctl() argument 101 if (msqid == 0) in phDal4Nfc_msgctl() 104 pQueue = (phDal4Nfc_message_queue_t *)msqid; in phDal4Nfc_msgctl() 139 int phDal4Nfc_msgsnd (intptr_t msqid, void * msgp, size_t msgsz, int msgflg) in phDal4Nfc_msgsnd() argument 145 if ((msqid == 0) || (msgp == NULL) || (msgsz == 0)) in phDal4Nfc_msgsnd() 151 pQueue = (phDal4Nfc_message_queue_t *)msqid; in phDal4Nfc_msgsnd() 190 int phDal4Nfc_msgrcv (intptr_t msqid, void * msgp, size_t msgsz, long msgtyp, int msgflg) in phDal4Nfc_msgrcv() argument 195 if ((msqid == 0) || (msgp == NULL)) in phDal4Nfc_msgrcv() 201 pQueue = (phDal4Nfc_message_queue_t *)msqid; in phDal4Nfc_msgrcv()
|
/external/libnfc-nxp/src/ |
D | phDal4Nfc_messageQueueLib.h | 45 int phDal4Nfc_msgctl(intptr_t msqid, int cmd, void *buf); 46 int phDal4Nfc_msgsnd(intptr_t msqid, void * msgp, size_t msgsz, int msgflg); 47 int phDal4Nfc_msgrcv(intptr_t msqid, void * msgp, size_t msgsz, long msgtyp, int msgflg);
|
/external/toybox/toys/pending/ |
D | ipcs.c | 341 int max_nr, i, msqid; in msg_array() local 387 if ((msqid = msgctl(i, MSG_STAT, &buf)) < 0 ) continue; in msg_array() 390 if (pw) printf("%-8d %-10.10s", msqid, pw->pw_name); in msg_array() 391 else printf("%-8d %-10d", msqid, buf.msg_perm.uid); in msg_array() 399 if (pw) printf("%-8d %-10.10s", msqid, pw->pw_name); in msg_array() 400 else printf("%-8d %-10d", msqid, buf.msg_perm.uid); in msg_array() 403 printf("%-10d %-10o", msqid, buf.msg_perm.mode & 0777); in msg_array() 414 if (pw) printf("%-10d %-10.10s", msqid, pw->pw_name); in msg_array() 415 else printf("%-10d %-10d", msqid, buf.msg_perm.uid); in msg_array()
|
/external/compiler-rt/include/sanitizer/ |
D | linux_syscall_hooks.h | 1286 #define __sanitizer_syscall_pre_msgsnd(msqid, msgp, msgsz, msgflg) \ argument 1287 __sanitizer_syscall_pre_impl_msgsnd((long)(msqid), (long)(msgp), \ 1289 #define __sanitizer_syscall_post_msgsnd(res, msqid, msgp, msgsz, msgflg) \ argument 1290 __sanitizer_syscall_post_impl_msgsnd(res, (long)(msqid), (long)(msgp), \ 1292 #define __sanitizer_syscall_pre_msgrcv(msqid, msgp, msgsz, msgtyp, msgflg) \ argument 1293 __sanitizer_syscall_pre_impl_msgrcv((long)(msqid), (long)(msgp), \ 1296 #define __sanitizer_syscall_post_msgrcv(res, msqid, msgp, msgsz, msgtyp, \ argument 1298 __sanitizer_syscall_post_impl_msgrcv(res, (long)(msqid), (long)(msgp), \ 1301 #define __sanitizer_syscall_pre_msgctl(msqid, cmd, buf) \ argument 1302 __sanitizer_syscall_pre_impl_msgctl((long)(msqid), (long)(cmd), (long)(buf)) [all …]
|
/external/valgrind/coregrind/m_syswrap/ |
D | syswrap-tilegx-linux.c | 988 int, msqid, struct msgbuf *, msgp, vki_size_t, msgsz, in PRE() 1000 int, msqid, struct msgbuf *, msgp, vki_size_t, msgsz, in PRE() 1015 int, msqid, int, cmd, struct msqid_ds *, buf); in PRE()
|
D | syswrap-linux.c | 3844 int, msqid, struct msgbuf *, msgp, vki_size_t, msgsz, int, msgflg); in PRE() 3855 int, msqid, struct msgbuf *, msgp, vki_size_t, msgsz, in PRE() 3870 int, msqid, int, cmd, struct msqid_ds *, buf); in PRE()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_syscalls.inc | 2075 PRE_SYSCALL(msgsnd)(long msqid, void *msgp, long msgsz, long msgflg) { 2079 POST_SYSCALL(msgsnd)(long res, long msqid, void *msgp, long msgsz, 2082 PRE_SYSCALL(msgrcv)(long msqid, void *msgp, long msgsz, long msgtyp, 2085 POST_SYSCALL(msgrcv)(long res, long msqid, void *msgp, long msgsz, long msgtyp, 2093 PRE_SYSCALL(msgctl)(long msqid, long cmd, void *buf) {} 2095 POST_SYSCALL(msgctl)(long res, long msqid, long cmd, void *buf) {
|