Lines Matching refs:out
336 static const char *_php_stream_pretty_free_options(int close_options, char *out) in _php_stream_pretty_free_options() argument
339 strcat(out, "CALL_DTOR, "); in _php_stream_pretty_free_options()
341 strcat(out, "RELEASE_STREAM, "); in _php_stream_pretty_free_options()
343 strcat(out, "PREVERSE_HANDLE, "); in _php_stream_pretty_free_options()
345 strcat(out, "RSRC_DTOR, "); in _php_stream_pretty_free_options()
347 strcat(out, "PERSISTENT, "); in _php_stream_pretty_free_options()
349 strcat(out, "IGNORE_ENCLOSING, "); in _php_stream_pretty_free_options()
350 if (out[0] != '\0') in _php_stream_pretty_free_options()
351 out[strlen(out) - 2] = '\0'; in _php_stream_pretty_free_options()
352 return out; in _php_stream_pretty_free_options()
390 char out[200] = ""; in _php_stream_free() local
392 …, stream, stream->orig_path, stream->in_free, _php_stream_pretty_free_options(close_options, out)); in _php_stream_free()