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

  /src/sys/sys/
ktrace.h 115 * KTR_SYSCALL - system call record
117 #define KTR_SYSCALL 1
118 struct ktr_syscall { struct
241 #define KTRFAC_SYSCALL (1<<KTR_SYSCALL)
322 void ktr_syscall(register_t, const register_t [], int);
415 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/usr.bin/make/filemon/
filemon_ktrace.c 66 const struct filemon_key *, const struct ktr_syscall *); typedef in typeref:struct:filemon_state * filemon_syscall_t (struct filemon *,const struct filemon_key *,const struct *)
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/kern/
kern_ktrace.c 538 ktr_syscall(register_t code, const register_t args[], int narg) function in typeref:typename:void
543 struct ktr_syscall *ktp;
548 if (!KTRPOINT(p, KTR_SYSCALL))
551 len = sizeof(struct ktr_syscall) + narg * sizeof argp[0];
553 if (ktealloc(&kte, (void *)&ktp, l, KTR_SYSCALL, len))
  /src/usr.bin/kdump/
kdump.c 125 static void ktrsyscall(struct ktr_syscall *);
315 case KTR_SYSCALL:
441 case KTR_SYSCALL:
825 ktrsyscall(struct ktr_syscall *ktr)
854 ap = (register_t *)((char *)ktr + sizeof(struct ktr_syscall));

Completed in 45 milliseconds