Lines Matching refs:bstring
1195 void HTSABAlloc(bstring **dest, int len) in HTSABAlloc()
1198 *dest = typecalloc(bstring); in HTSABAlloc()
1216 void HTSABCopy(bstring **dest, const char *src, in HTSABCopy()
1219 bstring *t; in HTSABCopy()
1232 if ((t = (bstring *) malloc(sizeof(bstring))) == NULL) in HTSABCopy()
1257 void HTSABCopy0(bstring **dest, const char *src) in HTSABCopy0()
1265 void HTSABCat(bstring **dest, const char *src, in HTSABCat()
1268 bstring *t = *dest; in HTSABCat()
1286 if ((t = typecalloc(bstring)) == NULL) in HTSABCat()
1313 void HTSABCat0(bstring **dest, const char *src) in HTSABCat0()
1321 BOOL HTSABEql(bstring *a, bstring *b) in HTSABEql()
1337 void HTSABFree(bstring **ptr) in HTSABFree()
1350 bstring *HTBprintf(bstring **pstr, const char *fmt,...) in HTBprintf()
1352 bstring *result = 0; in HTBprintf()
1409 void trace_bstring(bstring *data) in trace_bstring()