Home
last modified time | relevance | path

Searched refs:systrace_sysent (Results 1 – 2 of 2) sorted by relevance

/xnu-10063.141.1/bsd/dev/dtrace/ !
H A Dsystrace.c89 systrace_sysent_t *systrace_sysent = NULL; variable
169 sy = (code >= nsysent) ? &systrace_sysent[SYS_invalid] : &systrace_sysent[code]; in dtrace_systrace_syscall()
288 sy = (code >= nsysent) ? &systrace_sysent[SYS_invalid] : &systrace_sysent[code]; in dtrace_systrace_syscall_return()
407 systrace_init(sysent, &systrace_sysent); in systrace_provide()
410 if (systrace_sysent[i].stsy_underlying == NULL) { in systrace_provide()
426 systrace_sysent[i].stsy_entry = DTRACE_IDNONE; in systrace_provide()
427 systrace_sysent[i].stsy_return = DTRACE_IDNONE; in systrace_provide()
446 ASSERT(systrace_sysent[sysnum].stsy_entry == DTRACE_IDNONE); in systrace_destroy()
448 ASSERT(systrace_sysent[sysnum].stsy_return == DTRACE_IDNONE); in systrace_destroy()
459 int enabled = (systrace_sysent[sysnum].stsy_entry != DTRACE_IDNONE || in systrace_enable()
[all …]
H A Dsystrace.h36 typedef struct systrace_sysent { struct
43 extern systrace_sysent_t *systrace_sysent; argument