Lines Matching refs:current_field
1469 zval *current_field, *end_field, *start_field; in php_mysqlnd_rowp_read_binary_protocol() local
1485 for (i = 0, current_field = start_field; current_field < end_field; current_field++, i++) { in php_mysqlnd_rowp_read_binary_protocol()
1490 current_field, i, in php_mysqlnd_rowp_read_binary_protocol()
1495 ZVAL_NULL(current_field); in php_mysqlnd_rowp_read_binary_protocol()
1499 mysqlnd_ps_fetch_functions[type].func(current_field, &fields_metadata[i], 0, &p); in php_mysqlnd_rowp_read_binary_protocol()
1536 (Z_TYPE_P(current_field) == IS_STRING)? in php_mysqlnd_rowp_read_binary_protocol()
1537 Z_STRLEN_P(current_field) : (size_t)(p - orig_p)); in php_mysqlnd_rowp_read_binary_protocol()
1557 zval *current_field, *end_field, *start_field; in php_mysqlnd_rowp_read_text_protocol_aux() local
1570 for (i = 0, current_field = start_field; current_field < end_field; current_field++, i++) { in php_mysqlnd_rowp_read_text_protocol_aux()
1576 ZVAL_NULL(current_field); in php_mysqlnd_rowp_read_text_protocol_aux()
1626 …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()
1632 if (Z_TYPE_P(current_field) == IS_LONG && !as_int_or_float) { in php_mysqlnd_rowp_read_text_protocol_aux()
1635 const size_t tmp_len = sprintf((char *)&tmp, ZEND_ULONG_FMT, Z_LVAL_P(current_field)); in php_mysqlnd_rowp_read_text_protocol_aux()
1636 ZVAL_STRINGL(current_field, tmp, tmp_len); in php_mysqlnd_rowp_read_text_protocol_aux()
1637 } else if (Z_TYPE_P(current_field) == IS_STRING) { in php_mysqlnd_rowp_read_text_protocol_aux()
1654 ZVAL_LONG(current_field, (zend_long) v); /* the cast is safe */ in php_mysqlnd_rowp_read_text_protocol_aux()
1674 ZVAL_STRINGL(current_field, (char *)p, len); in php_mysqlnd_rowp_read_text_protocol_aux()
1676 ZVAL_LONG(current_field, (zend_long) v); /* the cast is safe */ in php_mysqlnd_rowp_read_text_protocol_aux()
1684 ZVAL_DOUBLE(current_field, zend_strtod((char *) p, NULL)); in php_mysqlnd_rowp_read_text_protocol_aux()
1689 ZVAL_EMPTY_STRING(current_field); in php_mysqlnd_rowp_read_text_protocol_aux()
1691 ZVAL_INTERNED_STR(current_field, ZSTR_CHAR((zend_uchar)*(char *)p)); in php_mysqlnd_rowp_read_text_protocol_aux()
1693 ZVAL_STRINGL(current_field, (char *)p, len); in php_mysqlnd_rowp_read_text_protocol_aux()