Lines Matching refs:data
313 char *data; member
867 char *old_data = o->data; in b_check_space()
870 o->data = realloc(o->data, 1 + o->maxlen); in b_check_space()
871 if (o->data == NULL) { in b_check_space()
875 return o->data == NULL; in b_check_space()
882 o->data[o->length] = ch; in b_addchr()
884 o->data[o->length] = '\0'; in b_addchr()
892 if (o->data != NULL) *o->data = '\0'; in b_reset()
898 free(o->data); in b_free()
899 o->data = NULL; in b_free()
2100 gr = globhack(dest->data, flags, pglob);
2105 } else if (glob_needed(dest->data)) {
2106 gr = glob(dest->data, flags, NULL, pglob);
2110 gr = globhack(dest->data, flags, pglob);
2114 gr = globhack(dest->data, flags, pglob);
2399 if (strcmp(dest->data, r->literal) == 0) {
2454 debug_printf("done_word: %s %p\n", dest->data, child);
2469 debug_printf("checking %s for reserved-ness\n",dest->data);
2476 for (cnt = 1, s = dest->data; s && *s; s++) {
2501 for (s = dest->data; s && *s; s++,str++) {
2644 if (!isdigit(*(o->data+num))) {
2649 num=atoi(o->data);