taglinefilesource code
tbuf322ipc/msg.cstruct msqid_ds *msq, tbuf;
tbuf372ipc/msg.cmemcpy_fromfs (&tbuf, buf, sizeof (*buf));
tbuf406ipc/msg.cif (tbuf.msg_qbytes > MSGMNB && !suser())
tbuf408ipc/msg.cmsq->msg_qbytes = tbuf.msg_qbytes;
tbuf409ipc/msg.cipcp->uid = tbuf.msg_perm.uid;
tbuf410ipc/msg.cipcp->gid =  tbuf.msg_perm.gid;
tbuf412ipc/msg.c(S_IRWXUGO & tbuf.msg_perm.mode);
tbuf154ipc/sem.cstruct semid_ds *sma, *buf = NULL, tbuf;
tbuf259ipc/sem.cif ((i = verify_area (VERIFY_READ, array, sizeof tbuf)))
tbuf275ipc/sem.cif ((i = verify_area (VERIFY_READ, buf, sizeof tbuf)))
tbuf277ipc/sem.cmemcpy_fromfs (&tbuf, buf, sizeof tbuf);
tbuf310ipc/sem.cipcp->uid = tbuf.sem_perm.uid;
tbuf311ipc/sem.cipcp->gid = tbuf.sem_perm.gid;
tbuf313ipc/sem.c| (tbuf.sem_perm.mode & S_IRWXUGO);
tbuf197ipc/shm.cstruct shmid_ds *shp, tbuf;
tbuf209ipc/shm.cmemcpy_fromfs (&tbuf, buf, sizeof (*buf));
tbuf302ipc/shm.cipcp->uid = tbuf.shm_perm.uid;
tbuf303ipc/shm.cipcp->gid = tbuf.shm_perm.gid;
tbuf305ipc/shm.c| (tbuf.shm_perm.mode & S_IRWXUGO);
tbuf390kernel/sys.casmlinkage int sys_times(struct tms * tbuf)
tbuf392kernel/sys.cif (tbuf) {
tbuf393kernel/sys.cint error = verify_area(VERIFY_WRITE,tbuf,sizeof *tbuf);
tbuf396kernel/sys.cput_fs_long(current->utime,(unsigned long *)&tbuf->tms_utime);
tbuf397kernel/sys.cput_fs_long(current->stime,(unsigned long *)&tbuf->tms_stime);
tbuf398kernel/sys.cput_fs_long(current->cutime,(unsigned long *)&tbuf->tms_cutime);
tbuf399kernel/sys.cput_fs_long(current->cstime,(unsigned long *)&tbuf->tms_cstime);