values 80 ext/mysqlnd/mysqlnd.h PHPAPI void mysqlnd_minfo_print_hash(zval *values); values 111 ext/mysqlnd/mysqlnd.h #define mysqlnd_get_connection_stats(conn, values) ((conn)->data)->m->get_statistics((conn)->data, (values) TSRMLS_CC ZEND_FILE_LINE_CC) values 112 ext/mysqlnd/mysqlnd.h #define mysqlnd_get_client_stats(values) _mysqlnd_get_client_stats((values) TSRMLS_CC ZEND_FILE_LINE_CC) values 298 ext/mysqlnd/mysqlnd.h PHPAPI void mysqlnd_minfo_print_hash(zval *values); values 81 ext/mysqlnd/mysqlnd_driver.c mysqlnd_plugin_core.plugin_header.plugin_stats.values = mysqlnd_global_stats; values 74 ext/mysqlnd/mysqlnd_plugin.c mysqlnd_stats_end(plugin->plugin_header.plugin_stats.values); values 75 ext/mysqlnd/mysqlnd_plugin.c plugin->plugin_header.plugin_stats.values = NULL; values 86 ext/mysqlnd/mysqlnd_plugin.c mysqlnd_example_plugin.plugin_header.plugin_stats.values = mysqlnd_plugin_example_stats; values 209 ext/mysqlnd/mysqlnd_statistics.c sprintf((char *)&tmp, MYSQLND_LLU_SPEC, stats->values[i]); values 240 ext/mysqlnd/mysqlnd_statistics.c (*stats)->values = calloc(statistic_count, sizeof(uint64_t)); values 259 ext/mysqlnd/mysqlnd_statistics.c free(stats->values); values 57 ext/mysqlnd/mysqlnd_statistics.h (stats)->values[(statistic)] += (value); \ values 267 ext/mysqlnd/mysqlnd_structs.h uint64_t *values; values 44 ext/mysqlnd/php_mysqlnd.c mysqlnd_minfo_print_hash(zval *values) values 49 ext/mysqlnd/php_mysqlnd.c zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(values), &pos_values); values 50 ext/mysqlnd/php_mysqlnd.c while (zend_hash_get_current_data_ex(Z_ARRVAL_P(values), (void **)&values_entry, &pos_values) == SUCCESS) { values 55 ext/mysqlnd/php_mysqlnd.c zend_hash_get_current_key_ex(Z_ARRVAL_P(values), &string_key, &string_key_len, &num_key, 0, &pos_values); values 60 ext/mysqlnd/php_mysqlnd.c zend_hash_move_forward_ex(Z_ARRVAL_P(values), &pos_values); values 71 ext/mysqlnd/php_mysqlnd.c if (plugin_header->plugin_stats.values) { values 73 ext/mysqlnd/php_mysqlnd.c zval values; values 76 ext/mysqlnd/php_mysqlnd.c mysqlnd_fill_stats_hash(plugin_header->plugin_stats.values, plugin_header->plugin_stats.names, &values TSRMLS_CC ZEND_FILE_LINE_CC); values 80 ext/mysqlnd/php_mysqlnd.c mysqlnd_minfo_print_hash(&values); values 82 ext/mysqlnd/php_mysqlnd.c zval_dtor(&values); values 179 ext/odbc/birdstep.c if ( res && res->values ) { values 182 ext/odbc/birdstep.c if ( res->values[i].value ) values 183 ext/odbc/birdstep.c efree(res->values[i].value); values 185 ext/odbc/birdstep.c efree(res->values); values 397 ext/odbc/birdstep.c res->values = (VResVal *)safe_emalloc(sizeof(VResVal), cols, 0); values 401 ext/odbc/birdstep.c res->values[i].name,sizeof(res->values[i].name), values 404 ext/odbc/birdstep.c NULL,0,NULL,&res->values[i].valtype); values 405 ext/odbc/birdstep.c switch ( res->values[i].valtype ) { values 408 ext/odbc/birdstep.c res->values[i].value = NULL; values 415 ext/odbc/birdstep.c res->values[i].value = (char *)emalloc(coldesc+1); values 416 ext/odbc/birdstep.c SQLBindCol(res->hstmt,i+1,SQL_C_CHAR, res->values[i].value,coldesc+1, &res->values[i].vallen); values 486 ext/odbc/birdstep.c if ( !strcasecmp(res->values[i].name,field)) { values 516 ext/odbc/birdstep.c switch ( res->values[indx].valtype ) { values 523 ext/odbc/birdstep.c if ( !res->values[indx].value ) { values 524 ext/odbc/birdstep.c res->values[indx].value = emalloc(4096); values 527 ext/odbc/birdstep.c res->values[indx].value,4095,&res->values[indx].vallen); values 539 ext/odbc/birdstep.c if ( res->values[indx].valtype == SQL_LONGVARCHAR ) { values 540 ext/odbc/birdstep.c RETURN_STRING(res->values[indx].value,TRUE); values 542 ext/odbc/birdstep.c RETURN_LONG((long)res->values[indx].value); values 545 ext/odbc/birdstep.c if ( res->values[indx].value != NULL ) { values 546 ext/odbc/birdstep.c RETURN_STRING(res->values[indx].value,TRUE); values 682 ext/odbc/birdstep.c RETURN_STRING(res->values[indx].name,TRUE); values 45 ext/odbc/php_birdstep.h VResVal *values; values 426 ext/odbc/php_odbc.c if (res->values) { values 428 ext/odbc/php_odbc.c if (res->values[i].value) values 429 ext/odbc/php_odbc.c efree(res->values[i].value); values 431 ext/odbc/php_odbc.c efree(res->values); values 432 ext/odbc/php_odbc.c res->values = NULL; values 957 ext/odbc/php_odbc.c result->values = (odbc_result_value *) safe_emalloc(sizeof(odbc_result_value), result->numcols, 0); values 967 ext/odbc/php_odbc.c result->values[i].name, sizeof(result->values[i].name), &colnamelen, 0); values 969 ext/odbc/php_odbc.c NULL, 0, NULL, &result->values[i].coltype); values 975 ext/odbc/php_odbc.c switch(result->values[i].coltype) { values 983 ext/odbc/php_odbc.c result->values[i].value = NULL; values 988 ext/odbc/php_odbc.c result->values[i].value = (char *)emalloc(27); values 989 ext/odbc/php_odbc.c SQLBindCol(result->stmt, (SQLUSMALLINT)(i+1), SQL_C_CHAR, result->values[i].value, values 990 ext/odbc/php_odbc.c 27, &result->values[i].vallen); values 1015 ext/odbc/php_odbc.c if (result->values[i].coltype == SQL_WVARCHAR && displaysize == 0) { values 1016 ext/odbc/php_odbc.c result->values[i].coltype = SQL_WLONGVARCHAR; values 1017 ext/odbc/php_odbc.c result->values[i].value = NULL; values 1022 ext/odbc/php_odbc.c if (result->values[i].coltype == SQL_TIMESTAMP) { values 1030 ext/odbc/php_odbc.c result->values[i].value = (char *)emalloc(displaysize + 1); values 1031 ext/odbc/php_odbc.c rc = SQLBindCol(result->stmt, (SQLUSMALLINT)(i+1), SQL_C_CHAR, result->values[i].value, values 1032 ext/odbc/php_odbc.c displaysize + 1, &result->values[i].vallen); values 1255 ext/odbc/php_odbc.c result->values = NULL; values 1489 ext/odbc/php_odbc.c result->values = NULL; values 1681 ext/odbc/php_odbc.c result->values = NULL; values 1759 ext/odbc/php_odbc.c switch(result->values[i].coltype) { values 1774 ext/odbc/php_odbc.c if (IS_SQL_LONG(result->values[i].coltype) && result->longreadlen <= 0) { values 1782 ext/odbc/php_odbc.c rc = SQLGetData(result->stmt, (SQLUSMALLINT)(i + 1), sql_c_type, buf, result->longreadlen + 1, &result->values[i].vallen); values 1792 ext/odbc/php_odbc.c } else if (result->values[i].vallen == SQL_NULL_DATA) { values 1796 ext/odbc/php_odbc.c Z_STRLEN_P(tmp) = result->values[i].vallen; values 1802 ext/odbc/php_odbc.c if (result->values[i].vallen == SQL_NULL_DATA) { values 1806 ext/odbc/php_odbc.c Z_STRLEN_P(tmp) = result->values[i].vallen; values 1807 ext/odbc/php_odbc.c Z_STRVAL_P(tmp) = estrndup(result->values[i].value,Z_STRLEN_P(tmp)); values 1814 ext/odbc/php_odbc.c if (!*(result->values[i].name) && Z_TYPE_P(tmp) == IS_STRING) { values 1817 ext/odbc/php_odbc.c zend_hash_update(Z_ARRVAL_P(return_value), result->values[i].name, strlen(result->values[i].name)+1, &tmp, sizeof(zval *), NULL); values 1916 ext/odbc/php_odbc.c switch(result->values[i].coltype) { values 1930 ext/odbc/php_odbc.c if (IS_SQL_LONG(result->values[i].coltype) && result->longreadlen <= 0) { values 1938 ext/odbc/php_odbc.c rc = SQLGetData(result->stmt, (SQLUSMALLINT)(i + 1),sql_c_type, buf, result->longreadlen + 1, &result->values[i].vallen); values 1947 ext/odbc/php_odbc.c } else if (result->values[i].vallen == SQL_NULL_DATA) { values 1951 ext/odbc/php_odbc.c Z_STRLEN_P(tmp) = result->values[i].vallen; values 1957 ext/odbc/php_odbc.c if (result->values[i].vallen == SQL_NULL_DATA) { values 1961 ext/odbc/php_odbc.c Z_STRLEN_P(tmp) = result->values[i].vallen; values 1962 ext/odbc/php_odbc.c Z_STRVAL_P(tmp) = estrndup(result->values[i].value,Z_STRLEN_P(tmp)); values 2097 ext/odbc/php_odbc.c if (result->values == NULL) { values 2103 ext/odbc/php_odbc.c if (!strcasecmp(result->values[i].name, field)) { values 2137 ext/odbc/php_odbc.c switch(result->values[field_ind].coltype) { values 2151 ext/odbc/php_odbc.c if (IS_SQL_LONG(result->values[field_ind].coltype)) { values 2171 ext/odbc/php_odbc.c field, fieldsize, &result->values[field_ind].vallen); values 2179 ext/odbc/php_odbc.c if (result->values[field_ind].vallen == SQL_NULL_DATA) { values 2188 ext/odbc/php_odbc.c if ((result->values[field_ind].coltype == SQL_LONGVARCHAR) values 2190 ext/odbc/php_odbc.c || (result->values[field_ind].coltype == SQL_WLONGVARCHAR) values 2198 ext/odbc/php_odbc.c RETURN_STRINGL(field, (rc == SQL_SUCCESS_WITH_INFO) ? fieldsize : result->values[field_ind].vallen, 0); values 2202 ext/odbc/php_odbc.c if (result->values[field_ind].vallen == SQL_NULL_DATA) { values 2205 ext/odbc/php_odbc.c RETURN_STRINGL(result->values[field_ind].value, result->values[field_ind].vallen, 1); values 2218 ext/odbc/php_odbc.c rc = SQLGetData(result->stmt, (SQLUSMALLINT)(field_ind + 1),sql_c_type, field, fieldsize, &result->values[field_ind].vallen); values 2226 ext/odbc/php_odbc.c if (result->values[field_ind].vallen == SQL_NULL_DATA) { values 2231 ext/odbc/php_odbc.c PHPWRITE(field,(rc == SQL_SUCCESS_WITH_INFO) ? 4095 : result->values[field_ind].vallen); values 2288 ext/odbc/php_odbc.c php_printf("<th>%s</th>", result->values[i].name); values 2298 ext/odbc/php_odbc.c switch(result->values[i].coltype) { values 2311 ext/odbc/php_odbc.c if (IS_SQL_LONG(result->values[i].coltype) && values 2321 ext/odbc/php_odbc.c rc = SQLGetData(result->stmt, (SQLUSMALLINT)(i + 1),sql_c_type, buf, result->longreadlen, &result->values[i].vallen); values 2333 ext/odbc/php_odbc.c } else if (result->values[i].vallen == SQL_NULL_DATA) { values 2337 ext/odbc/php_odbc.c PHPWRITE(buf, result->values[i].vallen); values 2342 ext/odbc/php_odbc.c if (result->values[i].vallen == SQL_NULL_DATA) { values 2345 ext/odbc/php_odbc.c php_printf("<td>%s</td>", result->values[i].value); values 2378 ext/odbc/php_odbc.c if (result->values) { values 2380 ext/odbc/php_odbc.c if (result->values[i].value) { values 2381 ext/odbc/php_odbc.c efree(result->values[i].value); values 2384 ext/odbc/php_odbc.c efree(result->values); values 2385 ext/odbc/php_odbc.c result->values = NULL; values 2779 ext/odbc/php_odbc.c if (result->values) { values 2781 ext/odbc/php_odbc.c if (result->values[i].value) { values 2782 ext/odbc/php_odbc.c efree(result->values[i].value); values 2785 ext/odbc/php_odbc.c efree(result->values); values 2786 ext/odbc/php_odbc.c result->values = NULL; values 2802 ext/odbc/php_odbc.c result->values = NULL; values 2859 ext/odbc/php_odbc.c RETURN_STRING(result->values[pv_num - 1].name, 1); values 2937 ext/odbc/php_odbc.c if (strcasecmp(result->values[i].name, fname) == 0) { values 3172 ext/odbc/php_odbc.c result->values = NULL; values 3241 ext/odbc/php_odbc.c result->values = NULL; values 3304 ext/odbc/php_odbc.c result->values = NULL; values 3382 ext/odbc/php_odbc.c result->values = NULL; values 3442 ext/odbc/php_odbc.c result->values = NULL; values 3502 ext/odbc/php_odbc.c result->values = NULL; values 3569 ext/odbc/php_odbc.c result->values = NULL; values 3635 ext/odbc/php_odbc.c result->values = NULL; values 3706 ext/odbc/php_odbc.c result->values = NULL; values 3774 ext/odbc/php_odbc.c result->values = NULL; values 3835 ext/odbc/php_odbc.c result->values = NULL; values 245 ext/odbc/php_odbc_includes.h odbc_result_value *values; values 812 ext/pdo/pdo_stmt.c stmt->fetch.func.values = safe_emalloc(sizeof(zval*), stmt->column_count, 0); values 831 ext/pdo/pdo_stmt.c if (stmt->fetch.func.values) { values 832 ext/pdo/pdo_stmt.c efree(stmt->fetch.func.values); values 833 ext/pdo/pdo_stmt.c stmt->fetch.func.values = NULL; values 1149 ext/pdo/pdo_stmt.c stmt->fetch.func.values[idx] = val; values 1150 ext/pdo/pdo_stmt.c stmt->fetch.cls.fci.params[idx] = &stmt->fetch.func.values[idx]; values 1199 ext/pdo/pdo_stmt.c zval_ptr_dtor(&stmt->fetch.func.values[idx]); values 631 ext/pdo/php_pdo_driver.h zval **values; /* freed */ values 553 ext/pgsql/pgsql.c ZEND_ARG_INFO(0, values) values 560 ext/pgsql/pgsql.c ZEND_ARG_INFO(0, values) values 5786 ext/pgsql/pgsql.c PHP_PGSQL_API int php_pgsql_convert(PGconn *pg_link, const char *table_name, const zval *values, zval *result, ulong opt TSRMLS_DC) values 5797 ext/pgsql/pgsql.c assert(Z_TYPE_P(values) == IS_ARRAY); values 5813 ext/pgsql/pgsql.c for (zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(values), &pos); values 5814 ext/pgsql/pgsql.c zend_hash_get_current_data_ex(Z_ARRVAL_P(values), (void **)&val, &pos) == SUCCESS; values 5815 ext/pgsql/pgsql.c zend_hash_move_forward_ex(Z_ARRVAL_P(values), &pos)) { values 5819 ext/pgsql/pgsql.c if ((key_type = zend_hash_get_current_key_ex(Z_ARRVAL_P(values), &field, &field_len, &num_idx, 0, &pos)) == HASH_KEY_NON_EXISTENT) { values 6445 ext/pgsql/pgsql.c zval *pgsql_link, *values; values 6453 ext/pgsql/pgsql.c "rsa|l", &pgsql_link, &table_name, &table_name_len, &values, &option) == FAILURE) { values 6471 ext/pgsql/pgsql.c if (php_pgsql_convert(pg_link, table_name, values, return_value, option TSRMLS_CC) == FAILURE) { values 6668 ext/pgsql/pgsql.c zval *pgsql_link, *values; values 6679 ext/pgsql/pgsql.c &pgsql_link, &table, &table_len, &values, &option) == FAILURE) { values 6696 ext/pgsql/pgsql.c if (php_pgsql_insert(pg_link, table, values, option|PGSQL_DML_STRING, &sql TSRMLS_CC) == FAILURE) { values 6737 ext/pgsql/pgsql.c } else if (php_pgsql_insert(pg_link, table, values, option, &sql TSRMLS_CC) == FAILURE) { values 6890 ext/pgsql/pgsql.c zval *pgsql_link, *values, *ids; values 6898 ext/pgsql/pgsql.c &pgsql_link, &table, &table_len, &values, &ids, &option) == FAILURE) { values 6911 ext/pgsql/pgsql.c if (php_pgsql_update(pg_link, table, values, ids, option, &sql TSRMLS_CC) == FAILURE) { values 214 ext/pgsql/php_pgsql.h PHP_PGSQL_API int php_pgsql_convert(PGconn *pg_link, const char *table_name, const zval *values, zval *result, ulong opt TSRMLS_DC); values 215 ext/pgsql/php_pgsql.h PHP_PGSQL_API int php_pgsql_insert(PGconn *pg_link, const char *table, zval *values, ulong opt, char **sql TSRMLS_DC); values 216 ext/pgsql/php_pgsql.h PHP_PGSQL_API int php_pgsql_update(PGconn *pg_link, const char *table, zval *values, zval *ids, ulong opt , char **sql TSRMLS_DC); values 4409 ext/standard/array.c zval *values, *keys; values 4414 ext/standard/array.c if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "aa", &keys, &values) == FAILURE) { values 4419 ext/standard/array.c num_values = zend_hash_num_elements(Z_ARRVAL_P(values)); values 4433 ext/standard/array.c zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(values), &pos_values); values 4435 ext/standard/array.c zend_hash_get_current_data_ex(Z_ARRVAL_P(values), (void **)&entry_values, &pos_values) == SUCCESS values 4459 ext/standard/array.c zend_hash_move_forward_ex(Z_ARRVAL_P(values), &pos_values); values 601 ext/standard/basic_functions.c ZEND_ARG_INFO(0, values) /* ARRAY_INFO(0, values, 0) */ values 319 ext/standard/iptc.c zval *values, **element; values 369 ext/standard/iptc.c MAKE_STD_ZVAL(values); values 370 ext/standard/iptc.c array_init(values); values 372 ext/standard/iptc.c zend_hash_update(Z_ARRVAL_P(return_value), key, strlen(key) + 1, (void *) &values, sizeof(zval*), (void **) &element); values 43 ext/standard/math.c static const double values[] = { values 50 ext/standard/math.c if (value < values[result]) { values 55 ext/standard/math.c if (value < values[result]) { values 60 ext/standard/math.c if (value < values[result]) { values 65 ext/standard/math.c if (value < values[result]) { values 70 ext/standard/math.c if (value < values[result]) { values 169 ext/xml/xml.c ZEND_ARG_INFO(1, values) values 734 ext/xml/xml.c zval **element, *values; values 741 ext/xml/xml.c MAKE_STD_ZVAL(values); values 743 ext/xml/xml.c array_init(values); values 745 ext/xml/xml.c zend_hash_update(Z_ARRVAL_P(parser->info), name, strlen(name)+1, (void *) &values, sizeof(zval*), (void **) &element); values 120 main/network.c } values[] = { values 140 main/network.c for (i = 0; values[i].msg != NULL; i++) { values 141 main/network.c if (values[i].code == code) { values 142 main/network.c return (char *)values[i].msg; values 62 win32/registry.c DWORD keys, values, max_key, max_name, max_value; values 66 win32/registry.c if (RegQueryInfoKey(key, NULL, NULL, NULL, &keys, &max_key, NULL, &values, &max_name, &max_value, NULL, NULL) == ERROR_SUCCESS) { values 68 win32/registry.c if (values) { values 75 win32/registry.c for (i = 0; i < values; i++) {