| /PHP_5_3/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_5_3/ext/spl/internal/ |
| H A D | regexiterator.inc | 28 const SPLIT = 3; /**< Mode: Return the split values (if any) */
|
| /PHP_5_3/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_5_3/ext/mysqli/tests/ |
| H A D | connect.inc | 3 Default values are "localhost", "root", 5 Change the MYSQL_TEST environment values
|
| /PHP_5_3/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_5_3/ext/pdo/ |
| 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]);
|
| 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 374 * pdo_type => an integer, one of the PDO_PARAM_XXX values 626 zval **values; /* freed */ member in struct:_pdo_stmt_t::__anon124::__anon126
|
| /PHP_5_3/ext/pgsql/ |
| H A D | pgsql.c | 513 ZEND_ARG_INFO(0, values) 520 ZEND_ARG_INFO(0, values) 2354 Returns values from a result identifier */ 5131 * check and convert array values (fieldname=>vlaue pair) for sql 5133 PHP_PGSQL_API int php_pgsql_convert(PGconn *pg_link, const char *table_name, const zval *values, zval *result, ulong opt TSRMLS_DC) argument 5143 assert(Z_TYPE_P(values) == IS_ARRAY); 5157 for (zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(values), &pos); 5158 zend_hash_get_current_data_ex(Z_ARRVAL_P(values), (void **)&val, &pos) == SUCCESS; 5159 zend_hash_move_forward_ex(Z_ARRVAL_P(values), &pos)) { 5163 if ((key_type = zend_hash_get_current_key_ex(Z_ARRVAL_P(values), 5764 zval *pgsql_link, *values; local 5932 zval *pgsql_link, *values; local 6088 zval *pgsql_link, *values, *ids; local [all...] |
| H A D | php_pgsql.h | 200 PHP_PGSQL_API int php_pgsql_convert(PGconn *pg_link, const char *table_name, const zval *values, zval *result, ulong opt TSRMLS_DC); 201 PHP_PGSQL_API int php_pgsql_insert(PGconn *pg_link, const char *table, zval *values, ulong opt, char **sql TSRMLS_DC); 202 PHP_PGSQL_API int php_pgsql_update(PGconn *pg_link, const char *table, zval *values, zval *ids, ulong opt , char **sql TSRMLS_DC);
|
| /PHP_5_3/ext/standard/ |
| H A D | array.c | 608 * (partly) the same key values has been sorted with uasort() or 612 * Following defines will assist in backup / restore values. */ 628 Sort an array by values using a user-defined comparison function */ 958 /* mixed min ( array $values ) */ 1009 /* mixed max ( array $values ) */ 1505 Creates a hash containing variables and their values */ 1638 /* We only want positive step values. */ 1953 /* Clean up and return the number of values in the stack */ 2494 Return just the values from the input array */ 2508 /* Go through input array and add values t 4470 zval *values, *keys; local [all...] |
| H A D | iptc.c | 310 zval *values, **element; local 357 MAKE_STD_ZVAL(values); 358 array_init(values); 360 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_5_3/ext/xml/ |
| H A D | xml.c | 168 ZEND_ARG_INFO(1, values) 834 zval **element, *values; local 841 MAKE_STD_ZVAL(values); 843 array_init(values); 845 zend_hash_update(Z_ARRVAL_P(parser->info), name, strlen(name)+1, (void *) &values, sizeof(zval*), (void **) &element); 1551 /* {{{ proto int xml_parse_into_struct(resource parser, string data, array &values [, array &index ])
|
| /PHP_5_3/main/ |
| H A D | network.c | 117 } values[] = { local 137 for (i = 0; values[i].msg != NULL; i++) { 138 if (values[i].code == code) { 139 return (char *)values[i].msg;
|
| /PHP_5_3/ext/mysqlnd/ |
| H A D | mysqlnd.h | 95 PHPAPI void mysqlnd_minfo_print_hash(zval *values); 124 #define mysqlnd_get_connection_stats(conn, values) (conn)->m->get_statistics((conn), (values) TSRMLS_CC ZEND_FILE_LINE_CC) 125 #define mysqlnd_get_client_stats(values) _mysqlnd_get_client_stats((values) TSRMLS_CC ZEND_FILE_LINE_CC) 307 PHPAPI void mysqlnd_minfo_print_hash(zval *values);
|
| H A D | mysqlnd_statistics.c | 214 sprintf((char *)&tmp, MYSQLND_LLU_SPEC, stats->values[i]); 253 (*stats)->values = calloc(statistic_count, sizeof(uint64_t)); 273 free(stats->values);
|
| H A D | mysqlnd_statistics.h | 63 (stats)->values[(statistic)] += (value); \
|
| H A D | mysqlnd_structs.h | 231 uint64_t *values; member in struct:st_mysqlnd_stats
|
| H A D | php_mysqlnd.c | 41 PHPAPI void mysqlnd_minfo_print_hash(zval *values) argument 46 zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(values), &pos_values); 47 while (zend_hash_get_current_data_ex(Z_ARRVAL_P(values), 56 zend_hash_get_current_key_ex(Z_ARRVAL_P(values), &string_key, &string_key_len, &num_key, 0, &pos_values); 68 zend_hash_move_forward_ex(Z_ARRVAL_P(values), &pos_values); 72 PHPAPI void mysqlnd_minfo_print_hash(zval *values) argument 77 zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(values), &pos_values); 78 while (zend_hash_get_current_data_ex(Z_ARRVAL_P(values), (void **)&values_entry, &pos_values) == SUCCESS) { 83 zend_hash_get_current_key_ex(Z_ARRVAL_P(values), &string_key, &string_key_len, &num_key, 0, &pos_values); 88 zend_hash_move_forward_ex(Z_ARRVAL_P(values), 100 zval values; local [all...] |
| /PHP_5_3/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++) {
|