Lines Matching refs:current_field

1477 	zval *current_field, *end_field, *start_field;  in php_mysqlnd_rowp_read_binary_protocol()  local
1493 for (i = 0, current_field = start_field; current_field < end_field; current_field++, i++) { in php_mysqlnd_rowp_read_binary_protocol()
1498 current_field, i, in php_mysqlnd_rowp_read_binary_protocol()
1503 ZVAL_NULL(current_field); in php_mysqlnd_rowp_read_binary_protocol()
1509 for (j = 0, current_field = start_field; j < i; current_field++, j++) { in php_mysqlnd_rowp_read_binary_protocol()
1510 zval_ptr_dtor(current_field); in php_mysqlnd_rowp_read_binary_protocol()
1515 … mysqlnd_ps_fetch_functions[type].func(current_field, &fields_metadata[i], rbs - row_position, &p); in php_mysqlnd_rowp_read_binary_protocol()
1517 for (j = 0, current_field = start_field; j < i; current_field++, j++) { in php_mysqlnd_rowp_read_binary_protocol()
1518 zval_ptr_dtor(current_field); in php_mysqlnd_rowp_read_binary_protocol()
1558 (Z_TYPE_P(current_field) == IS_STRING)? in php_mysqlnd_rowp_read_binary_protocol()
1559 Z_STRLEN_P(current_field) : (size_t)(p - orig_p)); in php_mysqlnd_rowp_read_binary_protocol()
1579 zval *current_field, *end_field, *start_field; in php_mysqlnd_rowp_read_text_protocol() local
1592 for (i = 0, current_field = start_field; current_field < end_field; current_field++, i++) { in php_mysqlnd_rowp_read_text_protocol()
1598 ZVAL_NULL(current_field); in php_mysqlnd_rowp_read_text_protocol()
1601 for (j = 0, current_field = start_field; j < i; current_field++, j++) { in php_mysqlnd_rowp_read_text_protocol()
1602 zval_ptr_dtor(current_field); in php_mysqlnd_rowp_read_text_protocol()
1648 …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()
1654 if (Z_TYPE_P(current_field) == IS_LONG && !as_int_or_float) { in php_mysqlnd_rowp_read_text_protocol()
1657 const size_t tmp_len = sprintf((char *)&tmp, ZEND_ULONG_FMT, Z_LVAL_P(current_field)); in php_mysqlnd_rowp_read_text_protocol()
1658 ZVAL_STRINGL(current_field, tmp, tmp_len); in php_mysqlnd_rowp_read_text_protocol()
1659 } else if (Z_TYPE_P(current_field) == IS_STRING) { in php_mysqlnd_rowp_read_text_protocol()
1675 ZVAL_LONG(current_field, (zend_long) v); /* the cast is safe */ in php_mysqlnd_rowp_read_text_protocol()
1695 ZVAL_STRINGL(current_field, (char *)p, len); in php_mysqlnd_rowp_read_text_protocol()
1697 ZVAL_LONG(current_field, (zend_long) v); /* the cast is safe */ in php_mysqlnd_rowp_read_text_protocol()
1705 ZVAL_DOUBLE(current_field, zend_strtod((char *) p, NULL)); in php_mysqlnd_rowp_read_text_protocol()
1708 ZVAL_STRINGL_FAST(current_field, (char *)p, len); in php_mysqlnd_rowp_read_text_protocol()