Lines Matching refs:out
2025 php_stream *out = php_stream_open_wrapper("php://output", "w", 0, NULL); in PHP_METHOD() local
2032 if (out == NULL) { in PHP_METHOD()
2037 php_stream_printf(out, "SQL: [%zd] ", stmt->query_stringlen); in PHP_METHOD()
2038 php_stream_write(out, stmt->query_string, stmt->query_stringlen); in PHP_METHOD()
2039 php_stream_write(out, "\n", 1); in PHP_METHOD()
2045 php_stream_printf(out, "Sent SQL: [%zd] ", stmt->active_query_stringlen); in PHP_METHOD()
2046 php_stream_write(out, stmt->active_query_string, stmt->active_query_stringlen); in PHP_METHOD()
2047 php_stream_write(out, "\n", 1); in PHP_METHOD()
2050 php_stream_printf(out, "Params: %d\n", in PHP_METHOD()
2058 php_stream_printf(out, "Key: Name: [%zd] %.*s\n", in PHP_METHOD()
2061 php_stream_printf(out, "Key: Position #" ZEND_ULONG_FMT ":\n", num); in PHP_METHOD()
2064 php_stream_printf(out, in PHP_METHOD()
2077 php_stream_close(out); in PHP_METHOD()
2122 goto out; in dbstmt_method_get()
2130 goto out; in dbstmt_method_get()
2135 goto out; in dbstmt_method_get()
2140 out: in dbstmt_method_get()