HomeSort by relevance Sort by last modified time
    Searched defs:sysent (Results 1 - 3 of 3) sorted by null

  /external/strace/
sysent.h 4 typedef struct sysent { struct
syscall.c 215 const struct_sysent *sysent = sysent0; variable
275 sysent = sysent_vec[personality];
363 const unsigned int nargs = sysent[scno].nargs;
371 tcp->s_ent = &sysent[scno];
411 tcp->s_ent = &sysent[tcp->scno];
428 tcp->s_ent = &sysent[tcp->scno];
1229 tcp->s_ent = &sysent[tcp->scno];
1294 return scno_is_valid(scno) ? sysent[scno].sys_name: NULL;
defs.h 58 #include "sysent.h"
228 const struct_sysent *s_ent; /* sysent[scno] or dummy struct for bad scno */
892 extern const struct_sysent *sysent;
897 # define sysent sysent0 macro
924 /* Checks that sysent[scno] is not out of range. */
933 * its corresponding sysent[scno].sys_func is non-NULL,
934 * and its sysent[scno].sys_flags has no TRACE_INDIRECT_SUBCALL flag set.
940 && sysent[scno].sys_func
941 && !(sysent[scno].sys_flags & TRACE_INDIRECT_SUBCALL);

Completed in 75 milliseconds