Lines Matching refs:result_type

1827 static void php_pgsql_fetch_hash(INTERNAL_FUNCTION_PARAMETERS, zend_long result_type, int into_obje…  in php_pgsql_fetch_hash()  argument
1846 result_type = PGSQL_ASSOC; in php_pgsql_fetch_hash()
1848 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "r|l!l", &result, &row, &row_is_null, &result_type) == … in php_pgsql_fetch_hash()
1858 if (!(result_type & PGSQL_BOTH)) { in php_pgsql_fetch_hash()
1889 if (result_type & PGSQL_NUM) { in php_pgsql_fetch_hash()
1892 if (result_type & PGSQL_ASSOC) { in php_pgsql_fetch_hash()
1901 if (result_type & PGSQL_NUM) { in php_pgsql_fetch_hash()
1905 if (result_type & PGSQL_ASSOC) { in php_pgsql_fetch_hash()
2003 zend_long result_type = PGSQL_ASSOC; in PHP_FUNCTION() local
2007 if (zend_parse_parameters(ZEND_NUM_ARGS(), "r|l", &result, &result_type) == FAILURE) { in PHP_FUNCTION()
2011 if (!(result_type & PGSQL_BOTH)) { in PHP_FUNCTION()
2022 php_pgsql_result2array(pgsql_result, return_value, result_type); in PHP_FUNCTION()
4009 zend_long result_type = PGSQL_STATUS_LONG; in PHP_FUNCTION() local
4014 if (zend_parse_parameters(ZEND_NUM_ARGS(), "r|l", &result, &result_type) == FAILURE) { in PHP_FUNCTION()
4023 if (result_type == PGSQL_STATUS_LONG) { in PHP_FUNCTION()
4027 else if (result_type == PGSQL_STATUS_STRING) { in PHP_FUNCTION()
4040 zend_long result_type = PGSQL_ASSOC; in PHP_FUNCTION() local
4044 if (zend_parse_parameters(ZEND_NUM_ARGS(), "r|l", &pgsql_link, &result_type) == FAILURE) { in PHP_FUNCTION()
4052 if (!(result_type & PGSQL_BOTH)) { in PHP_FUNCTION()
4064 if (result_type & PGSQL_NUM) { in PHP_FUNCTION()
4072 if (result_type & PGSQL_ASSOC) { in PHP_FUNCTION()
5796 PHP_PGSQL_API void php_pgsql_result2array(PGresult *pg_result, zval *ret_array, long result_type) in php_pgsql_result2array() argument
5811 if (result_type & PGSQL_ASSOC) { in php_pgsql_result2array()
5814 if (result_type & PGSQL_NUM) { in php_pgsql_result2array()
5821 if (result_type & PGSQL_ASSOC) { in php_pgsql_result2array()
5824 if (result_type & PGSQL_NUM) { in php_pgsql_result2array()
5836 …st char *table, zval *ids_array, zval *ret_array, zend_ulong opt, long result_type, zend_string **… in php_pgsql_select() argument
5874 php_pgsql_result2array(pg_result, ret_array, result_type); in php_pgsql_select()
5900 zend_long result_type = PGSQL_ASSOC; in PHP_FUNCTION() local
5906 &pgsql_link, &table, &table_len, &ids, &option, &result_type) == FAILURE) { in PHP_FUNCTION()
5920 if (!(result_type & PGSQL_BOTH)) { in PHP_FUNCTION()
5933 if (php_pgsql_select(pg_link, table, ids, return_value, option, result_type, &sql) == FAILURE) { in PHP_FUNCTION()