Lines Matching refs:user_msgp
714 user_addr_t user_msgp = uap->msgp; in msgsnd_nocancel() local
732 printf("call to msgsnd(%d, 0x%qx, %ld, %d)\n", msqid, user_msgp, msgsz, in msgsnd_nocancel()
982 eval = copyin(user_msgp, &msgtype, sizeof(msgtype)); in msgsnd_nocancel()
985 user_msgp = user_msgp + sizeof(msgtype); /* ptr math */ in msgsnd_nocancel()
989 eval = copyin(user_msgp, &msg_type32, sizeof(msg_type32)); in msgsnd_nocancel()
992 user_msgp = user_msgp + sizeof(msg_type32); /* ptr math */ in msgsnd_nocancel()
1040 eval = copyin(user_msgp, &msgpool[next * msginfo.msgssz], tlen); in msgsnd_nocancel()
1054 user_msgp = user_msgp + tlen; /* ptr math */ in msgsnd_nocancel()
1142 user_addr_t user_msgp = uap->msgp; in msgrcv_nocancel() local
1162 printf("call to msgrcv(%d, 0x%qx, %ld, %ld, %d)\n", msqid, user_msgp, in msgrcv_nocancel()
1409 eval = copyout(&msgtype, user_msgp, sizeof(msgtype)); in msgrcv_nocancel()
1411 user_msgp = user_msgp + sizeof(msgtype); /* ptr math */ in msgrcv_nocancel()
1415 eval = copyout(&msg_type32, user_msgp, sizeof(msg_type32)); in msgrcv_nocancel()
1417 user_msgp = user_msgp + sizeof(msg_type32); /* ptr math */ in msgrcv_nocancel()
1452 user_msgp, tlen); in msgrcv_nocancel()
1463 user_msgp = user_msgp + tlen; /* ptr math */ in msgrcv_nocancel()