Home
last modified time | relevance | path

Searched refs:info (Results 1 – 25 of 326) sorted by relevance

12345678910>>...14

/PHP-7.4/ext/gd/libgd/
H A Dgd_bmp.c480 im = gdImageCreate(info->width, info->height); in gdImageCreateFromBmpCtx()
591 info->height = -info->height; in bmp_read_windows_v3_info()
598 if (info->width <= 0 || info->height <= 0 || info->numplanes <= 0 || in bmp_read_windows_v3_info()
599 info->depth <= 0 || info->numcolors < 0 || info->mincolors < 0) { in bmp_read_windows_v3_info()
620 info->numcolors = 1 << info->depth; in bmp_read_os2_v1_info()
623 if (info->width <= 0 || info->height <= 0 || info->numplanes <= 0 || in bmp_read_os2_v1_info()
624 info->depth <= 0 || info->numcolors < 0) { in bmp_read_os2_v1_info()
656 info->height = -info->height; in bmp_read_os2_v2_info()
663 if (info->width <= 0 || info->height <= 0 || info->numplanes <= 0 || in bmp_read_os2_v2_info()
664 info->depth <= 0 || info->numcolors < 0 || info->mincolors < 0) { in bmp_read_os2_v2_info()
[all …]
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_loaddata.c30 MYSQLND_INFILE_INFO *info; in mysqlnd_local_infile_init() local
36 if (!info) { in mysqlnd_local_infile_init()
40 *ptr = info; in mysqlnd_local_infile_init()
51 info->filename = filename; in mysqlnd_local_infile_init()
54 if (info->fd == NULL) { in mysqlnd_local_infile_init()
94 if (info) { in mysqlnd_local_infile_error()
113 if (info) { in mysqlnd_local_infile_end()
115 if (info->fd) { in mysqlnd_local_infile_end()
117 info->fd = NULL; in mysqlnd_local_infile_end()
119 mnd_efree(info); in mysqlnd_local_infile_end()
[all …]
/PHP-7.4/ext/dba/
H A Ddba.c307 if(info->mode != DBA_WRITER && info->mode != DBA_TRUNC && info->mode != DBA_CREAT) { \
314 if(info->mode != DBA_WRITER && info->mode != DBA_TRUNC && info->mode != DBA_CREAT) { \
426 info->hnd->close(info); in dba_close()
429 pefree(info->path, info->flags&DBA_PERSISTENT); in dba_close()
431 if (info->fp && info->fp != info->lock.fp) { in dba_close()
448 pefree(info, info->flags&DBA_PERSISTENT); in dba_close()
974 close_both = (info->fp != info->lock.fp); in php_dba_open()
1156 fkey = info->hnd->firstkey(info, &len); in PHP_FUNCTION()
1183 nkey = info->hnd->nextkey(info, &len); in PHP_FUNCTION()
1247 if (info->hnd->optimize(info) == SUCCESS) { in PHP_FUNCTION()
[all …]
H A Ddba_db4.c86 info->mode == DBA_TRUNC ? DB_BTREE :
100 (info->mode == DBA_TRUNC || info->mode == DBA_CREAT) ? DB_BTREE :
113 if (info->flags & DBA_PERSISTENT) {
117 if (info->argc > 0) {
134 info->dbf = data;
165 if (info->flags & DBA_PERSISTENT) {
171 if (info->flags & DBA_PERSISTENT) {
203 if (info->flags & DBA_PERSISTENT) {
208 if (info->flags & DBA_PERSISTENT) {
250 if (info->flags & DBA_PERSISTENT) {
[all …]
H A Ddba_db2.c52 int s = VCWD_STAT(info->path, &check_stat); in DBA_OPEN_FUNC()
59 info->mode == DBA_TRUNC ? DB_BTREE : in DBA_OPEN_FUNC()
64 (info->mode == DBA_CREAT && !s) ? 0 : in DBA_OPEN_FUNC()
65 info->mode == DBA_WRITER ? 0 : in DBA_OPEN_FUNC()
72 if (info->argc > 0) { in DBA_OPEN_FUNC()
73 filemode = zval_get_long(&info->argv[0]); in DBA_OPEN_FUNC()
80 info->dbf = pemalloc(sizeof(dba_db2_data), info->flags&DBA_PERSISTENT); in DBA_OPEN_FUNC()
81 memset(info->dbf, 0, sizeof(dba_db2_data)); in DBA_OPEN_FUNC()
82 ((dba_db2_data *) info->dbf)->dbp = dbp; in DBA_OPEN_FUNC()
93 pefree(dba, info->flags&DBA_PERSISTENT); in DBA_CLOSE_FUNC()
[all …]
H A Ddba_ndbm.c40 dba_info *pinfo = (dba_info *) info; in DBA_OPEN_FUNC()
42 switch(info->mode) { in DBA_OPEN_FUNC()
59 if(info->argc > 0) { in DBA_OPEN_FUNC()
60 filemode = zval_get_long(&info->argv[0]); in DBA_OPEN_FUNC()
63 dbf = dbm_open(info->path, gmode, filemode); in DBA_OPEN_FUNC()
71 dbm_close(info->dbf); in DBA_CLOSE_FUNC()
80 gval = dbm_fetch(info->dbf, gkey); in DBA_FETCH_FUNC()
105 gval = dbm_fetch(info->dbf, gkey); in DBA_EXISTS_FUNC()
115 return(dbm_delete(info->dbf, gkey) == -1 ? FAILURE : SUCCESS); in DBA_DELETE_FUNC()
123 gkey = dbm_firstkey(info->dbf); in DBA_FIRSTKEY_FUNC()
[all …]
H A Ddba_db3.c46 #define DB3_DATA dba_db3_data *dba = info->dbf
64 int s = VCWD_STAT(info->path, &check_stat);
67 info->mode = DBA_TRUNC; /* force truncate */
71 info->mode == DBA_TRUNC ? DB_BTREE :
76 (info->mode == DBA_CREAT && !s) ? 0 :
77 info->mode == DBA_WRITER ? 0 :
84 if (info->argc > 0) {
85 filemode = zval_get_long(&info->argv[0]);
105 info->dbf = data;
125 pefree(dba, info->flags&DBA_PERSISTENT);
[all …]
H A Ddba_dbm.c40 #define DBM_DATA dba_dbm_data *dba = info->dbf
44 snprintf(buf, MAXPATHLEN, "%s" extension, info->path); \
60 if(info->argc > 0) { in DBA_OPEN_FUNC()
61 filemode = zval_get_long(&info->argv[0]); in DBA_OPEN_FUNC()
64 if(info->mode == DBA_TRUNC) { in DBA_OPEN_FUNC()
72 if(info->mode == DBA_CREAT) { in DBA_OPEN_FUNC()
79 if(dbminit((char *) info->path) == -1) { in DBA_OPEN_FUNC()
83 info->dbf = pemalloc(sizeof(dba_dbm_data), info->flags&DBA_PERSISTENT); in DBA_OPEN_FUNC()
84 memset(info->dbf, 0, sizeof(dba_dbm_data)); in DBA_OPEN_FUNC()
90 pefree(info->dbf, info->flags&DBA_PERSISTENT); in DBA_CLOSE_FUNC()
[all …]
H A Dphp_dba.h88 char* (*info)(struct dba_handler *hnd, dba_info *); member
95 int dba_open_##x(dba_info *info, char **error)
97 void dba_close_##x(dba_info *info)
99 char *dba_fetch_##x(dba_info *info, char *key, size_t keylen, int skip, size_t *newlen)
103 int dba_exists_##x(dba_info *info, char *key, size_t keylen)
105 int dba_delete_##x(dba_info *info, char *key, size_t keylen)
107 char *dba_firstkey_##x(dba_info *info, size_t *newlen)
109 char *dba_nextkey_##x(dba_info *info, size_t *newlen)
111 int dba_optimize_##x(dba_info *info)
113 int dba_sync_##x(dba_info *info)
[all …]
H A Ddba_qdbm.c32 #define QDBM_DATA dba_qdbm_data *dba = info->dbf
42 switch(info->mode) { in DBA_OPEN_FUNC()
44 dbf = dpopen(info->path, DP_OREADER, 0); in DBA_OPEN_FUNC()
47 dbf = dpopen(info->path, DP_OWRITER, 0); in DBA_OPEN_FUNC()
50 dbf = dpopen(info->path, DP_OWRITER | DP_OCREAT, 0); in DBA_OPEN_FUNC()
53 dbf = dpopen(info->path, DP_OWRITER | DP_OCREAT | DP_OTRUNC, 0); in DBA_OPEN_FUNC()
60 info->dbf = pemalloc(sizeof(dba_qdbm_data), info->flags & DBA_PERSISTENT); in DBA_OPEN_FUNC()
61 memset(info->dbf, 0, sizeof(dba_qdbm_data)); in DBA_OPEN_FUNC()
62 ((dba_qdbm_data *) info->dbf)->dbf = dbf; in DBA_OPEN_FUNC()
75 pefree(dba, info->flags & DBA_PERSISTENT); in DBA_CLOSE_FUNC()
H A Ddba_gdbm.c32 #define GDBM_DATA dba_gdbm_data *dba = info->dbf
46 gmode = info->mode == DBA_READER ? GDBM_READER : in DBA_OPEN_FUNC()
47 info->mode == DBA_WRITER ? GDBM_WRITER : in DBA_OPEN_FUNC()
48 info->mode == DBA_CREAT ? GDBM_WRCREAT : in DBA_OPEN_FUNC()
49 info->mode == DBA_TRUNC ? GDBM_NEWDB : -1; in DBA_OPEN_FUNC()
54 if(info->argc > 0) { in DBA_OPEN_FUNC()
55 filemode = zval_get_long(&info->argv[0]); in DBA_OPEN_FUNC()
61 info->dbf = pemalloc(sizeof(dba_gdbm_data), info->flags&DBA_PERSISTENT); in DBA_OPEN_FUNC()
62 memset(info->dbf, 0, sizeof(dba_gdbm_data)); in DBA_OPEN_FUNC()
63 ((dba_gdbm_data *) info->dbf)->dbf = dbf; in DBA_OPEN_FUNC()
[all …]
/PHP-7.4/ext/mbstring/
H A Dmb_gpc.c59 php_mb_encoding_handler_info_t info; in ZEND_EXTERN_MODULE_GLOBALS() local
142 info.data_type = arg; in ZEND_EXTERN_MODULE_GLOBALS()
144 info.report_errors = 0; in ZEND_EXTERN_MODULE_GLOBALS()
197 mbfl_string_init_set(&string, info->to_language, info->to_encoding); in _php_mb_encoding_handler_ex()
198 mbfl_string_init_set(&resvar, info->to_language, info->to_encoding); in _php_mb_encoding_handler_ex()
199 mbfl_string_init_set(&resval, info->to_language, info->to_encoding); in _php_mb_encoding_handler_ex()
255 if (info->num_from_encodings == 0) { in _php_mb_encoding_handler_ex()
277 if (info->report_errors) { in _php_mb_encoding_handler_ex()
291 if (info->report_errors) { in _php_mb_encoding_handler_ex()
361 info.separator = "&"; in SAPI_POST_HANDLER_FUNC()
[all …]
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_get_connection_stats.phpt26 if (!is_array($info = mysqli_get_connection_stats($link)) || empty($info))
27 printf("[003] Expecting array/any_non_empty, got %s/%s\n", gettype($info), $info);
43 if ($info !== $info2) {
45 var_dump($info);
49 if (!is_array($info = $link->get_connection_stats()) || empty($info))
50 printf("[006] Expecting array/any_non_empty, got %s/%s\n", gettype($info), $info);
58 if ($info !== $info2) {
60 var_dump($info);
67 if (!is_array($info = mysqli_get_connection_stats($link)) || empty($info))
74 if ($info === $info2) {
[all …]
H A Dmysqli_get_client_stats.phpt146 ++$test_counter, gettype($info), $info);
164 ++$test_counter, gettype($info), $info);
188 ++$test_counter, gettype($info), $info);
212 ++$test_counter, gettype($info), $info);
234 ++$test_counter, gettype($info), $info);
248 ++$test_counter, gettype($info), $info);
265 ++$test_counter, gettype($info), $info);
290 ++$test_counter, gettype($info), $info);
311 ++$test_counter, gettype($info), $info);
350 ++$test_counter, gettype($info), $info);
[all …]
H A Dmysqli_stmt_get_result_metadata.phpt79 while ($info = $res->fetch_field())
80 $fields['res'][] = $info;
81 var_dump($info);
82 while ($info = $res_meta->fetch_field())
83 $fields['meta'][] = $info;
84 var_dump($info);
94 foreach ($fields['res'] as $k => $info) {
95 printf("%s\n", $info->name);
98 …$k, gettype($info->name), $info->name, gettype($fields['meta'][$k]->name), $fields['meta'][$k]->na…
114 … $k, gettype($info->def), $info->def, gettype($fields['meta'][$k]->def), $fields['meta'][$k]->def);
[all …]
/PHP-7.4/ext/pdo/
H A Dpdo_sqlstate.c313 const struct pdo_sqlstate_info *info; in pdo_sqlstate_init_error_table() local
318 info = &err_initializer[i]; in pdo_sqlstate_init_error_table()
320 zend_hash_str_add_ptr(&err_hash, info->state, sizeof(info->state), (void *)info); in pdo_sqlstate_init_error_table()
328 const struct pdo_sqlstate_info *info; in pdo_sqlstate_state_to_description() local
329 if ((info = zend_hash_str_find_ptr(&err_hash, state, sizeof(err_initializer[0].state))) != NULL) { in pdo_sqlstate_state_to_description()
330 return info->desc; in pdo_sqlstate_state_to_description()
/PHP-7.4/ext/intl/tests/
H A Dnormalizer_normalize.phpt84 . "\terror info: '$error_message' ($error_code)\n"
92 . "\terror info: '$error_message' ($error_code)\n"
106 is in form 'UNORM_FORM_C'? = yes error info: 'U_ZERO_ERROR' (0)
108 is in form 'UNORM_FORM_C'? = yes error info: 'U_ZERO_ERROR' (0)
110 is in form 'UNORM_FORM_C'? = no error info: 'U_ZERO_ERROR' (0)
112 is in form 'UNORM_FORM_C'? = no error info: 'U_ZERO_ERROR' (0)
114 is in form 'UNORM_FORM_C'? = yes error info: 'U_ZERO_ERROR' (0)
120 is in form 'UNORM_FORM_D'? = no error info: 'U_ZERO_ERROR' (0)
122 is in form 'UNORM_FORM_D'? = no error info: 'U_ZERO_ERROR' (0)
124 is in form 'UNORM_FORM_D'? = no error info: 'U_ZERO_ERROR' (0)
[all …]
H A Dbug72506.phpt4 Actually, the $info array should be populated for these cases, but at least it's
15 $result = idn_to_ascii($domain, 0, INTL_IDNA_VARIANT_UTS46, $info);
16 var_dump($result, $info);
20 $result = idn_to_ascii($domain, 0, INTL_IDNA_VARIANT_UTS46, $info);
21 var_dump($result, $info);
25 $result = idn_to_ascii($domain, 0, INTL_IDNA_VARIANT_UTS46, $info);
26 var_dump($result, $info);
/PHP-7.4/ext/spl/tests/
H A DSplFileInfo_setInfoClass_basic.phpt8 $info = new SplFileInfo(__FILE__);
10 $info->setInfoClass('MyInfoObject');
11 echo get_class($info->getFileInfo()), "\n";
12 echo get_class($info->getPathInfo()), "\n";
14 $info->setInfoClass('SplFileInfo');
15 echo get_class($info->getFileInfo()), "\n";
16 echo get_class($info->getPathInfo()), "\n";
H A DSplFileInfo_setFileClass_basic.phpt8 $info = new SplFileInfo(__FILE__);
10 $info->setFileClass('MyFileObject');
11 echo get_class($info->openFile()), "\n";
13 $info->setFileClass('SplFileObject');
14 echo get_class($info->openFile()), "\n";
/PHP-7.4/ext/pdo_mysql/tests/
H A Dpdo_mysql_attr_server_info.phpt17 $info = $db->getAttribute(PDO::ATTR_SERVER_INFO);
18 if ('' == $info)
19 printf("[001] Server info must not be empty\n");
26 if (soundex($new_info) != soundex($info))
27 printf("[003] Did we change it from '%s' to '%s'?\n", $info, $info);
29 // lets hope we always run this in the same second as we did run the server info request...
40 if (!preg_match('/Uptime/i', $info))
41 printf("[006] Can't find uptime in server info '%s'\n", $info);
44 if (!preg_match('/Uptime: (\d+)/i', $info, $matches) || $uptime - $matches[1] > 1) {
45 …07] SHOW STATUS and server info have reported a different uptime, please check. Server info: '%s',…
H A Dpdo_mysql_attr_errmode.phpt52 $code, $info[0]);
53 if ('' == $info[1])
55 if ('' == $info[2])
68 $code, $info[0]);
69 if ('' == $info[1])
71 if ('' == $info[2])
87 $code, $info[0]);
88 if ('' == $info[1])
90 if ('' == $info[2])
125 $code, $info[0]);
[all …]
/PHP-7.4/win32/
H A Dcp_enc_map_gen.c175 CPINFOEX info; in main() local
220 } else if (GetCPInfoEx(cur->id, 0, &info)) { in main()
234 …, %u, %u, %u, \"%s\", NULL, \"%s\" },\n", info.CodePage, to_w_fl, from_w_fl, info.MaxCharSize, cur… in main()
239 …u, %u, \"%s\", \"%s\", \"%s\" },\n", info.CodePage, to_w_fl, from_w_fl, info.MaxCharSize, cur->nam… in main()
/PHP-7.4/ext/openssl/tests/
H A Dbug65698.phpt8 $info = openssl_x509_parse("file://$crt");
9 var_dump($info["validFrom"], $info["validFrom_time_t"], $info["validTo"], $info["validTo_time_t"]);
/PHP-7.4/ext/fileinfo/libmagic/
H A Dreadcdf.c156 switch (info[i].pi_type) { in cdf_file_property_info()
161 info[i].pi_s16) == -1) in cdf_file_property_info()
176 info[i].pi_f) == -1) in cdf_file_property_info()
181 info[i].pi_d) == -1) in cdf_file_property_info()
218 tp = info[i].pi_tp; in cdf_file_property_info()
292 cdf_property_info_t *info; in cdf_file_summary_info() local
340 efree(info); in cdf_file_summary_info()
537 cdf_info_t info; in file_trycdf() local
547 info.i_fd = fd; in file_trycdf()
548 info.i_buf = buf; in file_trycdf()
[all …]

Completed in 89 milliseconds

12345678910>>...14