Home
last modified time | relevance | path

Searched refs:stat (Results 1 – 25 of 201) sorted by path

123456789

/PHP-5.5/
H A D.gdbinit600 set $stat = "?"
613 set $stat = "OK"
616 set $stat = "FREED"
619 set $stat = "CACHED"
634 printf "%-06s %s:%d", $stat, $filename, $p->lineno
H A DNEWS3900 . Fixed bug #55859 (mysqli->stat property access gives error). (Andrey)
4517 . Fixed bug #53903 (userspace stream stat callback does not separate the
4536 . Fixed bug #53603 (ZipArchive should quiet stat errors). (brad dot froehle at
4571 . Added stat support for zip stream. (Pierre)
5473 - Fixed atime and mtime in stat related functions on Windows. (Pierre)
5797 . Added Windows support for stat(), touch(), filemtime(), filesize() and
6800 - Fixed bug #45181 (chdir() should clear relative entries in stat cache).
7813 . removed unnecessary checks for ISREG file and corresponding stat() calls
7820 . stat() is reimplementation using GetFileAttributesEx(). The new
H A Dacinclude.m41222 #include <sys/stat.h>
1252 #include <sys/stat.h>
H A Dconfigure.in513 sys/stat.h \
575 dnl Check for members of the stat structure
/PHP-5.5/TSRM/
H A Dtsrm_virtual_cwd.c284 CWD_API int php_sys_stat_ex(const char *path, struct stat *buf, int lstat) /* {{{ */ in php_sys_stat_ex()
291 return stat(path, buf); in php_sys_stat_ex()
400 struct stat buf; in php_is_dir_ok()
411 struct stat buf; in php_is_file_ok()
759 struct stat st; in tsrm_realpath_r()
1713 CWD_API int virtual_stat(const char *path, struct stat *buf TSRMLS_DC) /* {{{ */ in virtual_stat()
1731 CWD_API int virtual_lstat(const char *path, struct stat *buf TSRMLS_DC) /* {{{ */ in virtual_lstat()
H A Dtsrm_virtual_cwd.h133 CWD_API int php_sys_stat_ex(const char *path, struct stat *buf, int lstat);
138 # define php_sys_stat stat
165 CWD_API int virtual_stat(const char *path, struct stat *buf TSRMLS_DC);
166 CWD_API int virtual_lstat(const char *path, struct stat *buf TSRMLS_DC);
/PHP-5.5/Zend/
H A DZend.m4298 #include <sys/stat.h>
343 #include <sys/stat.h>
H A Dzend_stream.c67 struct stat buf; in zend_stream_stdio_fsizer()
109 struct stat buf; in zend_stream_fsize()
/PHP-5.5/ext/dba/
H A Ddba_db2.c53 struct stat check_stat; in DBA_OPEN_FUNC()
H A Ddba_db3.c62 struct stat check_stat; in DBA_OPEN_FUNC()
H A Ddba_db4.c80 struct stat check_stat;
/PHP-5.5/ext/exif/
H A Dexif.c3899 struct stat st; in exif_read_file()
/PHP-5.5/ext/fileinfo/
H A Dlibmagic.patch378 struct stat st;
564 - struct stat st;
1375 #include <sys/stat.h>
1604 - struct stat tstatbuf;
1803 - if (stat(buf, &tstatbuf) < 0)
1835 - if (stat(tmp, &tstatbuf) < 0)
2262 const struct stat *);
2286 struct stat st;
2296 + if (stat(hmagicpath, &st) == -1)
2366 const struct stat *sb)
[all …]
/PHP-5.5/ext/fileinfo/libmagic/
H A Dapprentice.c1139 struct stat st; in apprentice_load()
1187 if (stat(mfn, &st) == -1 || !S_ISREG(st.st_mode)) { in apprentice_load()
H A Dfile.h410 struct stat;
418 protected int file_fsmagic(struct magic_set *, const char *, struct stat *, php_stream *);
H A Dfsmagic.c93 file_fsmagic(struct magic_set *ms, const char *fn, struct stat *sb, php_stream *stream) in file_fsmagic()
117 memcpy(sb, &ssb.sb, sizeof(struct stat)); in file_fsmagic()
H A Dmagic.c84 const struct stat *);
105 struct stat st;
116 if (stat(hmagicpath, &st) == -1) {
120 if (stat(hmagicpath, &st) == -1)
289 const struct stat *sb) in close_and_restore()
353 struct stat sb; in file_or_stream()
/PHP-5.5/ext/gd/
H A Dgd.c3925 struct stat st; in PHP_FUNCTION()
/PHP-5.5/ext/interbase/
H A Dibase_blobs.c100 ISC_STATUS stat; in _php_ibase_blob_get() local
107 …for (cur_len = stat = 0; (stat == 0 || stat == isc_segment) && cur_len < max_len; cur_len += seg_l… in _php_ibase_blob_get()
112 stat = isc_get_segment(IB_STATUS, &ib_blob->bl_handle, &seg_len, chunk_size, &bl_data[cur_len]); in _php_ibase_blob_get()
116 if (IB_STATUS[0] == 1 && (stat != 0 && stat != isc_segstr_eof && stat != isc_segment)) { in _php_ibase_blob_get()
/PHP-5.5/ext/mbstring/libmbfl/
H A Dconfig.h.in44 /* Define to 1 if you have the <sys/stat.h> header file. */
/PHP-5.5/ext/mbstring/oniguruma/
H A Dconfig.h.in45 /* Define to 1 if you have the <sys/stat.h> header file. */
/PHP-5.5/ext/mcrypt/tests/
H A Dblowfish.phpt14 print "key plain crypt guess stat\n";
56 key plain crypt guess stat
/PHP-5.5/ext/mysql/
H A Dphp_mysql.c1297 char *stat; local
1314 if ((stat = (char *)mysql_stat(mysql->conn))) {
1315 RETURN_STRING(stat, 1);
1317 if (mysqlnd_stat(mysql->conn, &stat, &stat_len) == PASS) {
1318 RETURN_STRINGL(stat, stat_len, 0);
/PHP-5.5/ext/mysql/tests/
H A Dmysql_stat.phpt24 if ((!is_string($stat = mysql_stat($link))) || ('' === $stat))
26 gettype($stat), $stat, mysql_errno($link), mysql_error($link));
28 if ((version_compare(PHP_VERSION, '5.9.9', '>') == 1) && !is_unicode($stat)) {
30 var_inspect($stat);
37 assert(soundex($stat) === soundex($stat_def));
/PHP-5.5/ext/mysqli/
H A Dmysqli_api.c2316 char *stat; local
2327 if ((stat = (char *)mysql_stat(mysql->mysql)))
2329 RETURN_STRING(stat, 1);
2331 if (mysqlnd_stat(mysql->mysql, &stat, &stat_len) == PASS)
2333 RETURN_STRINGL(stat, stat_len, 0);

Completed in 175 milliseconds

123456789