output_opts       369 ext/xmlrpc/xmlrpc-epi-php.c static void set_output_options(php_output_options* options, zval* output_opts)
output_opts       381 ext/xmlrpc/xmlrpc-epi-php.c 		if (output_opts && Z_TYPE_P(output_opts) == IS_ARRAY) {
output_opts       385 ext/xmlrpc/xmlrpc-epi-php.c 			if (zend_hash_find(Z_ARRVAL_P(output_opts), OUTPUT_TYPE_KEY, OUTPUT_TYPE_KEY_LEN + 1, (void**) &val) == SUCCESS) {
output_opts       396 ext/xmlrpc/xmlrpc-epi-php.c 			if (zend_hash_find(Z_ARRVAL_P(output_opts), VERBOSITY_KEY, VERBOSITY_KEY_LEN + 1, (void**) &val) == SUCCESS) {
output_opts       409 ext/xmlrpc/xmlrpc-epi-php.c 			if (zend_hash_find(Z_ARRVAL_P(output_opts), VERSION_KEY, VERSION_KEY_LEN + 1, (void**) &val) == SUCCESS) {
output_opts       425 ext/xmlrpc/xmlrpc-epi-php.c 			if (zend_hash_find(Z_ARRVAL_P(output_opts), ENCODING_KEY, ENCODING_KEY_LEN + 1, (void**)&val) == SUCCESS) {
output_opts       432 ext/xmlrpc/xmlrpc-epi-php.c 			if (zend_hash_find(Z_ARRVAL_P(output_opts), ESCAPING_KEY, ESCAPING_KEY_LEN + 1, (void**)&val) == SUCCESS) {
output_opts      1106 ext/xmlrpc/xmlrpc-epi-php.c 	zval **caller_params, *handle, *output_opts = NULL;
output_opts      1112 ext/xmlrpc/xmlrpc-epi-php.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rsZ|a", &handle, &rawxml, &rawxml_len, &caller_params, &output_opts) != SUCCESS) {
output_opts      1119 ext/xmlrpc/xmlrpc-epi-php.c 		set_output_options(&out, output_opts);