/Linux-v5.15/kernel/ |
D | test_kprobes.c | 112 struct kprobe *kps[2] = {&kp, &kp2}; in test_kprobes() local 117 ret = register_kprobes(kps, 2); in test_kprobes() 151 unregister_kprobes(kps, 2); in test_kprobes()
|
D | params.c | 512 const struct kparam_string *kps = kp->str; in param_set_copystring() local 514 if (strlen(val)+1 > kps->maxlen) { in param_set_copystring() 516 kp->name, kps->maxlen-1); in param_set_copystring() 519 strcpy(kps->string, val); in param_set_copystring() 526 const struct kparam_string *kps = kp->str; in param_get_string() local 527 return scnprintf(buffer, PAGE_SIZE, "%s\n", kps->string); in param_get_string()
|
D | kprobes.c | 1798 int register_kprobes(struct kprobe **kps, int num) in register_kprobes() argument 1805 ret = register_kprobe(kps[i]); in register_kprobes() 1808 unregister_kprobes(kps, i); in register_kprobes() 1822 void unregister_kprobes(struct kprobe **kps, int num) in unregister_kprobes() argument 1830 if (__unregister_kprobe_top(kps[i]) < 0) in unregister_kprobes() 1831 kps[i]->addr = NULL; in unregister_kprobes() 1836 if (kps[i]->addr) in unregister_kprobes() 1837 __unregister_kprobe_bottom(kps[i]); in unregister_kprobes()
|
/Linux-v5.15/include/linux/ |
D | kprobes.h | 383 int register_kprobes(struct kprobe **kps, int num); 384 void unregister_kprobes(struct kprobe **kps, int num); 433 static inline int register_kprobes(struct kprobe **kps, int num) in register_kprobes() argument 440 static inline void unregister_kprobes(struct kprobe **kps, int num) in unregister_kprobes() argument
|
/Linux-v5.15/drivers/clk/bcm/ |
D | clk-nsp.c | 32 #define DF_VAL(o, kis, kiw, kps, kpw, kas, kaw) { .offset = o, .ki_shift = kis,\ argument 33 .ki_width = kiw, .kp_shift = kps, .kp_width = kpw, .ka_shift = kas, \
|
D | clk-ns2.c | 32 #define DF_VAL(o, kis, kiw, kps, kpw, kas, kaw) { .offset = o, .ki_shift = kis,\ argument 33 .ki_width = kiw, .kp_shift = kps, .kp_width = kpw, .ka_shift = kas, \
|
D | clk-cygnus.c | 40 #define DF_VAL(o, kis, kiw, kps, kpw, kas, kaw) { .offset = o, .ki_shift = kis,\ argument 41 .ki_width = kiw, .kp_shift = kps, .kp_width = kpw, .ka_shift = kas, \
|
D | clk-sr.c | 24 #define DF_VAL(o, kis, kiw, kps, kpw, kas, kaw) { .offset = o, \ argument 25 .ki_shift = kis, .ki_width = kiw, .kp_shift = kps, .kp_width = kpw, \
|
/Linux-v5.15/kernel/power/ |
D | hibernate.c | 261 unsigned int kps; in swsusp_show_speed() local 269 kps = (k * 100) / centisecs; in swsusp_show_speed() 271 msg, k, centisecs / 100, centisecs % 100, kps / 1000, in swsusp_show_speed() 272 (kps % 1000) / 10); in swsusp_show_speed()
|
/Linux-v5.15/drivers/tty/serial/ |
D | kgdboc.c | 35 static struct kparam_string kps = { variable 601 module_param_call(kgdboc, param_set_kgdboc_var, param_get_string, &kps, 0644);
|
/Linux-v5.15/drivers/misc/ |
D | kgdbts.c | 157 static struct kparam_string kps = { variable 1190 module_param_call(kgdbts, param_set_kgdbts_var, param_get_string, &kps, 0644);
|
/Linux-v5.15/Documentation/trace/ |
D | kprobes.rst | 477 int register_kprobes(struct kprobe **kps, int num); 485 - kps/rps: an array of pointers to ``*probe`` data structures 499 void unregister_kprobes(struct kprobe **kps, int num);
|
/Linux-v5.15/arch/x86/kvm/ |
D | x86.c | 5457 struct kvm_kpit_state *kps = &kvm->arch.vpit->pit_state; in kvm_vm_ioctl_get_pit() local 5459 BUILD_BUG_ON(sizeof(*ps) != sizeof(kps->channels)); in kvm_vm_ioctl_get_pit() 5461 mutex_lock(&kps->lock); in kvm_vm_ioctl_get_pit() 5462 memcpy(ps, &kps->channels, sizeof(*ps)); in kvm_vm_ioctl_get_pit() 5463 mutex_unlock(&kps->lock); in kvm_vm_ioctl_get_pit()
|