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

  /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/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/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))

Completed in 172 milliseconds