tag | line | file | source code |
which | 31 | kernel/itimer.c | int _getitimer(int which, struct itimerval *value) |
which | 35 | kernel/itimer.c | switch (which) { |
which | 56 | kernel/itimer.c | asmlinkage int sys_getitimer(int which, struct itimerval *value) |
which | 63 | kernel/itimer.c | error = _getitimer(which, &get_buffer); |
which | 73 | kernel/itimer.c | int _setitimer(int which, struct itimerval *value, struct itimerval *ovalue) |
which | 80 | kernel/itimer.c | if (ovalue && (k = _getitimer(which, ovalue)) < 0) |
which | 82 | kernel/itimer.c | switch (which) { |
which | 110 | kernel/itimer.c | asmlinkage int sys_setitimer(int which, struct itimerval *value, struct itimerval *ovalue) |
which | 119 | kernel/itimer.c | error = _setitimer(which, &set_buffer, ovalue ? &get_buffer : 0); |
which | 58 | kernel/sys.c | static int proc_sel(struct task_struct *p, int which, int who) |
which | 60 | kernel/sys.c | switch (which) { |
which | 77 | kernel/sys.c | asmlinkage int sys_setpriority(int which, int who, int niceval) |
which | 83 | kernel/sys.c | if (which > 2 || which < 0) |
which | 90 | kernel/sys.c | if (!*p || !proc_sel(*p, which, who)) |
which | 107 | kernel/sys.c | asmlinkage int sys_getpriority(int which, int who) |
which | 112 | kernel/sys.c | if (which > 2 || which < 0) |
which | 116 | kernel/sys.c | if (!*p || !proc_sel(*p, which, who)) |
which | 221 | net/inet/sock.h | int (*select)(struct sock *sk, int which, |
which | 61 | net/socket.c | static int sock_select(struct inode *inode, struct file *file, int which, select_table *seltable); |