| /PHP_5_5/ext/oci8/tests/ |
| H A D | conn_attr.inc | 38 942 // table or view does not exist
|
| H A D | details.inc | 62 942 // table or view does not exist
|
| /PHP_5_5/ext/pdo/tests/ |
| H A D | pdo_test.inc | 49 foreach ($test_tables as $table) { 50 $db->exec("DROP TABLE $table");
|
| /PHP_5_5/ext/pgsql/ |
| H A D | mysql_users.php | 44 CASE c.relkind WHEN 'r' THEN 'table' WHEN 'v' THEN 'view' WHEN 'i' THEN 'index' WHEN 'S' THEN 'sequence' WHEN 's' THEN 'special' END as \"Type\", 61 function pg_list_fields($db, $table) 75 c.relname = '".$table."'
|
| H A D | php_pgsql.h | 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); 205 PHP_PGSQL_API int php_pgsql_delete(PGconn *pg_link, const char *table, zval *ids, ulong opt, char **sql TSRMLS_DC); 206 PHP_PGSQL_API int php_pgsql_select(PGconn *pg_link, const char *table, zval *ids, zval *ret_array, ulong opt, char **sql TSRMLS_DC);
|
| H A D | pgsql.c | 518 ZEND_ARG_INFO(0, table) 523 ZEND_ARG_INFO(0, table) 530 ZEND_ARG_INFO(0, table) 537 ZEND_ARG_INFO(0, table) 545 ZEND_ARG_INFO(0, table) 552 ZEND_ARG_INFO(0, table) 2158 Returns the name of the table field belongs to, or table's oid if oid_only is true */ 2200 /* try to lookup the table name in the resource list */ 3744 Copy table t 5945 php_pgsql_insert(PGconn *pg_link, const char *table, zval *var_array, ulong opt, char **sql TSRMLS_DC) argument 6056 char *table, *sql = NULL; local 6135 php_pgsql_update(PGconn *pg_link, const char *table, zval *var_array, zval *ids_array, ulong opt, char **sql TSRMLS_DC) argument 6212 char *table, *sql = NULL; local 6244 php_pgsql_delete(PGconn *pg_link, const char *table, zval *ids_array, ulong opt, char **sql TSRMLS_DC) argument 6304 char *table, *sql = NULL; local 6378 php_pgsql_select(PGconn *pg_link, const char *table, zval *ids_array, zval *ret_array, ulong opt, char **sql TSRMLS_DC) argument 6442 char *table, *sql = NULL; local [all...] |
| /PHP_5_5/sapi/fpm/fpm/ |
| H A D | fpm_php.c | 261 char* fpm_php_get_string_from_table(char *table, char *key TSRMLS_DC) /* {{{ */ argument 267 if (!table || !key) { 273 zend_is_auto_global(table, strlen(table) TSRMLS_CC); 275 /* find the table and ensure it's an array */ 276 if (zend_hash_find(&EG(symbol_table), table, strlen(table) + 1, (void **) &data) == SUCCESS && Z_TYPE_PP(data) == IS_ARRAY) {
|
| H A D | fpm_php.h | 47 char* fpm_php_get_string_from_table(char *table, char *key TSRMLS_DC);
|
| /PHP_5_5/ext/gd/libgd/ |
| H A D | gd_gif_in.c | 86 int table[2][(1<< MAX_LWZ_BITS)]; member in struct:__anon133 438 sd->table[0][i] = 0; 439 sd->table[1][i] = i; 442 sd->table[0][i] = sd->table[1][0] = 0; 462 sd->table[0][i] = 0; 463 sd->table[1][i] = i; 466 sd->table[0][i] = sd->table[1][i] = 0; 505 *sd->sp++ = sd->table[ [all...] |
| H A D | gd_topal.c | 323 int *error_limiter; /* table for clamping the applied error */ 1571 * Initialize the error-limiting transfer function (lookup table). 1593 /* Allocate and fill in the error_limiter table */ 1595 int *table; local 1599 table = (int *) (*cinfo->mem->alloc_small) 1608 table = cquantize->error_limiter_storage; 1611 table += MAXJSAMPLE; /* so can index -MAXJSAMPLE .. +MAXJSAMPLE */ 1612 cquantize->error_limiter = table; 1619 table[in] = out; 1620 table[ [all...] |
| /PHP_5_5/ext/mbstring/oniguruma/ |
| H A D | regenc.c | 352 onigenc_set_default_caseconv_table(const UChar* table ARG_UNUSED) 865 hash_table_type **table, const OnigCodePoint*** plist, int *pnum, 880 if (ONIG_IS_NULL(*table)) { 881 *table = onig_st_init_strend_table_with_size(PROP_INIT_SIZE); 882 if (ONIG_IS_NULL(*table)) return ONIGERR_MEMORY; 886 onig_st_insert_strend(*table, name, name + strlen((char* )name), 864 onigenc_property_list_add_property(UChar* name, const OnigCodePoint* prop, hash_table_type **table, const OnigCodePoint*** plist, int *pnum, int *psize) argument
|
| H A D | reggnu.c | 138 re_set_casetable(const char* table) argument 140 onigenc_set_default_caseconv_table((UChar* )table);
|
| H A D | st.c | 1 /* This is a public domain general purpose hash table package written by Peter Moore @ UCB. */ 57 #define EQUAL(table,x,y) ((x)==(y) || (*table->type->compare)((x),(y)) == 0) 59 #define do_hash(key,table) (unsigned int)(*(table)->type->hash)((key)) 60 #define do_hash_bin(key,table) (do_hash(key, table)%(table)->num_bins) 200 st_free_table(table) 201 st_table *table; [all...] |
| H A D | st.h | 1 /* This is a public domain general purpose hash table package written by Peter Moore @ UCB. */ 31 #define st_is_member(table,key) st_lookup(table,key,(st_data_t *)0)
|
| /PHP_5_5/Zend/ |
| H A D | zend_gc.c | 287 zval **table; local 288 HashTable *props = get_gc(pz, &table, &n TSRMLS_CC); 290 while (n > 0 && !table[n-1]) n--; 292 if (table[i]) { 293 pz = table[i]; 342 zval **table; local 343 HashTable *props = get_gc(pz, &table, &n TSRMLS_CC); 346 if (table[i]) { 347 pz = table[i]; 394 zval **table; local 450 zval **table; local 534 zval **table; local 591 zval **table; local 653 zval **table, *zv; local 725 zval **table; local [all...] |
| H A D | zend_ts_hash.h | 37 #define TS_HASH(table) (&(table->hash))
|
| H A D | zend_object_handlers.h | 31 symbol table, its reference count should be 0. 114 typedef HashTable *(*zend_object_get_gc_t)(zval *object, zval ***table, int *n TSRMLS_DC);
|
| /PHP_5_5/ext/hash/ |
| H A D | php_hash_tiger_tables.h | 22 #define t1 (table) 23 #define t2 (table+256) 24 #define t3 (table+256*2) 25 #define t4 (table+256*3) 27 static const php_hash_uint64 table[4*256] = { variable
|
| /PHP_5_5/ext/odbc/ |
| H A D | php_odbc.c | 257 ZEND_ARG_INFO(0, table) 294 ZEND_ARG_INFO(0, table) 320 ZEND_ARG_INFO(0, table) 2186 Print result as HTML table */ 2223 /* Start table tag */ 2225 php_printf("<table><tr>"); 2227 php_printf("<table %s ><tr>", pv_format); 2267 php_printf("</td></tr></table>"); 2299 php_printf("</table>\n"); 3060 char *cat = NULL, *schema = NULL, *table local 3127 char *cat = NULL, *schema = NULL, *table = NULL, *column = NULL; local 3197 char *cat = NULL, *schema, *table, *column; local 3397 char *cat = NULL, *schema = NULL, *table = NULL; local 3730 char *cat = NULL, *schema = NULL, *table = NULL; local [all...] |
| /PHP_5_5/ext/mysqlnd/ |
| H A D | mysqlnd_result_meta.c | 286 if (orig_fields[i].table && orig_fields[i].table != mysqlnd_empty_string) { 287 new_fields[i].table = new_fields[i].root + 288 (orig_fields[i].table - orig_fields[i].root);
|
| H A D | mysqlnd_wireprotocol.c | 1170 STRUCT_OFFSET(MYSQLND_FIELD, table), 1331 if (meta->table && meta->table != mysqlnd_empty_string) { 1333 meta->table = memcpy(root_ptr, meta->table, len); 1359 DBG_INF_FMT("FIELD=[%s.%s.%s]", meta->db? meta->db:"*NA*", meta->table? meta->table:"*NA*", 1514 fields_metadata[i].db, fields_metadata[i].table, fields_metadata[i].name, fields_metadata[i].type,
|
| /PHP_5_5/ext/standard/ |
| H A D | html.c | 533 * Returns the code point in the target charset (whose mapping table was given) or 0 if 534 * the unicode code point is not in the table. 536 static inline unsigned char unimap_bsearch(const uni_to_enc *table, unsigned code_key_a, size_t num) argument 538 const uni_to_enc *l = table, 539 *h = &table[num-1], 566 const uni_to_enc *table; local 623 table = unimap_macroman; 627 table = unimap_win1251; 631 table = unimap_koi8r; 635 table 685 map_to_unicode(unsigned code, const enc_to_uni *table, unsigned *res) argument 1132 find_entity_for_char( unsigned int k, enum entity_charset charset, const entity_stage1_row *table, const unsigned char **entity, size_t *entity_len, unsigned char *old, size_t oldlen, size_t *cursor) argument 1195 find_entity_for_char_basic( unsigned int k, const entity_stage3_row *table, const unsigned char **entity, size_t *entity_len) argument [all...] |
| /PHP_5_5/ext/sockets/ |
| H A D | multicast.c | 648 MIB_IPADDRROW r = addr_table->table[i]; 688 MIB_IPADDRROW r = addr_table->table[i];
|
| /PHP_5_5/ext/pcre/pcrelib/ |
| H A D | pcre_internal.h | 260 #define TABLE_GET(c, table, default) ((table)[c]) 274 #define TABLE_GET(c, table, default) (MAX_255(c)? ((table)[c]):(default)) 282 #define TABLE_GET(c, table, default) (MAX_255(c)? ((table)[c]):(default)) 1864 looked up from a table. 1879 /* Opcode table: Starting from 1 (i.e. after OP_END), the values up to 2179 in UTF-8 mode. The code that uses this table must know about such things. */ 2265 easily be tracked. When a new number is added, the table calle [all...] |
| /PHP_5_5/ext/date/ |
| H A D | php_date.c | 381 /* {{{ Function table */ 627 static HashTable *date_object_get_gc(zval *object, zval ***table, int *n TSRMLS_DC); 629 static HashTable *date_object_get_gc_interval(zval *object, zval ***table, int *n TSRMLS_DC); 631 static HashTable *date_object_get_gc_period(zval *object, zval ***table, int *n TSRMLS_DC); 634 static HashTable *date_object_get_gc_timezone(zval *object, zval ***table, int *n TSRMLS_DC); 1944 /* iterator handler table */ 2161 static HashTable *date_object_get_gc(zval *object, zval ***table, int *n TSRMLS_DC) argument 2163 *table = NULL; 2168 static HashTable *date_object_get_gc_timezone(zval *object, zval ***table, int *n TSRMLS_DC) argument 2171 *table 2365 date_object_get_gc_interval(zval *object, zval ***table, int *n TSRMLS_DC) argument 4486 const timelib_tzdb_index_entry *table; local 4537 const timelib_tz_lookup_table *table, *entry; local 4810 date_object_get_gc_period(zval *object, zval ***table, int *n TSRMLS_DC) argument [all...] |