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

  /src/usr.bin/ktruss/
dump.c 176 struct ktr_header *kth; local in function:getrecord
182 kth = &kte->kte_kth;
183 if (fread_tail(kth, sizeof(struct ktr_header), 1, fp) == 0) {
188 if (kth->ktr_len < 0)
189 errx(EXIT_FAILURE, "bogus length 0x%x", kth->ktr_len);
190 len = kth->ktr_len;
258 struct ktr_header *kth; local in function:dumprecord
264 kth = &kte->kte_kth;
265 if ((trpoints & (1 << kth->ktr_type)) == 0) {
271 ectx_sanify(kth->ktr_pid)
614 struct ktr_header *kth = &kte->kte_kth; local in function:ktrsyscall
664 struct ktr_header *kth = &kte->kte_kth; local in function:ktrsysret
715 struct ktr_header *kth = &kte->kte_kth; local in function:ktrnamei
729 struct ktr_header *kth = &kte->kte_kth; local in function:ktremul
786 struct ktr_header *kth = &kte->kte_kth; local in function:ktrgenio
801 struct ktr_header *kth = &kte->kte_kth; local in function:ktrpsig
820 struct ktr_header *kth = &kte->kte_kth; local in function:ktrcsw
    [all...]
  /src/sys/kern/
kern_ktrace.c 500 struct ktr_header *kth; local in function:ktealloc
515 kth = &kte->kte_kth;
516 (void)memset(kth, 0, sizeof(*kth));
517 kth->ktr_len = sz;
518 kth->ktr_type = type;
519 kth->ktr_pid = p->p_pid;
520 memcpy(kth->ktr_comm, p->p_comm, MAXCOMLEN);
521 kth->ktr_version = KTRFAC_VERSION(p->p_traceflag);
522 kth->ktr_lid = l->l_lid
1286 struct ktr_header *kth; local in function:ktrwrite
    [all...]

Completed in 16 milliseconds