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 | int sys_getitimer(int which, struct itimerval *value) |
which | 63 | kernel/itimer.c | k = _getitimer(which, &get_buffer); |
which | 71 | kernel/itimer.c | int _setitimer(int which, struct itimerval *value, struct itimerval *ovalue) |
which | 78 | kernel/itimer.c | if (ovalue && (k = _getitimer(which, ovalue)) < 0) |
which | 80 | kernel/itimer.c | switch (which) { |
which | 99 | kernel/itimer.c | int sys_setitimer(int which, struct itimerval *value, struct itimerval *ovalue) |
which | 108 | kernel/itimer.c | k = _setitimer(which, &set_buffer, ovalue ? &get_buffer : 0); |
which | 35 | kernel/sys.c | static int proc_sel(struct task_struct *p, int which, int who) |
which | 37 | kernel/sys.c | switch (which) { |
which | 54 | kernel/sys.c | int sys_setpriority(int which, int who, int niceval) |
which | 60 | kernel/sys.c | if (which > 2 || which < 0) |
which | 67 | kernel/sys.c | if (!*p || !proc_sel(*p, which, who)) |
which | 84 | kernel/sys.c | int sys_getpriority(int which, int who) |
which | 89 | kernel/sys.c | if (which > 2 || which < 0) |
which | 93 | kernel/sys.c | if (!*p || !proc_sel(*p, which, who)) |
which | 49 | net/socket.c | static int sock_select(struct inode *inode, struct file *file, int which, select_table *seltable); |