Lines Matching defs:gfp
18 static struct string_stream_fragment *alloc_string_stream_fragment(int len, gfp_t gfp)
22 frag = kzalloc_obj(*frag, gfp);
26 frag->fragment = kmalloc(len, gfp);
68 frag_container = alloc_string_stream_fragment(buf_len, stream->gfp);
126 buf = kzalloc(buf_len, stream->gfp);
162 struct string_stream *alloc_string_stream(gfp_t gfp)
166 stream = kzalloc_obj(*stream, gfp);
170 stream->gfp = gfp;
195 struct string_stream *kunit_alloc_string_stream(struct kunit *test, gfp_t gfp)
199 stream = alloc_string_stream(gfp);