Lines Matching refs:result_type

260 	ZEND_ARG_INFO(0, result_type)
271 ZEND_ARG_INFO(0, result_type)
284 ZEND_ARG_INFO(0, result_type)
528 ZEND_ARG_INFO(0, result_type)
591 ZEND_ARG_INFO(0, result_type)
2715 static void php_pgsql_fetch_hash(INTERNAL_FUNCTION_PARAMETERS, zend_long result_type, int into_obje… argument
2741 result_type = PGSQL_ASSOC;
2743 if (zend_parse_parameters(ZEND_NUM_ARGS(), "r|z!l", &result, &zrow, &result_type) == FAILURE) {
2759 if (!(result_type & PGSQL_BOTH)) {
2790 if (result_type & PGSQL_NUM) {
2793 if (result_type & PGSQL_ASSOC) {
2802 if (result_type & PGSQL_NUM) {
2806 if (result_type & PGSQL_ASSOC) {
2915 long result_type = PGSQL_ASSOC; local
2919 if (zend_parse_parameters(ZEND_NUM_ARGS(), "r|l", &result, &result_type) == FAILURE) {
2923 if (!(result_type & PGSQL_BOTH)) {
2934 if (php_pgsql_result2array(pgsql_result, return_value, result_type) == FAILURE) {
5279 zend_long result_type = PGSQL_STATUS_LONG; local
5285 &result, &result_type) == FAILURE) {
5294 if (result_type == PGSQL_STATUS_LONG) {
5298 else if (result_type == PGSQL_STATUS_STRING) {
5313 zend_long result_type = PGSQL_ASSOC; local
5318 &pgsql_link, &result_type) == FAILURE) {
5326 if (!(result_type & PGSQL_BOTH)) {
5338 if (result_type & PGSQL_NUM) {
5351 if (result_type & PGSQL_ASSOC) {
7055 PHP_PGSQL_API int php_pgsql_result2array(PGresult *pg_result, zval *ret_array, long result_type) argument
7072 if (result_type & PGSQL_ASSOC) {
7075 if (result_type & PGSQL_NUM) {
7082 if (result_type & PGSQL_ASSOC) {
7085 if (result_type & PGSQL_NUM) {
7099 …st char *table, zval *ids_array, zval *ret_array, zend_ulong opt, long result_type, zend_string **… argument
7137 ret = php_pgsql_result2array(pg_result, ret_array, result_type);
7163 long result_type = PGSQL_ASSOC; local
7169 &pgsql_link, &table, &table_len, &ids, &option, &result_type) == FAILURE) {
7176 if (!(result_type & PGSQL_BOTH)) {
7189 if (php_pgsql_select(pg_link, table, ids, return_value, option, result_type, &sql) == FAILURE) {