Lines Matching refs:frag_container
77 struct string_stream_fragment *frag_container;
89 frag_container = alloc_string_stream_fragment(stream->test,
92 if (!frag_container)
95 len = vsnprintf(frag_container->fragment, len, fmt, args);
98 list_add_tail(&frag_container->node, &stream->fragments);
118 struct string_stream_fragment *frag_container, *frag_container_safe;
121 list_for_each_entry_safe(frag_container,
125 string_stream_fragment_destroy(frag_container);
133 struct string_stream_fragment *frag_container;
142 list_for_each_entry(frag_container, &stream->fragments, node)
143 strlcat(buf, frag_container->fragment, buf_len);