| /PHP_TRUNK/ext/mysqli/tests/ |
| H A D | connect.inc | 3 Default values are "localhost", "root", 5 Change the MYSQL_TEST environment values
|
| /PHP_TRUNK/ext/spl/examples/ |
| H A D | dualiterator.inc | 134 * current and key values or both are non valid. 145 * and key values or both are non valid.
|
| H A D | recursivecomparedualiterator.inc | 53 * current and key values or both are non valid. 61 * and key values or both are non valid.
|
| H A D | recursivedualiterator.inc | 54 * state and identical current and key values or both are non valid. 63 * state and equal current and key values or both are invalid.
|
| /PHP_TRUNK/ext/spl/internal/ |
| H A D | regexiterator.inc | 28 const SPLIT = 3; /**< Mode: Return the split values (if any) */
|
| /PHP_TRUNK/ext/standard/tests/file/ |
| H A D | file.inc | 12 stat with the corresponding named key values of 14 compare_stats() : Compares two stat values 45 "alphanumeric" = fills with alphnumeric values 91 "alphanumeric" = fills with alphnumeric values 527 Compares the each of the first 13 values of the stat array with the 528 corresponding next 13 values of the same stat for equality 546 // compare the values in the stat, which are accessed using numeric key with 547 // values accessed using string keys 575 Compares two stat values, stat value should be obtained by stat/lstat 602 // compare values o [all...] |
| /PHP_TRUNK/ext/odbc/ |
| H A D | birdstep.c | 179 if ( res && res->values ) { 182 if ( res->values[i].value ) 183 efree(res->values[i].value); 185 efree(res->values); 397 res->values = (VResVal *)safe_emalloc(sizeof(VResVal), cols, 0); 401 res->values[i].name,sizeof(res->values[i].name), 404 NULL,0,NULL,&res->values[i].valtype); 405 switch ( res->values[i].valtype ) { 408 res->values[ [all...] |
| H A D | php_birdstep.h | 45 VResVal *values; member in struct:Vresult
|
| H A D | php_odbc.c | 426 if (res->values) { 428 if (res->values[i].value) 429 efree(res->values[i].value); 431 efree(res->values); 432 res->values = NULL; 785 * SQLSpecialColumns values 796 * SQLStatistics values 949 result->values = (odbc_result_value *) safe_emalloc(sizeof(odbc_result_value), result->numcols, 0); 956 result->values[i].name, sizeof(result->values[ [all...] |
| H A D | php_odbc_includes.h | 243 odbc_result_value *values; member in struct:odbc_result
|
| /PHP_TRUNK/ext/pdo/ |
| H A D | php_pdo_driver.h | 98 PDO_FETCH_KEY_PAIR, /* fetch into an array where the 1st column is a key and all subsequent columns are values */ 160 Class values other than '01', except for the class 'IM', 166 subclass for that SQLSTATE. The assignment of class and subclass values is 375 * pdo_type => an integer, one of the PDO_PARAM_XXX values 621 zval **values; /* freed */ member in struct:_pdo_stmt_t::__anon144::__anon146
|
| H A D | pdo_stmt.c | 824 stmt->fetch.func.values = safe_emalloc(sizeof(zval*), stmt->column_count, 0); 843 if (stmt->fetch.func.values) { 844 efree(stmt->fetch.func.values); 845 stmt->fetch.func.values = NULL; 852 * If return_value is not null, store values into it according to HOW. */ 1163 stmt->fetch.func.values[idx] = val; 1164 stmt->fetch.cls.fci.params[idx] = &stmt->fetch.func.values[idx]; 1213 zval_ptr_dtor(&stmt->fetch.func.values[idx]);
|
| /PHP_TRUNK/ext/pgsql/ |
| H A D | php_pgsql.h | 202 PHP_PGSQL_API int php_pgsql_convert(PGconn *pg_link, const char *table_name, const zval *values, zval *result, ulong opt TSRMLS_DC); 203 PHP_PGSQL_API int php_pgsql_insert(PGconn *pg_link, const char *table, zval *values, ulong opt, char **sql TSRMLS_DC); 204 PHP_PGSQL_API int php_pgsql_update(PGconn *pg_link, const char *table, zval *values, zval *ids, ulong opt , char **sql TSRMLS_DC);
|
| H A D | pgsql.c | 524 ZEND_ARG_INFO(0, values) 531 ZEND_ARG_INFO(0, values) 2373 Returns values from a result identifier */ 5254 * check and convert array values (fieldname=>vlaue pair) for sql 5256 PHP_PGSQL_API int php_pgsql_convert(PGconn *pg_link, const char *table_name, const zval *values, zval *result, ulong opt TSRMLS_DC) argument 5266 assert(Z_TYPE_P(values) == IS_ARRAY); 5280 for (zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(values), &pos); 5281 zend_hash_get_current_data_ex(Z_ARRVAL_P(values), (void **)&val, &pos) == SUCCESS; 5282 zend_hash_move_forward_ex(Z_ARRVAL_P(values), &pos)) { 5286 if ((key_type = zend_hash_get_current_key_ex(Z_ARRVAL_P(values), 5887 zval *pgsql_link, *values; local 6055 zval *pgsql_link, *values; local 6211 zval *pgsql_link, *values, *ids; local [all...] |
| /PHP_TRUNK/ext/standard/ |
| H A D | iptc.c | 304 zval *values, **element; local 351 MAKE_STD_ZVAL(values); 352 array_init(values); 354 zend_hash_update(Z_ARRVAL_P(return_value), key, strlen(key) + 1, (void *) &values, sizeof(zval*), (void **) &element);
|
| H A D | math.c | 43 static const double values[] = { local 50 if (value < values[result]) { 55 if (value < values[result]) { 60 if (value < values[result]) { 65 if (value < values[result]) { 70 if (value < values[result]) {
|
| /PHP_TRUNK/ext/xml/ |
| H A D | xml.c | 169 ZEND_ARG_INFO(1, values) 734 zval **element, *values; local 741 MAKE_STD_ZVAL(values); 743 array_init(values); 745 zend_hash_update(Z_ARRVAL_P(parser->info), name, strlen(name)+1, (void *) &values, sizeof(zval*), (void **) &element); 1451 /* {{{ proto int xml_parse_into_struct(resource parser, string data, array &values [, array &index ])
|
| /PHP_TRUNK/ext/mysqlnd/ |
| H A D | mysqlnd_driver.c | 81 mysqlnd_plugin_core.plugin_header.plugin_stats.values = mysqlnd_global_stats;
|
| H A D | mysqlnd_plugin.c | 74 mysqlnd_stats_end(plugin->plugin_header.plugin_stats.values); 75 plugin->plugin_header.plugin_stats.values = NULL; 86 mysqlnd_example_plugin.plugin_header.plugin_stats.values = mysqlnd_plugin_example_stats;
|
| H A D | mysqlnd_statistics.c | 208 sprintf((char *)&tmp, MYSQLND_LLU_SPEC, stats->values[i]); 239 (*stats)->values = calloc(statistic_count, sizeof(uint64_t)); 258 free(stats->values);
|
| H A D | mysqlnd_statistics.h | 57 (stats)->values[(statistic)] += (value); \
|
| H A D | php_mysqlnd.c | 44 mysqlnd_minfo_print_hash(zval *values) argument 49 zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(values), &pos_values); 50 while (zend_hash_get_current_data_ex(Z_ARRVAL_P(values), (void **)&values_entry, &pos_values) == SUCCESS) { 55 zend_hash_get_current_key_ex(Z_ARRVAL_P(values), &string_key, &string_key_len, &num_key, 0, &pos_values); 60 zend_hash_move_forward_ex(Z_ARRVAL_P(values), &pos_values); 71 if (plugin_header->plugin_stats.values) { 73 zval values; local 76 mysqlnd_fill_stats_hash(plugin_header->plugin_stats.values, plugin_header->plugin_stats.names, &values TSRMLS_CC ZEND_FILE_LINE_CC); 80 mysqlnd_minfo_print_hash(&values); [all...] |
| H A D | mysqlnd.h | 80 PHPAPI void mysqlnd_minfo_print_hash(zval *values); 110 #define mysqlnd_get_connection_stats(conn, values) ((conn)->data)->m->get_statistics((conn)->data, (values) TSRMLS_CC ZEND_FILE_LINE_CC) 111 #define mysqlnd_get_client_stats(values) _mysqlnd_get_client_stats((values) TSRMLS_CC ZEND_FILE_LINE_CC) 296 PHPAPI void mysqlnd_minfo_print_hash(zval *values);
|
| /PHP_TRUNK/win32/ |
| H A D | registry.c | 62 DWORD keys, values, max_key, max_name, max_value; local 66 if (RegQueryInfoKey(key, NULL, NULL, NULL, &keys, &max_key, NULL, &values, &max_name, &max_value, NULL, NULL) == ERROR_SUCCESS) { 68 if (values) { 75 for (i = 0; i < values; i++) {
|
| /PHP_TRUNK/main/ |
| H A D | network.c | 120 } values[] = { local 140 for (i = 0; values[i].msg != NULL; i++) { 141 if (values[i].code == code) { 142 return (char *)values[i].msg;
|