| /PHP_5_5/build/ |
| H A D | build.mk | 75 @if (test ! -f '.git/info/exclude' || grep -s "git-ls-files" .git/info/exclude); then \ 76 (echo "Rebuild .git/info/exclude" && echo '*.o' > .git/info/exclude && git svn propget svn:ignore | grep -v config.nice >> .git/info/exclude); \
|
| /PHP_5_5/ext/phar/ |
| H A D | shortarc.php | 135 $info = self::_unpack($m); variable 136 $f = $info['c']; 175 foreach ($info['m'] as $path => $file) { 215 $info = unpack('V', substr($m, 0, 4)); variable 224 for ($i = 0; $i < $info[1]; $i++) {
|
| /PHP_5_5/ext/zlib/tests/ |
| H A D | func.inc | 9 $info = ob_get_contents(); 11 if (preg_match(',zlib.*Compiled Version => (\d+\.\d+\.\d+),s', $info, $match)) {
|
| /PHP_5_5/ext/gd/tests/ |
| H A D | func.inc | 12 $info = ob_get_contents();
15 return $info;
|
| /PHP_5_5/ext/intl/idn/ |
| H A D | idn.c | 144 UIDNAInfo info = UIDNA_INFO_INITIALIZER; local 156 buffer, buffer_capac, &info, &status); 159 buffer, buffer_capac, &info, &status); 173 if (info.errors == 0) { 192 sizeof("isTransitionalDifferent"), info.isTransitionalDifferent); 193 add_assoc_long_ex(idna_info, "errors", sizeof("errors"), (long)info.errors);
|
| /PHP_5_5/ext/mbstring/ |
| H A D | mb_gpc.h | 50 const mbfl_encoding *_php_mb_encoding_handler_ex(const php_mb_encoding_handler_info_t *info, zval *arg, char *res TSRMLS_DC);
|
| H A D | mb_gpc.c | 36 #include "ext/standard/info.h" 61 php_mb_encoding_handler_info_t info; local 153 info.data_type = arg; 154 info.separator = separator; 155 info.report_errors = 0; 156 info.to_encoding = MBSTRG(internal_encoding); 157 info.to_language = MBSTRG(language); 158 info.from_encodings = MBSTRG(http_input_list); 159 info.num_from_encodings = MBSTRG(http_input_list_size); 160 info 195 _php_mb_encoding_handler_ex(const php_mb_encoding_handler_info_t *info, zval *arg, char *res TSRMLS_DC) argument 366 php_mb_encoding_handler_info_t info; local [all...] |
| /PHP_5_5/ext/dba/ |
| H A D | dba_cdb.c | 48 dba_cdb *cdb = (dba_cdb *) info->dbf 72 dba_info *pinfo = (dba_info *) info; 74 switch (info->mode) { 78 file = info->fp; 80 file = VCWD_OPEN(info->path, O_RDONLY); 90 file = info->fp; 102 cdb = pemalloc(sizeof(dba_cdb), info->flags&DBA_PERSISTENT); 136 pefree(cdb, info->flags&DBA_PERSISTENT);
|
| H A D | dba_db1.c | 38 #define DB1_DATA dba_db1_data *dba = info->dbf 53 if (info->argc > 0) { 54 convert_to_long_ex(info->argv[0]); 55 filemode = Z_LVAL_PP(info->argv[0]); 59 switch (info->mode) { 76 db = dbopen((char *)info->path, gmode, filemode, DB_HASH, NULL); 82 dba = pemalloc(sizeof(*dba), info->flags&DBA_PERSISTENT); 85 info->dbf = dba; 94 pefree(info->dbf, info [all...] |
| H A D | dba_db2.c | 36 #define DB2_DATA dba_db2_data *dba = info->dbf 54 int s = VCWD_STAT(info->path, &check_stat); 57 info->mode = DBA_TRUNC; /* force truncate */ 60 type = info->mode == DBA_READER ? DB_UNKNOWN : 61 info->mode == DBA_TRUNC ? DB_BTREE : 64 gmode = info->mode == DBA_READER ? DB_RDONLY : 65 (info->mode == DBA_CREAT && s) ? DB_CREATE : 66 (info->mode == DBA_CREAT && !s) ? 0 : 67 info->mode == DBA_WRITER ? 0 : 68 info [all...] |
| H A D | dba_db3.c | 45 #define DB3_DATA dba_db3_data *dba = info->dbf 63 int s = VCWD_STAT(info->path, &check_stat); 66 info->mode = DBA_TRUNC; /* force truncate */ 69 type = info->mode == DBA_READER ? DB_UNKNOWN : 70 info->mode == DBA_TRUNC ? DB_BTREE : 73 gmode = info->mode == DBA_READER ? DB_RDONLY : 74 (info->mode == DBA_CREAT && s) ? DB_CREATE : 75 (info->mode == DBA_CREAT && !s) ? 0 : 76 info->mode == DBA_WRITER ? 0 : 77 info [all...] |
| H A D | dba_db4.c | 63 #define DB4_DATA dba_db4_data *dba = info->dbf 81 int s = VCWD_STAT(info->path, &check_stat); 85 info->mode = DBA_TRUNC; /* force truncate */ 88 type = info->mode == DBA_READER ? DB_UNKNOWN : 89 info->mode == DBA_TRUNC ? DB_BTREE : 92 gmode = info->mode == DBA_READER ? DB_RDONLY : 93 (info->mode == DBA_CREAT && s) ? DB_CREATE : 94 (info->mode == DBA_CREAT && !s) ? 0 : 95 info->mode == DBA_WRITER ? 0 : 96 info [all...] |
| H A D | dba_dbm.c | 42 #define DBM_DATA dba_dbm_data *dba = info->dbf 46 snprintf(buf, MAXPATHLEN, "%s" extension, info->path); \ 62 if(info->argc > 0) { 63 convert_to_long_ex(info->argv[0]); 64 filemode = Z_LVAL_PP(info->argv[0]); 67 if(info->mode == DBA_TRUNC) { 75 if(info->mode == DBA_CREAT) { 82 if(dbminit((char *) info->path) == -1) { 86 info->dbf = pemalloc(sizeof(dba_dbm_data), info [all...] |
| H A D | dba_ndbm.c | 42 dba_info *pinfo = (dba_info *) info; 44 switch(info->mode) { 61 if(info->argc > 0) { 62 convert_to_long_ex(info->argv[0]); 63 filemode = Z_LVAL_PP(info->argv[0]); 66 dbf = dbm_open(info->path, gmode, filemode); 74 dbm_close(info->dbf); 83 gval = dbm_fetch(info->dbf, gkey); 99 if(!dbm_store(info->dbf, gkey, gval, mode == 1 ? DBM_INSERT : DBM_REPLACE)) 108 gval = dbm_fetch(info [all...] |
| H A D | dba_tcadb.c | 34 #define TCADB_DATA dba_tcadb_data *dba = info->dbf 46 switch(info->mode) { 48 spprintf(&path_string, 0, "%s#mode=r", info->path); 51 spprintf(&path_string, 0, "%s#mode=w", info->path); 54 spprintf(&path_string, 0, "%s#mode=wc", info->path); 57 spprintf(&path_string, 0, "%s#mode=wct", info->path); 72 info->dbf = pemalloc(sizeof(dba_tcadb_data), info->flags & DBA_PERSISTENT); 73 memset(info->dbf, 0, sizeof(dba_tcadb_data)); 74 ((dba_tcadb_data *) info [all...] |
| H A D | php_dba.h | 87 char* (*info)(struct dba_handler *hnd, dba_info * TSRMLS_DC); member in struct:dba_handler 88 /* dba_info==NULL: Handler info, dba_info!=NULL: Database info */ 94 int dba_open_##x(dba_info *info, char **error TSRMLS_DC) 96 void dba_close_##x(dba_info *info TSRMLS_DC) 98 char *dba_fetch_##x(dba_info *info, char *key, int keylen, int skip, int *newlen TSRMLS_DC) 100 int dba_update_##x(dba_info *info, char *key, int keylen, char *val, int vallen, int mode TSRMLS_DC) 102 int dba_exists_##x(dba_info *info, char *key, int keylen TSRMLS_DC) 104 int dba_delete_##x(dba_info *info, char *key, int keylen TSRMLS_DC) 106 char *dba_firstkey_##x(dba_info *info, in [all...] |
| H A D | dba_flatfile.c | 39 #define FLATFILE_DATA flatfile *dba = info->dbf 44 info->dbf = pemalloc(sizeof(flatfile), info->flags&DBA_PERSISTENT); 45 memset(info->dbf, 0, sizeof(flatfile)); 47 ((flatfile*)info->dbf)->fp = info->fp; 59 pefree(dba, info->flags&DBA_PERSISTENT);
|
| H A D | dba_gdbm.c | 34 #define GDBM_DATA dba_gdbm_data *dba = info->dbf 48 gmode = info->mode == DBA_READER ? GDBM_READER : 49 info->mode == DBA_WRITER ? GDBM_WRITER : 50 info->mode == DBA_CREAT ? GDBM_WRCREAT : 51 info->mode == DBA_TRUNC ? GDBM_NEWDB : -1; 56 if(info->argc > 0) { 57 convert_to_long_ex(info->argv[0]); 58 filemode = Z_LVAL_PP(info->argv[0]); 61 dbf = gdbm_open(info->path, 0, gmode, filemode, NULL); 64 info [all...] |
| H A D | dba_inifile.c | 40 inifile *dba = info->dbf 55 info->dbf = inifile_alloc(info->fp, info->mode == DBA_READER, info->flags&DBA_PERSISTENT TSRMLS_CC); 57 return info->dbf ? SUCCESS : FAILURE; 64 inifile_free(dba, info->flags&DBA_PERSISTENT);
|
| H A D | dba_qdbm.c | 34 #define QDBM_DATA dba_qdbm_data *dba = info->dbf 44 switch(info->mode) { 46 dbf = dpopen(info->path, DP_OREADER, 0); 49 dbf = dpopen(info->path, DP_OWRITER, 0); 52 dbf = dpopen(info->path, DP_OWRITER | DP_OCREAT, 0); 55 dbf = dpopen(info->path, DP_OWRITER | DP_OCREAT | DP_OTRUNC, 0); 62 info->dbf = pemalloc(sizeof(dba_qdbm_data), info->flags & DBA_PERSISTENT); 63 memset(info->dbf, 0, sizeof(dba_qdbm_data)); 64 ((dba_qdbm_data *) info [all...] |
| H A D | dba.c | 38 #include "ext/standard/info.h" 197 dba_info *info = NULL; \ 274 #define DBA_FETCH_RESOURCE(info, id) \ 275 ZEND_FETCH_RESOURCE2(info, dba_info *, id, -1, "DBA identifier", le_db, le_pdb); 277 #define DBA_ID_GET2 DBA_ID_PARS; DBA_GET2; DBA_FETCH_RESOURCE(info, &id) 278 #define DBA_ID_GET2_3 DBA_ID_PARS; DBA_GET2_3; DBA_FETCH_RESOURCE(info, &id) 295 if(info->mode != DBA_WRITER && info->mode != DBA_TRUNC && info->mode != DBA_CREAT) { \ 379 dba_info *info; 431 dba_info *info = (dba_info *)rsrc->ptr; local 447 dba_info *info = (dba_info *)rsrc->ptr; local 543 dba_info *info = NULL; local 579 dba_info *info; local 606 dba_info *info, *other; local 960 dba_info *info = NULL; local 1065 dba_info *info = NULL; local 1089 dba_info *info = NULL; local 1148 dba_info *info = NULL; local 1171 dba_info *info = NULL; local 1216 dba_info *info; local [all...] |
| /PHP_5_5/ext/pdo/ |
| H A D | pdo_sqlstate.c | 27 #include "ext/standard/info.h" 315 const struct pdo_sqlstate_info *info; local 323 info = &err_initializer[i]; 325 zend_hash_add(&err_hash, info->state, sizeof(info->state), &info, sizeof(info), NULL); 333 const struct pdo_sqlstate_info **info; local 335 (void**)&info)) { 336 return (*info) [all...] |
| /PHP_5_5/ext/mysqlnd/ |
| H A D | mysqlnd_loaddata.c | 32 MYSQLND_INFILE_INFO *info; local 37 info = ((MYSQLND_INFILE_INFO *)mnd_ecalloc(1, sizeof(MYSQLND_INFILE_INFO))); 38 if (!info) { 42 *ptr = info; 47 strcpy(info->error_msg, "open_basedir restriction in effect. Unable to open file"); 48 info->error_no = CR_UNKNOWN_ERROR; 53 info->filename = filename; 54 info->fd = php_stream_open_wrapper_ex((char *)filename, "r", 0, NULL, context); 56 if (info->fd == NULL) { 57 snprintf((char *)info 71 MYSQLND_INFILE_INFO *info = (MYSQLND_INFILE_INFO *)ptr; local 92 MYSQLND_INFILE_INFO *info = (MYSQLND_INFILE_INFO *)ptr; local 113 MYSQLND_INFILE_INFO *info = (MYSQLND_INFILE_INFO *)ptr; local 164 void *info = NULL; local [all...] |
| /PHP_5_5/ext/fileinfo/libmagic/ |
| H A D | cdf.c | 292 cdf_read(const cdf_info_t *info, off_t off, void *buf, size_t len) argument 301 if (info->i_buf != NULL && info->i_len >= siz) { 302 (void)memcpy(buf, &info->i_buf[off], len); 306 if (info->i_fd == -1) 309 if (FINFO_LSEEK_FUNC(info->i_fd, off, SEEK_SET) == (off_t)-1) 312 if (FINFO_READ_FUNC(info->i_fd, buf, len) != (ssize_t)len) 319 cdf_read_header(const cdf_info_t *info, cdf_header_t *h) argument 324 if (cdf_read(info, (off_t)0, buf, sizeof(buf)) == -1) 352 cdf_read_sector(const cdf_info_t *info, voi argument 383 cdf_read_sat(const cdf_info_t *info, cdf_header_t *h, cdf_sat_t *sat) argument 493 cdf_read_long_sector_chain(const cdf_info_t *info, const cdf_header_t *h, const cdf_sat_t *sat, cdf_secid_t sid, size_t len, cdf_stream_t *scn) argument 581 cdf_read_sector_chain(const cdf_info_t *info, const cdf_header_t *h, const cdf_sat_t *sat, const cdf_sat_t *ssat, const cdf_stream_t *sst, cdf_secid_t sid, size_t len, cdf_stream_t *scn) argument 594 cdf_read_dir(const cdf_info_t *info, const cdf_header_t *h, const cdf_sat_t *sat, cdf_dir_t *dir) argument 648 cdf_read_ssat(const cdf_info_t *info, const cdf_header_t *h, const cdf_sat_t *sat, cdf_sat_t *ssat) argument 690 cdf_read_short_stream(const cdf_info_t *info, const cdf_header_t *h, const cdf_sat_t *sat, const cdf_dir_t *dir, cdf_stream_t *scn) argument 728 cdf_read_summary_info(const cdf_info_t *info, const cdf_header_t *h, const cdf_sat_t *sat, const cdf_sat_t *ssat, const cdf_stream_t *sst, const cdf_dir_t *dir, cdf_stream_t *scn) argument 753 cdf_read_property_info(const cdf_stream_t *sst, const cdf_header_t *h, uint32_t offs, cdf_property_info_t **info, size_t *count, size_t *maxcount) argument 942 cdf_unpack_summary_info(const cdf_stream_t *sst, const cdf_header_t *h, cdf_summary_info_header_t *ssi, cdf_property_info_t **info, size_t *count) argument 1140 cdf_dump_dir(const cdf_info_t *info, const cdf_header_t *h, const cdf_sat_t *sat, const cdf_sat_t *ssat, const cdf_stream_t *sst, const cdf_dir_t *dir) argument 1198 cdf_dump_property_info(const cdf_property_info_t *info, size_t count) argument 1275 cdf_property_info_t *info; local 1303 cdf_info_t info; local [all...] |
| H A D | readcdf.c | 48 cdf_file_property_info(struct magic_set *ms, const cdf_property_info_t *info, argument 60 cdf_print_property_name(buf, sizeof(buf), info[i].pi_id); 61 switch (info[i].pi_type) { 66 info[i].pi_s16) == -1) 71 info[i].pi_s32) == -1) 76 info[i].pi_u32) == -1) 81 info[i].pi_f) == -1) 86 info[i].pi_d) == -1) 91 len = info[i].pi_str.s_len; 96 if (info[ 178 cdf_property_info_t *info; local 225 cdf_info_t info; local [all...] |