tag | line | file | source code |
tbuf | 322 | ipc/msg.c | struct msqid_ds *msq, tbuf; |
tbuf | 372 | ipc/msg.c | memcpy_fromfs (&tbuf, buf, sizeof (*buf)); |
tbuf | 406 | ipc/msg.c | if (tbuf.msg_qbytes > MSGMNB && !suser()) |
tbuf | 408 | ipc/msg.c | msq->msg_qbytes = tbuf.msg_qbytes; |
tbuf | 409 | ipc/msg.c | ipcp->uid = tbuf.msg_perm.uid; |
tbuf | 410 | ipc/msg.c | ipcp->gid = tbuf.msg_perm.gid; |
tbuf | 412 | ipc/msg.c | (S_IRWXUGO & tbuf.msg_perm.mode); |
tbuf | 154 | ipc/sem.c | struct semid_ds *sma, *buf = NULL, tbuf; |
tbuf | 259 | ipc/sem.c | if ((i = verify_area (VERIFY_READ, array, sizeof tbuf))) |
tbuf | 269 | ipc/sem.c | if ((i = verify_area (VERIFY_WRITE, arg, sizeof tbuf))) |
tbuf | 275 | ipc/sem.c | if ((i = verify_area (VERIFY_READ, buf, sizeof tbuf))) |
tbuf | 277 | ipc/sem.c | memcpy_fromfs (&tbuf, buf, sizeof tbuf); |
tbuf | 310 | ipc/sem.c | ipcp->uid = tbuf.sem_perm.uid; |
tbuf | 311 | ipc/sem.c | ipcp->gid = tbuf.sem_perm.gid; |
tbuf | 313 | ipc/sem.c | | (tbuf.sem_perm.mode & S_IRWXUGO); |
tbuf | 197 | ipc/shm.c | struct shmid_ds *shp, tbuf; |
tbuf | 209 | ipc/shm.c | memcpy_fromfs (&tbuf, buf, sizeof (*buf)); |
tbuf | 302 | ipc/shm.c | ipcp->uid = tbuf.shm_perm.uid; |
tbuf | 303 | ipc/shm.c | ipcp->gid = tbuf.shm_perm.gid; |
tbuf | 305 | ipc/shm.c | | (tbuf.shm_perm.mode & S_IRWXUGO); |
tbuf | 385 | kernel/sys.c | asmlinkage int sys_times(struct tms * tbuf) |
tbuf | 387 | kernel/sys.c | if (tbuf) { |
tbuf | 388 | kernel/sys.c | int error = verify_area(VERIFY_WRITE,tbuf,sizeof *tbuf); |
tbuf | 391 | kernel/sys.c | put_fs_long(current->utime,(unsigned long *)&tbuf->tms_utime); |
tbuf | 392 | kernel/sys.c | put_fs_long(current->stime,(unsigned long *)&tbuf->tms_stime); |
tbuf | 393 | kernel/sys.c | put_fs_long(current->cutime,(unsigned long *)&tbuf->tms_cutime); |
tbuf | 394 | kernel/sys.c | put_fs_long(current->cstime,(unsigned long *)&tbuf->tms_cstime); |