Searched refs:status (Results 1 – 12 of 12) sorted by relevance
/kernel/power/ |
D | suspend_test.c | 75 int status; in test_wakealarm() local 79 status = rtc_read_time(rtc, &alm.time); in test_wakealarm() 80 if (status < 0) { in test_wakealarm() 81 printk(err_readtime, dev_name(&rtc->dev), status); in test_wakealarm() 90 status = rtc_set_alarm(rtc, &alm); in test_wakealarm() 91 if (status < 0) { in test_wakealarm() 92 printk(err_wakealarm, dev_name(&rtc->dev), status); in test_wakealarm() 98 status = pm_suspend(state); in test_wakealarm() 99 if (status == -ENODEV) in test_wakealarm() 104 status = pm_suspend(state); in test_wakealarm() [all …]
|
D | Kconfig | 265 battery status information, and user-space programs will receive 266 notification of APM "events" (e.g. battery status change).
|
/kernel/ |
D | smpboot.c | 86 unsigned int status; member 118 if (ht->cleanup && td->status != HP_THREAD_NONE) in smpboot_thread_fn() 127 if (ht->park && td->status == HP_THREAD_ACTIVE) { in smpboot_thread_fn() 130 td->status = HP_THREAD_PARKED; in smpboot_thread_fn() 140 switch (td->status) { in smpboot_thread_fn() 146 td->status = HP_THREAD_ACTIVE; in smpboot_thread_fn() 154 td->status = HP_THREAD_ACTIVE; in smpboot_thread_fn()
|
D | exit.c | 1016 int status; member 1074 int state, status; in wait_task_zombie() local 1083 status = p->exit_code; in wait_task_zombie() 1165 status = (p->signal->flags & SIGNAL_GROUP_EXIT) in wait_task_zombie() 1167 wo->wo_stat = status; in wait_task_zombie() 1187 if ((status & 0x7f) == 0) { in wait_task_zombie() 1189 infop->status = status >> 8; in wait_task_zombie() 1191 infop->cause = (status & 0x80) ? CLD_DUMPED : CLD_KILLED; in wait_task_zombie() 1192 infop->status = status & 0x7f; in wait_task_zombie() 1290 infop->status = exit_code; in wait_task_stopped() [all …]
|
D | seccomp.c | 2382 char *status = cached ? "ALLOW" : "FILTER"; in device_initcall() local 2384 seq_printf(m, "%s %d %s\n", name, nr, status); in device_initcall()
|
/kernel/time/ |
D | ntp.c | 174 static inline int is_error_status(int status) in is_error_status() argument 176 return (status & (STA_UNSYNC|STA_CLOCKERR)) in is_error_status() 180 || ((status & (STA_PPSFREQ|STA_PPSTIME)) in is_error_status() 181 && !(status & STA_PPSSIGNAL)) in is_error_status() 184 || ((status & (STA_PPSTIME|STA_PPSJITTER)) in is_error_status() 189 || ((status & STA_PPSFREQ) in is_error_status() 190 && (status & (STA_PPSWANDER|STA_PPSERROR))); in is_error_status() 220 static inline int is_error_status(int status) in is_error_status() argument 222 return status & (STA_UNSYNC|STA_CLOCKERR); in is_error_status() 688 if ((time_status & STA_PLL) && !(txc->status & STA_PLL)) { in process_adj_status() [all …]
|
D | time.c | 299 txc->status = tx32.status; in get_old_timex32() 328 tx32.status = txc->status; in put_old_timex32()
|
/kernel/debug/ |
D | gdbstub.c | 1124 void gdbstub_exit(int status) in gdbstub_exit() argument 1137 buffer[1] = hex_asc_hi(status); in gdbstub_exit() 1138 buffer[2] = hex_asc_lo(status); in gdbstub_exit()
|
/kernel/bpf/ |
D | stackmap.c | 185 id_offs[i].status = BPF_STACK_BUILD_ID_IP; in stack_map_get_build_id_offset() 196 id_offs[i].status = BPF_STACK_BUILD_ID_IP; in stack_map_get_build_id_offset() 203 id_offs[i].status = BPF_STACK_BUILD_ID_VALID; in stack_map_get_build_id_offset()
|
D | btf.c | 364 int status; /* non-zero for error */ member 1102 show->state.status = PTR_ERR(rt); in btf_show_obj_safe() 1150 show->state.status = copy_from_kernel_nofault(show->obj.safe, in btf_show_obj_safe() 1152 if (!show->state.status) { in btf_show_obj_safe() 5789 return sseq.state.status; in btf_type_seq_show_flags() 5842 if (ssnprintf.show.state.status) in btf_type_snprintf_show() 5843 return ssnprintf.show.state.status; in btf_type_snprintf_show()
|
/kernel/trace/ |
D | ring_buffer.c | 4469 unsigned long status; in ring_buffer_search_footer() local 4473 status = search_writer ? __read_footer_writer_status(bpage) : in ring_buffer_search_footer() 4475 if (flag & status) in ring_buffer_search_footer()
|
/kernel/rcu/ |
D | tree.c | 2779 static void rcu_wake_cond(struct task_struct *t, int status) in rcu_wake_cond() argument 2785 if (t && (status != RCU_KTHREAD_YIELDING || is_idle_task(current))) in rcu_wake_cond()
|