Home
last modified time | relevance | path

Searched refs:dyxlat (Results 1 – 7 of 7) sorted by relevance

/external/strace/
Ddyxlat.c29 struct dyxlat { struct
41 struct dyxlat * argument
44 struct dyxlat *const dyxlat = xmalloc(sizeof(*dyxlat)); in dyxlat_alloc() local
46 dyxlat->used = 1; in dyxlat_alloc()
47 dyxlat->allocated = nmemb; in dyxlat_alloc()
48 dyxlat->xlat = xgrowarray(NULL, &dyxlat->allocated, sizeof(struct xlat)); in dyxlat_alloc()
49 MARK_END(dyxlat->xlat[0]); in dyxlat_alloc()
51 return dyxlat; in dyxlat_alloc()
55 dyxlat_free(struct dyxlat *const dyxlat) in dyxlat_free() argument
59 for (i = 0; i < dyxlat->used - 1; ++i) { in dyxlat_free()
[all …]
Dsocketutils.c630 struct dyxlat *const dyxlat = opaque_data; in genl_parse_families_response() local
663 dyxlat_add_pair(dyxlat, *id, name, name_len); in genl_parse_families_response()
675 static struct dyxlat *dyxlat; in genl_families_xlat() local
677 if (!dyxlat) { in genl_families_xlat()
678 dyxlat = dyxlat_alloc(32); in genl_families_xlat()
686 genl_parse_families_response, dyxlat); in genl_families_xlat()
691 return dyxlat_get(dyxlat); in genl_families_xlat()
Ddefs.h619 struct dyxlat;
620 struct dyxlat *dyxlat_alloc(size_t nmemb);
621 void dyxlat_free(struct dyxlat *);
622 const struct xlat *dyxlat_get(const struct dyxlat *);
623 void dyxlat_add_pair(struct dyxlat *, uint64_t val, const char *str, size_t len);
DAndroid.bp47 "dyxlat.c",
DMakefile.in328 dirent.c dirent64.c dm.c dyxlat.c empty.h epoll.c \
398 strace-dyxlat.$(OBJEXT) strace-epoll.$(OBJEXT) \
1354 dyxlat.c empty.h epoll.c error_prints.c error_prints.h evdev.c \
2321 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strace-dyxlat.Po@am__quote@
4220 strace-dyxlat.o: dyxlat.c
4221 …LAGS) -MT strace-dyxlat.o -MD -MP -MF $(DEPDIR)/strace-dyxlat.Tpo -c -o strace-dyxlat.o `test -f '…
4222 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/strace-dyxlat.Tpo $(DEPDIR)/strace-dyxlat.Po
4225 …PFLAGS) $(strace_CFLAGS) $(CFLAGS) -c -o strace-dyxlat.o `test -f 'dyxlat.c' || echo '$(srcdir)/'`
4227 strace-dyxlat.obj: dyxlat.c
4228 …S) $(strace_CFLAGS) $(CFLAGS) -MT strace-dyxlat.obj -MD -MP -MF $(DEPDIR)/strace-dyxlat.Tpo -c -o …
[all …]
DMakefile.am124 dyxlat.c \
DChangeLog10261 dyxlat: use xgrowarray.
10262 * dyxlat.c (dyxlat_alloc): Use xgrowarray instead of xcalloc.
15326 dyxlat: new interface for building xlat tables dynamically.
15334 This change introduces dyxlat functions for building xlat tables
15338 * defs.h (struct dyxlat): New opaque data type.
15340 * dyxlat.c: New file.