Home
last modified time | relevance | path

Searched refs:glue (Results 1 – 2 of 2) sorted by relevance

/bionic/libc/stdio/
Dglue.h43 struct glue { struct
44 struct glue *next; argument
50 __LIBC32_LEGACY_PUBLIC__ extern struct glue __sglue; argument
Dstdio.cpp121 struct glue __sglue = { nullptr, 3, __sF };
122 static struct glue* lastglue = &__sglue;
137 static glue* moreglue(int n) { in moreglue()
138 char* data = new char[sizeof(glue) + ALIGNBYTES + n * sizeof(FILE) + n * sizeof(__sfileext)]; in moreglue()
141 glue* g = reinterpret_cast<glue*>(data); in moreglue()
169 struct glue *g; in __sfp()
213 for (glue* g = &__sglue; g != nullptr; g = g->next) { in _fwalk()