Home | History | Annotate | Download | only in libcutils

Lines Matching defs:lbuf

733 	char *			lbuf;
754 lbuf = locale_buf;
755 if (lbuf != NULL && strcmp(name, lbuf) == 0) {
756 p = lbuf;
790 lbuf = (lbuf == NULL) ? malloc(bufsize) : realloc(lbuf, bufsize);
791 if (lbuf == NULL)
793 (void) strcpy(lbuf, name);
794 p = lbuf + namesize;
829 locale_buf = lbuf;
834 free(lbuf);