Lines Matching refs:current_field

1458 	zval *current_field, *end_field, *start_field;  in php_mysqlnd_rowp_read_binary_protocol()  local
1474 for (i = 0, current_field = start_field; current_field < end_field; current_field++, i++) { in php_mysqlnd_rowp_read_binary_protocol()
1479 current_field, i, in php_mysqlnd_rowp_read_binary_protocol()
1484 ZVAL_NULL(current_field); in php_mysqlnd_rowp_read_binary_protocol()
1488 mysqlnd_ps_fetch_functions[type].func(current_field, &fields_metadata[i], 0, &p); in php_mysqlnd_rowp_read_binary_protocol()
1525 (Z_TYPE_P(current_field) == IS_STRING)? in php_mysqlnd_rowp_read_binary_protocol()
1526 Z_STRLEN_P(current_field) : (size_t)(p - orig_p)); in php_mysqlnd_rowp_read_binary_protocol()
1546 zval *current_field, *end_field, *start_field; in php_mysqlnd_rowp_read_text_protocol_aux() local
1559 for (i = 0, current_field = start_field; current_field < end_field; current_field++, i++) { in php_mysqlnd_rowp_read_text_protocol_aux()
1565 ZVAL_NULL(current_field); in php_mysqlnd_rowp_read_text_protocol_aux()
1615 …ps_fetch_from_1_to_8_bytes(current_field, &(fields_metadata[i]), 0, (const zend_uchar **) &p, len); in php_mysqlnd_rowp_read_text_protocol_aux()
1621 if (Z_TYPE_P(current_field) == IS_LONG && !as_int_or_float) { in php_mysqlnd_rowp_read_text_protocol_aux()
1624 const size_t tmp_len = sprintf((char *)&tmp, ZEND_ULONG_FMT, Z_LVAL_P(current_field)); in php_mysqlnd_rowp_read_text_protocol_aux()
1625 ZVAL_STRINGL(current_field, tmp, tmp_len); in php_mysqlnd_rowp_read_text_protocol_aux()
1626 } else if (Z_TYPE_P(current_field) == IS_STRING) { in php_mysqlnd_rowp_read_text_protocol_aux()
1643 ZVAL_LONG(current_field, (zend_long) v); /* the cast is safe */ in php_mysqlnd_rowp_read_text_protocol_aux()
1663 ZVAL_STRINGL(current_field, (char *)p, len); in php_mysqlnd_rowp_read_text_protocol_aux()
1665 ZVAL_LONG(current_field, (zend_long) v); /* the cast is safe */ in php_mysqlnd_rowp_read_text_protocol_aux()
1673 ZVAL_DOUBLE(current_field, zend_strtod((char *) p, NULL)); in php_mysqlnd_rowp_read_text_protocol_aux()
1678 ZVAL_STRINGL_FAST(current_field, (char *)p, len); in php_mysqlnd_rowp_read_text_protocol_aux()