Home
last modified time | relevance | path

Searched refs:body_stream (Results 1 – 9 of 9) sorted by relevance

/third_party/node/tools/inspector_protocol/jinja2/
Dasyncsupport.py135 body_stream = []
137 body_stream.append(item)
138 return TemplateModule(self, context, body_stream)
Denvironment.py1145 def __init__(self, template, context, body_stream=None): argument
1146 if body_stream is None:
1152 body_stream = list(template.root_render_func(context))
1153 self._body_stream = body_stream
/third_party/skia/third_party/externals/jinja2/
Dasyncsupport.py132 body_stream = []
134 body_stream.append(item)
135 return TemplateModule(self, context, body_stream)
Denvironment.py1229 def __init__(self, template, context, body_stream=None): argument
1230 if body_stream is None:
1238 body_stream = list(template.root_render_func(context))
1239 self._body_stream = body_stream
/third_party/jinja2/
Dasyncsupport.py132 body_stream = []
134 body_stream.append(item)
135 return TemplateModule(self, context, body_stream)
Denvironment.py1229 def __init__(self, template, context, body_stream=None): argument
1230 if body_stream is None:
1238 body_stream = list(template.root_render_func(context))
1239 self._body_stream = body_stream
/third_party/libsoup/libsoup/
Dsoup-cache.c674 GInputStream *file_stream, *body_stream, *cache_stream, *client_stream; in soup_cache_send_response() local
691body_stream = soup_body_input_stream_new (file_stream, SOUP_ENCODING_CONTENT_LENGTH, entry->length… in soup_cache_send_response()
694 if (!body_stream) in soup_cache_send_response()
712 cache_stream = soup_message_setup_body_istream (body_stream, msg, in soup_cache_send_response()
715 g_object_unref (body_stream); in soup_cache_send_response()
Dsoup-message-private.h156 GInputStream *soup_message_setup_body_istream (GInputStream *body_stream,
Dsoup-message-io.c285 soup_message_setup_body_istream (GInputStream *body_stream, in soup_message_setup_body_istream() argument
293 istream = g_object_ref (body_stream); in soup_message_setup_body_istream()