Lines Matching defs:text
63 char *text;
165 /* stuff for text */
167 char *text;
498 static void push_text_atom(struct function *f, const char *text)
502 atom->text = strdup(text);
503 atom->text_len = strlen(text);
575 static void textbuf_push(struct textbuf **buf_p, const char *text)
578 unsigned int text_len = strlen(text);
585 tmp->text = ((void *) tmp) + sizeof(*tmp);
586 memcpy(tmp->text, text, text_len + 1);
617 fputs(tmp->text, stdout);
745 if (write(STDOUT_FILENO, atom->text, atom->text_len) < 0)
780 if ((atom->type == ATOM_TEXT) && (atom->text))
781 free(atom->text);
857 emit_section(".text");