Searched refs:xlat (Results 1 – 25 of 256) sorted by relevance
1234567891011
/external/strace/xlat/ |
D | Makemodule.am | 1 …xlat/access_flags.in xlat/aclipc.in xlat/addrfams.in xlat/adjtimex_modes.in xlat/adjtimex_state.in… 2 …xlat/access_flags.h xlat/aclipc.h xlat/addrfams.h xlat/adjtimex_modes.h xlat/adjtimex_state.h xlat… 3 $(top_srcdir)/xlat/access_flags.h: $(top_srcdir)/xlat/access_flags.in $(top_srcdir)/xlat/gen.sh 4 $(AM_V_GEN)$(top_srcdir)/xlat/gen.sh $< $@ 5 $(top_srcdir)/xlat/aclipc.h: $(top_srcdir)/xlat/aclipc.in $(top_srcdir)/xlat/gen.sh 6 $(AM_V_GEN)$(top_srcdir)/xlat/gen.sh $< $@ 7 $(top_srcdir)/xlat/addrfams.h: $(top_srcdir)/xlat/addrfams.in $(top_srcdir)/xlat/gen.sh 8 $(AM_V_GEN)$(top_srcdir)/xlat/gen.sh $< $@ 9 $(top_srcdir)/xlat/adjtimex_modes.h: $(top_srcdir)/xlat/adjtimex_modes.in $(top_srcdir)/xlat/gen.sh 10 $(AM_V_GEN)$(top_srcdir)/xlat/gen.sh $< $@ [all …]
|
D | gen.sh | 8 Generate xlat header files from <input> (a file or dir of files) and write 16 local line val m def xlat 25 xlat="XLAT(${val})," 28 xlat=" { ${val}, \"${m}\" }," 34 ${xlat} 42 ${xlat} 63 ${prefix}const struct xlat ${name}[] = {
|
D | fsmagic.h | 3 static const struct xlat fsmagic[] = {
|
D | shutdown_modes.h | 3 static const struct xlat shutdown_modes[] = {
|
D | fileflags.h | 3 static const struct xlat fileflags[] = {
|
D | openmodessol.h | 3 static const struct xlat openmodessol[] = {
|
D | ubi_volume_props.h | 3 static const struct xlat ubi_volume_props[] = {
|
D | ubi_volume_types.h | 3 static const struct xlat ubi_volume_types[] = {
|
D | v4l2_capture_modes.h | 3 static const struct xlat v4l2_capture_modes[] = {
|
D | sockrawoptions.h | 3 static const struct xlat sockrawoptions[] = {
|
D | sockipxoptions.h | 3 static const struct xlat sockipxoptions[] = {
|
D | fdflags.h | 3 static const struct xlat fdflags[] = {
|
D | sigprof_codes.h | 3 static const struct xlat sigprof_codes[] = {
|
D | msgflags.h | 3 static const struct xlat msgflags[] = {
|
D | clockflags.h | 3 static const struct xlat clockflags[] = {
|
D | v4l2_streaming_capabilities.h | 3 static const struct xlat v4l2_streaming_capabilities[] = {
|
D | bsg_protocol.h | 3 static const struct xlat bsg_protocol[] = {
|
D | cap_version.h | 3 static const struct xlat cap_version[] = {
|
D | cap_mask1.h | 3 static const struct xlat cap_mask1[] = {
|
D | ioprio_who.h | 3 static const struct xlat ioprio_who[] = {
|
D | sigsys_codes.h | 3 static const struct xlat sigsys_codes[] = {
|
/external/strace/ |
D | util.c | 123 xlookup(const struct xlat *xlat, const unsigned int val) in xlookup() argument 125 for (; xlat->str != NULL; xlat++) in xlookup() 126 if (xlat->val == val) in xlookup() 127 return xlat->str; in xlookup() 135 const unsigned int val2 = ((const struct xlat *) b)->val; in xlat_bsearch_compare() 140 xlat_search(const struct xlat *xlat, const size_t nmemb, const unsigned int val) in xlat_search() argument 142 const struct xlat *e = in xlat_search() 144 xlat, nmemb, sizeof(*xlat), xlat_bsearch_compare); in xlat_search() 210 printxval(const struct xlat *xlat, const unsigned int val, const char *dflt) in printxval() argument 212 const char *str = xlookup(xlat, val); in printxval() [all …]
|
D | defs.h | 339 struct xlat { struct 346 extern const struct xlat addrfams[]; argument 347 extern const struct xlat at_flags[]; 348 extern const struct xlat open_access_modes[]; 349 extern const struct xlat open_mode_flags[]; 350 extern const struct xlat whence_codes[]; 478 extern const char *xlookup(const struct xlat *, const unsigned int); 479 extern const char *xlat_search(const struct xlat *, const size_t, const unsigned int); 504 extern void printxval(const struct xlat *, const unsigned int, const char *); 508 extern void addflags(const struct xlat *, int); [all …]
|
D | cacheflush.c | 10 static const struct xlat cacheflush_flags[] = { 41 static const struct xlat cacheflush_flags[] = { 63 static const struct xlat cacheflush_flags[] = {
|
D | process.c | 53 static const struct xlat struct_user_offsets[] = { 60 const struct xlat *x; in SYS_FUNC()
|
1234567891011