HomeSort by: relevance | last modified time | path
    Searched refs:ktr_syscall (Results 1 - 6 of 6) sorted by relevancy

  /src/usr.bin/make/filemon/
filemon_ktrace.c 66 const struct filemon_key *, const struct ktr_syscall *);
112 struct ktr_syscall syscall;
417 case KTR_SYSCALL: {
418 struct ktr_syscall *call = &F->payload.syscall;
586 const struct filemon_key *key, const struct ktr_syscall *call,
758 const struct ktr_syscall *call)
768 const struct ktr_syscall *call)
775 const struct ktr_syscall *call)
793 const struct ktr_syscall *call)
801 const struct ktr_syscall *call
    [all...]
  /src/sys/sys/
ktrace.h 115 * KTR_SYSCALL - system call record
117 #define KTR_SYSCALL 1
118 struct ktr_syscall { struct
251 #define KTRFAC_SYSCALL (1<<KTR_SYSCALL)
334 void ktr_syscall(register_t, const register_t [], int);
428 ktr_syscall(code, args, narg);
  /src/usr.bin/ktruss/
dump.c 274 case KTR_SYSCALL:
328 * XXX: Dump pending KTR_SYSCALL if any?
485 struct ktr_syscall *ktr = (struct ktr_syscall *)(kth + 1);
615 struct ktr_syscall *ktr = (struct ktr_syscall *)(kth + 1);
673 syscall_ent = getpendq(kth, KTR_SYSCALL, NULL);
  /src/sys/kern/
kern_stub.c 120 __strong_alias(ktr_syscall,nullop);
kern_ktrace.c 539 ktr_syscall(register_t code, const register_t args[], int narg) function
544 struct ktr_syscall *ktp;
549 if (!KTRPOINT(p, KTR_SYSCALL))
552 len = sizeof(struct ktr_syscall) + narg * sizeof argp[0];
554 if (ktealloc(&kte, (void *)&ktp, l, KTR_SYSCALL, len))
  /src/usr.bin/kdump/
kdump.c 126 static void ktrsyscall(struct ktr_syscall *);
317 case KTR_SYSCALL:
446 case KTR_SYSCALL:
833 ktrsyscall(struct ktr_syscall *ktr)
862 ap = (register_t *)((char *)ktr + sizeof(struct ktr_syscall));

Completed in 17 milliseconds