Home
last modified time | relevance | path

Searched refs:procabi (Results 1 – 3 of 3) sorted by relevance

/src/usr.bin/truss/
H A Dtruss.h56 struct procabi { struct
100 struct procabi *abi;
H A Dsetup.c64 struct procabi *abi;
74 static struct procabi freebsd = {
87 static struct procabi freebsd32 = {
97 static struct procabi linux = {
106 static struct procabi linux32 = {
235 static struct procabi *
H A Dsyscalls.c847 find_syscall(struct procabi *abi, u_int number) in find_syscall()
861 add_syscall(struct procabi *abi, u_int number, struct syscall *sc) in add_syscall()
894 struct procabi *procabi; in get_syscall() local
900 procabi = t->proc->abi; in get_syscall()
901 sc = find_syscall(procabi, number); in get_syscall()
906 sysdecode_name = sysdecode_syscallname(procabi->abi, number); in get_syscall()
917 if (procabi->compat_prefix != NULL && strncmp(procabi->compat_prefix, in get_syscall()
918 name, strlen(procabi->compat_prefix)) == 0) in get_syscall()
919 lookup_name += strlen(procabi->compat_prefix); in get_syscall()