Home
last modified time | relevance | path

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

/freebsd/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.c845 find_syscall(struct procabi *abi, u_int number) in find_syscall()
859 add_syscall(struct procabi *abi, u_int number, struct syscall *sc) in add_syscall()
892 struct procabi *procabi; in get_syscall() local
898 procabi = t->proc->abi; in get_syscall()
899 sc = find_syscall(procabi, number); in get_syscall()
904 sysdecode_name = sysdecode_syscallname(procabi->abi, number); in get_syscall()
915 if (procabi->compat_prefix != NULL && strncmp(procabi->compat_prefix, in get_syscall()
916 name, strlen(procabi->compat_prefix)) == 0) in get_syscall()
917 lookup_name += strlen(procabi->compat_prefix); in get_syscall()