| /PHP_5_3/ext/zip/tests/ |
| H A D | utils.inc | 5 $sb = $z->statIndex($i); 6 echo $i . ' ' . $sb['name'] . "\n";
|
| /PHP_5_3/ext/zip/ |
| H A D | zip_stream.c | 102 struct zip_stat sb; local 147 if (zip_stat(za, fragment, ZIP_FL_NOCASE, &sb) != 0) { 154 ssb->sb.st_size = sb.size; 155 ssb->sb.st_mode |= S_IFREG; /* regular file */ 157 ssb->sb.st_size = 0; 158 ssb->sb.st_mode |= S_IFDIR; /* regular directory */ 161 ssb->sb.st_mtime = sb.mtime; 162 ssb->sb [all...] |
| H A D | php_zip.h | 66 struct zip_stat sb; member in struct:_ze_zip_read_rsrc
|
| H A D | php_zip.c | 63 /* {{{ PHP_ZIP_STAT_INDEX(za, index, flags, sb) */ 64 #define PHP_ZIP_STAT_INDEX(za, index, flags, sb) \ 65 if (zip_stat_index(za, index, flags, &sb) != 0) { \ 70 /* {{{ PHP_ZIP_STAT_PATH(za, path, path_len, flags, sb) */ 71 #define PHP_ZIP_STAT_PATH(za, path, path_len, flags, sb) \ 76 if (zip_stat(za, path, flags, &sb) != 0) { \ 142 struct zip_stat sb; local 171 if (path_cleaned_len >= MAXPATHLEN || zip_stat(za, file, 0, &sb) != 0) { 435 /* {{{ RETURN_SB(sb) */ 436 #define RETURN_SB(sb) \ 1610 struct zip_stat sb; local 1884 struct zip_stat sb; local 1911 struct zip_stat sb; local 2092 struct zip_stat sb; local 2156 struct zip_stat sb; local 2213 struct zip_stat sb; local 2278 struct zip_stat sb; local 2342 struct zip_stat sb; local 2513 struct zip_stat sb; local 2598 struct zip_stat sb; local [all...] |
| /PHP_5_3/win32/ |
| H A D | glob.c | 555 struct stat sb; local 566 if (g_lstat(pathbuf, &sb, pglob)) 570 !IS_SLASH(pathend[-1])) && (S_ISDIR(sb.st_mode) || 571 (S_ISLNK(sb.st_mode) && 572 (g_stat(pathbuf, &sb, pglob) == 0) && 573 S_ISDIR(sb.st_mode)))) { 850 g_lstat(fn, sb, pglob) 852 struct stat *sb; 860 return((*pglob->gl_lstat)(buf, sb)); 861 return(php_sys_lstat(buf, sb)); [all...] |
| /PHP_5_3/ext/fileinfo/libmagic/ |
| H A D | file.h | 395 protected int file_fsmagic(struct magic_set *ms, const char *fn, struct stat *sb, php_stream *stream);
|
| H A D | fsmagic.c | 93 file_fsmagic(struct magic_set *ms, const char *fn, struct stat *sb, php_stream *stream) argument 114 memcpy(sb, &ssb.sb, sizeof(struct stat)); 116 if (php_sys_stat(fn, sb) != 0) { 127 if (sb->st_mode & S_ISUID) 132 if (sb->st_mode & S_ISGID) 137 if (sb->st_mode & S_ISVTX) 143 switch (sb->st_mode & S_IFMT) { 162 major(sb->st_rdev), dv_unit(sb [all...] |
| H A D | magic.c | 336 const struct stat *sb) 349 utsbuf[0].tv_sec = sb->st_atime; 350 utsbuf[1].tv_sec = sb->st_mtime; 357 utbuf.actime = sb->st_atime; 358 utbuf.modtime = sb->st_mtime; 394 struct stat sb; local 413 switch (file_fsmagic(ms, inname, &sb, stream)) { 435 if (unreadable_info(ms, sb.st_mode, inname) == -1) 464 close_and_restore(ms, inname, 0, &sb); 335 close_and_restore(const struct magic_set *ms, const char *name, int fd, const struct stat *sb) argument
|
| /PHP_5_3/ext/fileinfo/ |
| H A D | fileinfo.c | 523 if (ssb.sb.st_mode & S_IFDIR) { 542 if (ssb.sb.st_mode & S_IFDIR) {
|
| /PHP_5_3/ext/pdo_odbc/ |
| H A D | odbc_stmt.c | 388 php_stream_statbuf sb; local 396 if (0 == php_stream_stat(stm, &sb)) { 419 P->len = SQL_LEN_DATA_AT_EXEC(sb.sb.st_size);
|
| /PHP_5_3/ext/standard/ |
| H A D | filestat.c | 642 if ((imode & 04000) != 0 && (ssb.sb.st_mode & 04000) == 0) { 645 if ((imode & 02000) != 0 && (ssb.sb.st_mode & 02000) == 0) { 648 if ((imode & 01000) != 0 && (ssb.sb.st_mode & 01000) == 0) { 866 stat_sb = &ssb.sb; 871 if(ssb.sb.st_uid==getuid()) { 875 } else if(ssb.sb.st_gid==getgid()) { 888 if(ssb.sb.st_gid==gids[i]) { 917 RETURN_LONG((long)ssb.sb.st_mode); 919 RETURN_LONG((long)ssb.sb.st_ino); 921 RETURN_LONG((long)ssb.sb [all...] |
| H A D | ftp_fopen_wrapper.c | 799 ssb->sb.st_mode = 0644; /* FTP won't give us a valid mode, so aproximate one based on being readable */ 803 ssb->sb.st_mode |= S_IFREG; 805 ssb->sb.st_mode |= S_IFDIR; 822 if (ssb->sb.st_mode & S_IFDIR) { 823 ssb->sb.st_size = 0; 828 ssb->sb.st_size = atoi(tmp_line + 4); 868 ssb->sb.st_mtime = mktime(&tm); 872 ssb->sb.st_mtime = -1; 875 ssb->sb.st_ino = 0; /* Unknown values */ 876 ssb->sb [all...] |
| H A D | iptc.c | 186 struct stat sb; local 211 fstat(fileno(fp), &sb); local 213 poi = spoolbuf = safe_emalloc(1, iptcdata_len + sizeof(psheader) + sb.st_size + 1024, 1); 214 memset(poi, 0, iptcdata_len + sizeof(psheader) + sb.st_size + 1024 + 1);
|
| H A D | link.c | 99 struct stat sb; local 114 ret = VCWD_LSTAT(link, &sb); 122 RETURN_LONG((long) sb.st_dev);
|
| H A D | link_win32.c | 84 struct stat sb; local 91 ret = VCWD_STAT(link, &sb); 97 RETURN_LONG((long) sb.st_dev);
|
| H A D | file.c | 1671 MAKE_LONG_ZVAL_INCREF(stat_dev, stat_ssb.sb.st_dev); 1672 MAKE_LONG_ZVAL_INCREF(stat_ino, stat_ssb.sb.st_ino); 1673 MAKE_LONG_ZVAL_INCREF(stat_mode, stat_ssb.sb.st_mode); 1674 MAKE_LONG_ZVAL_INCREF(stat_nlink, stat_ssb.sb.st_nlink); 1675 MAKE_LONG_ZVAL_INCREF(stat_uid, stat_ssb.sb.st_uid); 1676 MAKE_LONG_ZVAL_INCREF(stat_gid, stat_ssb.sb.st_gid); 1678 MAKE_LONG_ZVAL_INCREF(stat_rdev, stat_ssb.sb.st_rdev); 1682 MAKE_LONG_ZVAL_INCREF(stat_size, stat_ssb.sb.st_size); 1683 MAKE_LONG_ZVAL_INCREF(stat_atime, stat_ssb.sb.st_atime); 1684 MAKE_LONG_ZVAL_INCREF(stat_mtime, stat_ssb.sb [all...] |
| /PHP_5_3/main/ |
| H A D | fopen_wrappers.c | 684 struct stat sb; local 768 if (VCWD_STAT(trypath, &sb) == 0) {
|
| H A D | php_ini.c | 650 struct stat sb; local 677 if (VCWD_STAT(ini_file, &sb) == 0) { 678 if (S_ISREG(sb.st_mode)) { 762 struct stat sb; local 768 if (VCWD_STAT(ini_file, &sb) == 0) { 769 if (S_ISREG(sb.st_mode)) {
|
| H A D | safe_mode.c | 50 struct stat sb; local 90 ret = VCWD_STAT(path, &sb); 105 uid = sb.st_uid; 106 gid = sb.st_gid; 151 ret = VCWD_STAT(path, &sb); 158 duid = sb.st_uid; 159 dgid = sb.st_gid;
|
| /PHP_5_3/main/streams/ |
| H A D | memory.c | 213 ssb->sb.st_mode = ms->mode & TEMP_STREAM_READONLY ? 0444 : 0666; 215 ssb->sb.st_size = ms->fsize; 216 ssb->sb.st_mode |= S_IFREG; /* regular file */ 219 ssb->sb.st_mtime.tv_sec = timestamp; 220 ssb->sb.st_atime.tv_sec = timestamp; 221 ssb->sb.st_ctime.tv_sec = timestamp; 223 ssb->sb.st_mtime = timestamp; 224 ssb->sb.st_atime = timestamp; 225 ssb->sb.st_ctime = timestamp; 228 ssb->sb [all...] |
| H A D | plain_wrapper.c | 109 unsigned cached_fstat:1; /* sb is valid */ 128 struct stat sb; member in struct:__anon273 139 r = fstat(fd, &d->sb); 233 self->is_pipe = (do_fstat(self, 0) == 0 && S_ISFIFO(self->sb.st_mode)) ? 1 : 0; 272 self->is_pipe = (do_fstat(self, 0) == 0 && S_ISFIFO(self->sb.st_mode)) ? 1 : 0; 542 memcpy(&ssb->sb, &data->sb, sizeof(ssb->sb)); 636 if (range->length == 0 && range->offset > 0 && range->offset < data->sb.st_size) { 637 range->length = data->sb 1127 struct stat sb; local 1190 struct stat sb; local 1467 struct stat sb; local [all...] |
| H A D | streams.c | 1392 if (php_stream_stat(src, &ssbuf) == 0 && ssbuf.sb.st_size > 0) { 1393 max_len = ssbuf.sb.st_size + step; 1444 if (ssbuf.sb.st_size == 0 1446 && S_ISREG(ssbuf.sb.st_mode)
|
| /PHP_5_3/sapi/phttpd/ |
| H A D | phttpd.c | 36 struct stat sb; member in struct:__anon288 197 if (url_expand(PHG(cip)->hip->url, SG(request_info).path_translated, MAXPATHLEN, &PHG(sb), NULL, NULL) == NULL) { 248 struct stat sb; local
|
| /PHP_5_3/ext/phar/ |
| H A D | func_interceptors.c | 620 struct stat sb = {0}; local 672 sb.st_size = 0; 673 sb.st_mode = 0777; 674 sb.st_mode |= S_IFDIR; /* regular directory */ 676 sb.st_mtime.tv_sec = phar->max_timestamp; 677 sb.st_atime.tv_sec = phar->max_timestamp; 678 sb.st_ctime.tv_sec = phar->max_timestamp; 680 sb.st_mtime = phar->max_timestamp; 681 sb.st_atime = phar->max_timestamp; 682 sb [all...] |
| H A D | stream.c | 486 ssb->sb.st_size = data->uncompressed_filesize; 487 ssb->sb.st_mode = data->flags & PHAR_ENT_PERM_MASK; 488 ssb->sb.st_mode |= S_IFREG; /* regular file */ 491 ssb->sb.st_mtime.tv_sec = data->timestamp; 492 ssb->sb.st_atime.tv_sec = data->timestamp; 493 ssb->sb.st_ctime.tv_sec = data->timestamp; 495 ssb->sb.st_mtime = data->timestamp; 496 ssb->sb.st_atime = data->timestamp; 497 ssb->sb.st_ctime = data->timestamp; 500 ssb->sb [all...] |