/linux/include/linux/ |
H A D | kprobes.h | 407 int register_kprobes(struct kprobe **kps, int num); 408 void unregister_kprobes(struct kprobe **kps, int num); 463 static inline int register_kprobes(struct kprobe **kps, int num) in register_kprobes() argument 470 static inline void unregister_kprobes(struct kprobe **kps, int num) in unregister_kprobes() argument
|
/linux/drivers/clk/bcm/ |
H A D | clk-nsp.c | 22 #define DF_VAL(o, kis, kiw, kps, kpw, kas, kaw) { .offset = o, .ki_shift = kis,\ argument 23 .ki_width = kiw, .kp_shift = kps, .kp_width = kpw, .ka_shift = kas, \
|
H A D | clk-ns2.c | 22 #define DF_VAL(o, kis, kiw, kps, kpw, kas, kaw) { .offset = o, .ki_shift = kis,\ argument 23 .ki_width = kiw, .kp_shift = kps, .kp_width = kpw, .ka_shift = kas, \
|
H A D | clk-cygnus.c | 30 #define DF_VAL(o, kis, kiw, kps, kpw, kas, kaw) { .offset = o, .ki_shift = kis,\ argument 31 .ki_width = kiw, .kp_shift = kps, .kp_width = kpw, .ka_shift = kas, \
|
H A 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/kernel/ |
H A D | params.c | 515 const struct kparam_string *kps = kp->str; in param_set_copystring() local 517 if (strnlen(val, kps->maxlen) == kps->maxlen) { in param_set_copystring() 519 kp->name, kps->maxlen-1); in param_set_copystring() 522 strcpy(kps->string, val); in param_set_copystring() 529 const struct kparam_string *kps = kp->str; in param_get_string() local 530 return scnprintf(buffer, PAGE_SIZE, "%s\n", kps->string); in param_get_string()
|
/linux/lib/ |
H A D | test_kprobes.c | 124 struct kprobe *kps[2] = {&kp, &kp2}; in test_kprobes() local 132 KUNIT_EXPECT_EQ(test, 0, register_kprobes(kps, 2)); in test_kprobes() 146 unregister_kprobes(kps, 2); in test_kprobes()
|
/linux/kernel/power/ |
H A D | hibernate.c | 274 unsigned int kps; in swsusp_show_speed() local 282 kps = (k * 100) / centisecs; in swsusp_show_speed() 284 msg, k, centisecs / 100, centisecs % 100, kps / 1000, in swsusp_show_speed() 285 (kps % 1000) / 10); in swsusp_show_speed()
|
/linux/drivers/misc/ |
H A 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/Documentation/trace/ |
H A 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/arch/x86/kvm/ |
H A D | x86.c | 6379 struct kvm_kpit_state *kps = &kvm->arch.vpit->pit_state; in kvm_vm_ioctl_get_pit() local 6381 BUILD_BUG_ON(sizeof(*ps) != sizeof(kps->channels)); in kvm_vm_ioctl_get_pit() 6383 mutex_lock(&kps->lock); in kvm_vm_ioctl_get_pit() 6384 memcpy(ps, &kps->channels, sizeof(*ps)); in kvm_vm_ioctl_get_pit() 6385 mutex_unlock(&kps->lock); in kvm_vm_ioctl_get_pit()
|