Home | History | Annotate | Download | only in ktruss

Lines Matching defs:ktr_entry

84 struct ktr_entry {
85 TAILQ_ENTRY(ktr_entry) kte_list;
89 TAILQ_HEAD(kteq, ktr_entry) ktependq = TAILQ_HEAD_INITIALIZER(ktependq);
94 void flushpendq(struct ktr_entry *);
97 struct ktr_entry *
99 struct ktr_entry *
103 void ktrcsw(struct ktr_entry *);
104 void ktremul(struct ktr_entry *);
105 void ktrgenio(struct ktr_entry *);
106 void ktrnamei(struct ktr_entry *);
107 void ktrpsig(struct ktr_entry *);
108 void ktrsyscall(struct ktr_entry *);
109 void ktrsysret(struct ktr_entry *);
113 void putpendq(struct ktr_entry *);
172 struct ktr_entry *
175 struct ktr_entry *kte;
181 kte = xrealloc(NULL, &siz, sizeof(struct ktr_entry));
193 kte = xrealloc(kte, &siz, sizeof(struct ktr_entry) + len + 1);
211 putpendq(struct ktr_entry *kte)
218 flushpendq(struct ktr_entry *us)
220 struct ktr_entry *kte, *kte_next;
232 struct ktr_entry *
235 struct ktr_entry *kte, *kte_next;
257 struct ktr_entry *kte;
441 struct ktr_entry *kte;
612 ktrsyscall(struct ktr_entry *kte)
662 ktrsysret(struct ktr_entry *kte)
666 struct ktr_entry *emul;
667 struct ktr_entry *genio;
668 struct ktr_entry *syscall_ent;
713 ktrnamei(struct ktr_entry *kte)
727 ktremul(struct ktr_entry *kte)
784 ktrgenio(struct ktr_entry *kte)
799 ktrpsig(struct ktr_entry *kte)
818 ktrcsw(struct ktr_entry *kte)