tag | line | file | source code |
which | 32 | kernel/itimer.c | int _getitimer(int which, struct itimerval *value) |
which | 36 | kernel/itimer.c | switch (which) { |
which | 57 | kernel/itimer.c | asmlinkage int sys_getitimer(int which, struct itimerval *value) |
which | 64 | kernel/itimer.c | error = _getitimer(which, &get_buffer); |
which | 74 | kernel/itimer.c | int _setitimer(int which, struct itimerval *value, struct itimerval *ovalue) |
which | 81 | kernel/itimer.c | if (ovalue && (k = _getitimer(which, ovalue)) < 0) |
which | 83 | kernel/itimer.c | switch (which) { |
which | 111 | kernel/itimer.c | asmlinkage int sys_setitimer(int which, struct itimerval *value, struct itimerval *ovalue) |
which | 130 | kernel/itimer.c | error = _setitimer(which, &set_buffer, ovalue ? &get_buffer : 0); |
which | 38 | kernel/sys.c | static int proc_sel(struct task_struct *p, int which, int who) |
which | 40 | kernel/sys.c | switch (which) { |
which | 57 | kernel/sys.c | asmlinkage int sys_setpriority(int which, int who, int niceval) |
which | 63 | kernel/sys.c | if (which > 2 || which < 0) |
which | 70 | kernel/sys.c | if (!*p || !proc_sel(*p, which, who)) |
which | 87 | kernel/sys.c | asmlinkage int sys_getpriority(int which, int who) |
which | 92 | kernel/sys.c | if (which > 2 || which < 0) |
which | 96 | kernel/sys.c | if (!*p || !proc_sel(*p, which, who)) |
which | 244 | net/inet/sock.h | int (*select)(struct sock *sk, int which, |
which | 77 | net/socket.c | static int sock_select(struct inode *inode, struct file *file, int which, select_table *seltable); |