Home | History | Annotate | Download | only in tools

Lines Matching full:glibc

56 glibc = symbols.GetFromSystemSo([
70 glibc = set(map(MangleGlibcNameToBionic, glibc))
132 # bionic exposes various Linux features that glibc doesn't.
139 # Some standard stuff isn't yet in the versions of glibc we're using.
147 # These have mangled names in glibc, with a macro taking the "obvious" name.
168 # These exist in glibc, but under slightly different names (generally one extra
169 # or one fewer _). TODO: check against glibc names.
185 # implemented in glibc unless you count always failing with ENOSYS as
200 glibc = glibc - in_posix_and_glibc_but_actually_dead
203 #print 'glibc:'
204 #for symbol in sorted(glibc):
213 print 'in glibc (but not posix) but not bionic:'
214 for symbol in sorted((glibc - posix).difference(bionic)):
218 print 'in posix (and implemented in glibc) but not bionic:'
219 for symbol in sorted((posix.intersection(glibc)).difference(bionic)):
223 print 'in bionic but not glibc:'
227 for symbol in sorted((bionic - allowed_stuff).difference(glibc)):