/kernel/time/ |
D | itimer.c | 79 int do_getitimer(int which, struct itimerval *value) in do_getitimer() argument 83 switch (which) { in do_getitimer() 103 SYSCALL_DEFINE2(getitimer, int, which, struct itimerval __user *, value) in SYSCALL_DEFINE2() argument 109 error = do_getitimer(which, &get_buffer); in SYSCALL_DEFINE2() 190 int do_setitimer(int which, struct itimerval *value, struct itimerval *ovalue) in do_setitimer() argument 203 switch (which) { in do_setitimer() 278 SYSCALL_DEFINE3(setitimer, int, which, struct itimerval __user *, value, in SYSCALL_DEFINE3() argument 294 error = do_setitimer(which, &set_buffer, ovalue ? &get_buffer : NULL); in SYSCALL_DEFINE3()
|
D | timeconst.bc | 28 which brings the mul value into the range 2^b-1 <= x < 2^b. Such
|
D | Kconfig | 153 int "Number of CPUs above which large-system approach is used"
|
/kernel/ |
D | utsname_sysctl.c | 22 char *which = table->data; in get_uts() local 26 which = (which - (char *)&init_uts_ns) + (char *)uts_ns; in get_uts() 32 return which; in get_uts() 35 static void put_uts(struct ctl_table *table, int write, void *which) in put_uts() argument
|
D | watchdog.c | 641 static int proc_watchdog_common(int which, struct ctl_table *table, int write, in proc_watchdog_common() argument 662 *watchdog_param = (watchdog_enabled & which) != 0; in proc_watchdog_common() 683 new = old | which; in proc_watchdog_common() 685 new = old & ~which; in proc_watchdog_common()
|
D | compat.c | 310 COMPAT_SYSCALL_DEFINE2(getitimer, int, which, in COMPAT_SYSCALL_DEFINE2() argument 316 error = do_getitimer(which, &kit); in COMPAT_SYSCALL_DEFINE2() 322 COMPAT_SYSCALL_DEFINE3(setitimer, int, which, in COMPAT_SYSCALL_DEFINE3() argument 335 error = do_setitimer(which, &kin, out ? &kout : NULL); in COMPAT_SYSCALL_DEFINE3() 568 int, which, compat_pid_t, pid, in COMPAT_SYSCALL_DEFINE5() argument 580 ret = sys_waitid(which, pid, (siginfo_t __user *)&info, options, in COMPAT_SYSCALL_DEFINE5()
|
D | sys.c | 177 SYSCALL_DEFINE3(setpriority, int, which, int, who, int, niceval) in SYSCALL_DEFINE3() argument 186 if (which > PRIO_USER || which < PRIO_PROCESS) in SYSCALL_DEFINE3() 198 switch (which) { in SYSCALL_DEFINE3() 247 SYSCALL_DEFINE2(getpriority, int, which, int, who) in SYSCALL_DEFINE2() argument 256 if (which > PRIO_USER || which < PRIO_PROCESS) in SYSCALL_DEFINE2() 261 switch (which) { in SYSCALL_DEFINE2()
|
D | exit.c | 1593 SYSCALL_DEFINE5(waitid, int, which, pid_t, upid, struct siginfo __user *, in SYSCALL_DEFINE5() argument 1607 switch (which) { in SYSCALL_DEFINE5()
|
D | signal.c | 2366 static void retarget_shared_pending(struct task_struct *tsk, sigset_t *which) in retarget_shared_pending() argument 2371 sigandsets(&retarget, &tsk->signal->shared_pending.signal, which); in retarget_shared_pending() 2763 int do_sigtimedwait(const sigset_t *which, siginfo_t *info, in do_sigtimedwait() argument 2768 sigset_t mask = *which; in do_sigtimedwait()
|
D | audit.c | 736 static void audit_log_feature_change(int which, u32 old_feature, u32 new_feature, in audit_log_feature_change() argument 747 audit_feature_names[which], !!old_feature, !!new_feature, in audit_log_feature_change()
|
/kernel/power/ |
D | Kconfig | 7 Allow the system to enter sleep states in which main memory is 43 Enable the suspend to disk (STD) functionality, which is usually 60 It creates an image which is saved in your active swap. Upon the next 99 which will set the resume partition to the device specified. 101 Note there is currently not a way to specify which device to save the 296 per-cpu workqueues which were observed to contribute
|
/kernel/trace/ |
D | Kconfig | 142 instruction at the beginning of every kernel function, which NOP 189 The default measurement method is a maximum search, which is 213 The default measurement method is a maximum search, which is 238 depening on what the cpumask file is set to, which each thread 274 allowing the user to pick and choose which trace point they 306 After which, only the tracing buffer for CPU 2 was swapped with 325 into the C conditionals to test which path a branch takes. 524 in debugfs called function_profile_enabled which defaults to zero. 625 write which is not added to the rest of the calculations.
|
/kernel/gcov/ |
D | Kconfig | 51 which are not linked to the kernel image to prevent linker errors.
|
/kernel/irq/ |
D | manage.c | 2023 int irq_get_irqchip_state(unsigned int irq, enum irqchip_irq_state which, in irq_get_irqchip_state() argument 2050 err = chip->irq_get_irqchip_state(data, which, state); in irq_get_irqchip_state() 2069 int irq_set_irqchip_state(unsigned int irq, enum irqchip_irq_state which, in irq_set_irqchip_state() argument 2096 err = chip->irq_set_irqchip_state(data, which, val); in irq_set_irqchip_state()
|