Lines Matching refs:val

909 					zval val;  in do_fetch()  local
917 fetch_value(stmt, &val, i++, NULL); in do_fetch()
918 if (Z_TYPE(val) != IS_NULL) { in do_fetch()
919 convert_to_string(&val); in do_fetch()
920 if ((cep = zend_lookup_class(Z_STR(val))) == NULL) { in do_fetch()
928 zval_dtor(&val); in do_fetch()
1009 zval val; in do_fetch() local
1010 fetch_value(stmt, &val, i, NULL); in do_fetch()
1014 zend_symtable_update(Z_ARRVAL_P(return_value), stmt->columns[i].name, &val); in do_fetch()
1022 if (Z_TYPE(val) == IS_LONG) { in do_fetch()
1023 …_index_update((return_all ? Z_ARRVAL_P(return_all) : Z_ARRVAL_P(return_value)), Z_LVAL(val), &tmp); in do_fetch()
1025 convert_to_string(&val); in do_fetch()
1026 …ymtable_update((return_all ? Z_ARRVAL_P(return_all) : Z_ARRVAL_P(return_value)), Z_STR(val), &tmp); in do_fetch()
1028 zval_ptr_dtor(&val); in do_fetch()
1035 zend_symtable_update(Z_ARRVAL_P(return_value), stmt->columns[i].name, &val); in do_fetch()
1036 if (Z_REFCOUNTED(val)) { in do_fetch()
1037 Z_ADDREF(val); in do_fetch()
1039 zend_hash_next_index_insert(Z_ARRVAL_P(return_value), &val); in do_fetch()
1069 zend_hash_next_index_insert_new(Z_ARRVAL(arr), &val); in do_fetch()
1071 zend_hash_update(Z_ARRVAL_P(return_value), stmt->columns[i].name, &val); in do_fetch()
1077 zend_hash_next_index_insert_new(Z_ARRVAL_P(return_value), &val); in do_fetch()
1084 &val); in do_fetch()
1085 zval_ptr_dtor(&val); in do_fetch()
1092 &val); in do_fetch()
1093 zval_ptr_dtor(&val); in do_fetch()
1099 …_unserialize(return_value, (const unsigned char**)&Z_STRVAL(val), Z_STRVAL(val)+Z_STRLEN(val), NUL… in do_fetch()
1107 zval_ptr_dtor(&val); in do_fetch()
1110 …value, ce, (unsigned char *)(Z_TYPE(val) == IS_STRING ? Z_STRVAL(val) : ""), Z_TYPE(val) == IS_STR… in do_fetch()
1111 zval_ptr_dtor(&val); in do_fetch()
1117 zval_ptr_dtor(&val); in do_fetch()
1123 ZVAL_COPY_VALUE(&stmt->fetch.func.values[idx], &val); in do_fetch()
1128 zval_ptr_dtor(&val); in do_fetch()
2569 zval val; in row_prop_exists() local
2571 fetch_value(stmt, &val, colno, NULL); in row_prop_exists()
2572 res = check_empty ? i_zend_is_true(&val) : Z_TYPE(val) != IS_NULL; in row_prop_exists()
2573 zval_dtor(&val); in row_prop_exists()
2612 zval val; in row_get_properties() local
2613 fetch_value(stmt, &val, i, NULL); in row_get_properties()
2615 zend_hash_update(stmt->std.properties, stmt->columns[i].name, &val); in row_get_properties()