Lines Matching refs:content
98 asmscn->content->data[asmscn->content->len++]
137 /* The blocks with the section content are kept in a circular
141 if (asmscn->content == NULL)
146 asmscn->content = calloc (1, sizeof (struct AsmData) + size);
147 if (asmscn->content == NULL)
150 asmscn->content->next = asmscn->content;
156 if (asmscn->content->maxlen - asmscn->content->len >= len)
166 newp->next = asmscn->content->next;
167 asmscn->content = asmscn->content->next = newp;
170 asmscn->content->len = 0;
171 asmscn->content->maxlen = size;