Lines Matching refs:out
2016 zval *stream, *out; in PHP_FUNCTION() local
2023 …if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS(), "rzl|Sl", &stream, &out, &msgno, §ion, &… in PHP_FUNCTION()
2040 switch (Z_TYPE_P(out)) in PHP_FUNCTION()
2045 php_stream_from_zval(writer, out); in PHP_FUNCTION()
2049 if (!try_convert_to_string(out)) { in PHP_FUNCTION()
2053 writer = php_stream_open_wrapper(Z_STRVAL_P(out), "wb", REPORT_ERRORS, NULL); in PHP_FUNCTION()
2350 unsigned char *out, *outp; in PHP_FUNCTION() local
2422 out = emalloc(outlen + 1); in PHP_FUNCTION()
2425 outp = out; in PHP_FUNCTION()
2473 if (outp - out != outlen) { in PHP_FUNCTION()
2474 php_error_docref(NULL, E_WARNING, "outp - out [%zd] != outlen [%d]", outp - out, outlen); in PHP_FUNCTION()
2478 RETURN_STRINGL((char*)out, outlen); in PHP_FUNCTION()
2488 zend_string *out; in PHP_FUNCTION() local
2538 out = zend_string_safe_alloc(1, outlen, 0, 0); in PHP_FUNCTION()
2541 outp = (unsigned char*)ZSTR_VAL(out); in PHP_FUNCTION()
2588 RETURN_STR(out); in PHP_FUNCTION()
2601 unsigned char *out; in php_imap_mutf7() local
2612 out = utf8_to_mutf7((unsigned char *) ZSTR_VAL(in)); in php_imap_mutf7()
2614 out = utf8_from_mutf7((unsigned char *) ZSTR_VAL(in)); in php_imap_mutf7()
2617 if (out == NIL) { in php_imap_mutf7()
2620 RETVAL_STRING((char *)out); in php_imap_mutf7()
2621 fs_give((void**) &out); in php_imap_mutf7()