Home
last modified time | relevance | path

Searched refs:st (Results 1 – 25 of 171) sorted by last modified time

1234567

/PHP-5.5/tests/lang/
H A DforeachLoopIteratorAggregate.004.phpt34 case 0: return "1st";
/PHP-5.5/tests/classes/
H A Diterators_001.phpt35 case 0: return "1st";
187 object:1st=>0
H A Diterators_002.phpt36 case 0: return "1st";
H A Diterators_004.phpt8 echo "1st try\n";
40 case 0: return "1st";
57 1st try
H A Darray_access_001.phpt7 public $a = array('1st', 1, 2=>'3rd', '4th'=>4);
89 string(3) "1st"
129 string(3) "1st"
162 string(3) "1st"
172 string(3) "1st"
190 string(3) "1st"
H A Darray_access_002.phpt7 public $a = array('1st', 1, 2=>'3rd', '4th'=>4);
89 string(3) "1st"
129 string(3) "1st"
162 string(3) "1st"
172 string(3) "1st"
190 string(3) "1st"
H A Darray_access_003.phpt9 public $a = array('1st', 1, 2=>'3rd', '4th'=>4);
H A Darray_access_004.phpt7 public $a = array('1st', 1, 2=>'3rd', '4th'=>4);
/PHP-5.5/sapi/litespeed/
H A Dlsapilib.c646 struct stat st; in readSecret() local
653 if ( fstat( fd, &st ) == -1 ) in readSecret()
667 if ( st.st_mode & 0077 ) in readSecret()
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_main.c1133 struct stat st; local
1191 if (stat(pt, &st) == 0 && S_ISREG(st.st_mode)) {
/PHP-5.5/sapi/cgi/
H A Dcgi_main.c1192 struct stat st; local
1246 if (stat(pt, &st) == 0 && S_ISREG(st.st_mode)) {
/PHP-5.5/
H A Drun-tests.php2157 $st = $steps / 2;
2159 for ($ofs1 = $idx1 + 1; $ofs1 < $cnt1 && $st-- > 0; $ofs1++) {
2160 $eq = @count_array_diff($ar1, $ar2, $is_reg, $w, $ofs1, $idx2, $cnt1, $cnt2, $st);
2168 $st = $steps;
2170 for ($ofs2 = $idx2 + 1; $ofs2 < $cnt2 && $st-- > 0; $ofs2++) {
2171 $eq = @count_array_diff($ar1, $ar2, $is_reg, $w, $idx1, $ofs2, $cnt1, $cnt2, $st);
/PHP-5.5/ext/zlib/tests/
H A Ddata.inc61 Thou marshall'st me the way that I was going;
/PHP-5.5/ext/zip/lib/
H A Dzip_fopen_index_encrypted.c55 struct zip_stat st; in zip_fopen_index_encrypted() local
76 zip_stat_index(za, fileno, flags, &st); in zip_fopen_index_encrypted()
80 if (st.encryption_method != ZIP_EM_NONE) { in zip_fopen_index_encrypted()
86 st.encryption_method)) == NULL) { in zip_fopen_index_encrypted()
95 if (st.comp_method != ZIP_CM_STORE) { in zip_fopen_index_encrypted()
97 st.comp_method)) == NULL) { in zip_fopen_index_encrypted()
107 if (st.comp_size == 0) { in zip_fopen_index_encrypted()
112 if ((src=_zip_source_file_or_p(za, NULL, za->zp, start, st.comp_size, in zip_fopen_index_encrypted()
113 0, &st)) == NULL) in zip_fopen_index_encrypted()
134 || st.comp_method == ZIP_CM_STORE ) { in zip_fopen_index_encrypted()
H A Dzip_open.c483 struct stat st; in _zip_file_exists() local
490 if (stat(fn, &st) != 0) { in _zip_file_exists()
H A Dzip_source_buffer.c119 struct zip_stat *st; in read_data() local
121 if (len < sizeof(*st)) in read_data()
124 st = (struct zip_stat *)data; in read_data()
126 zip_stat_init(st); in read_data()
127 st->mtime = z->mtime; in read_data()
128 st->size = z->end - z->data; in read_data()
129 st->comp_size = st->size; in read_data()
130 st->comp_method = ZIP_CM_STORE; in read_data()
131 st->encryption_method = ZIP_EM_NONE; in read_data()
132 st->valid = ZIP_STAT_MTIME|ZIP_STAT_SIZE|ZIP_STAT_COMP_SIZE in read_data()
[all …]
H A Dzip_source_crc.c103 struct zip_stat st; in crc_read() local
105 if (zip_source_stat(src, &st) < 0) in crc_read()
108 if ((st.valid & ZIP_STAT_CRC) && st.crc != ctx->crc) { in crc_read()
114 if ((st.valid & ZIP_STAT_SIZE) && st.size != ctx->size) { in crc_read()
133 struct zip_stat *st; in crc_read() local
135 st = (struct zip_stat *)data; in crc_read()
140 st->size = ctx->size; in crc_read()
141 st->crc = ctx->crc; in crc_read()
142 st->valid |= ZIP_STAT_SIZE|ZIP_STAT_CRC; in crc_read()
H A Dzip_source_deflate.c286 struct zip_stat *st; in deflate_compress() local
288 st = (struct zip_stat *)data; in deflate_compress()
290 st->comp_method = ZIP_CM_DEFLATE; in deflate_compress()
293 st->comp_size = ctx->size; in deflate_compress()
294 st->valid |= ZIP_STAT_COMP_SIZE; in deflate_compress()
297 st->valid &= ~ZIP_STAT_COMP_SIZE; in deflate_compress()
357 struct zip_stat *st; in deflate_decompress() local
359 st = (struct zip_stat *)data; in deflate_decompress()
361 st->comp_method = ZIP_CM_STORE; in deflate_decompress()
362 if (st->comp_size > 0 && st->size > 0) in deflate_decompress()
[all …]
H A Dzip_source_filep.c108 if (st) in _zip_source_file_or_p()
109 memcpy(&f->st, st, sizeof(f->st)); in _zip_source_file_or_p()
111 zip_stat_init(&f->st); in _zip_source_file_or_p()
190 if (len < sizeof(z->st)) in read_file()
193 if (z->st.valid != 0) in read_file()
194 memcpy(data, &z->st, sizeof(z->st)); in read_file()
196 struct zip_stat *st; in read_file() local
213 zip_stat_init(st); in read_file()
214 st->mtime = fst.st_mtime; in read_file()
217 st->size = z->len; in read_file()
[all …]
H A Dzip_source_pkware.c144 struct zip_stat st; in decrypt_header() local
161 if (zip_source_stat(src, &st) < 0) { in decrypt_header()
166 _zip_u2d_time(st.mtime, &dostime, &dosdate); in decrypt_header()
168 if (header[HEADERLEN-1] != st.crc>>24 in decrypt_header()
208 struct zip_stat *st; in pkware_decrypt() local
210 st = (struct zip_stat *)data; in pkware_decrypt()
212 st->encryption_method = ZIP_EM_NONE; in pkware_decrypt()
213 st->valid |= ZIP_STAT_ENCRYPTION_METHOD; in pkware_decrypt()
215 if (st->valid & ZIP_STAT_COMP_SIZE) in pkware_decrypt()
216 st->comp_size -= HEADERLEN; in pkware_decrypt()
H A Dzip_source_stat.c41 zip_source_stat(struct zip_source *src, struct zip_stat *st) in zip_source_stat() argument
45 if (st == NULL) { in zip_source_stat()
51 if (src->cb.f(src->ud, st, sizeof(*st), ZIP_SOURCE_STAT) < 0) in zip_source_stat()
56 if (zip_source_stat(src->src, st) < 0) { in zip_source_stat()
61 ret = src->cb.l(src->src, src->ud, st, sizeof(*st), ZIP_SOURCE_STAT); in zip_source_stat()
H A Dzip_source_zip.c43 struct zip_stat st; member
48 static zip_int64_t read_zip(void *st, void *data, zip_uint64_t len,
92 if (zip_stat_index(srcza, srcidx, flags, &p->st) < 0 in zip_source_zip()
104 p->st.size = p->st.comp_size = len; in zip_source_zip()
105 p->st.comp_method = ZIP_CM_STORE; in zip_source_zip()
106 p->st.crc = 0; in zip_source_zip()
161 if (len < sizeof(z->st)) in read_zip()
163 len = sizeof(z->st); in read_zip()
165 memcpy(data, &z->st, len); in read_zip()
H A Dzip_stat.c41 zip_stat(struct zip *za, const char *fname, int flags, struct zip_stat *st) in zip_stat() argument
48 return zip_stat_index(za, idx, flags, st); in zip_stat()
H A Dzip_stat_index.c42 struct zip_stat *st) in zip_stat_index() argument
68 zip_stat_init(st); in zip_stat_index()
70 st->crc = za->cdir->entry[index].crc; in zip_stat_index()
71 st->size = za->cdir->entry[index].uncomp_size; in zip_stat_index()
72 st->mtime = za->cdir->entry[index].last_mod; in zip_stat_index()
78 st->encryption_method = ZIP_EM_UNKNOWN; in zip_stat_index()
81 st->encryption_method = ZIP_EM_TRAD_PKWARE; in zip_stat_index()
84 st->encryption_method = ZIP_EM_NONE; in zip_stat_index()
89 st->index = index; in zip_stat_index()
90 st->name = name; in zip_stat_index()
[all …]
H A Dzip_stat_init.c41 zip_stat_init(struct zip_stat *st) in zip_stat_init() argument
43 st->valid = 0; in zip_stat_init()
44 st->name = NULL; in zip_stat_init()
45 st->index = ZIP_UINT64_MAX; in zip_stat_init()
46 st->crc = 0; in zip_stat_init()
47 st->mtime = (time_t)-1; in zip_stat_init()
48 st->size = 0; in zip_stat_init()
49 st->comp_size = 0; in zip_stat_init()
50 st->comp_method = ZIP_CM_STORE; in zip_stat_init()
51 st->encryption_method = ZIP_EM_NONE; in zip_stat_init()

Completed in 62 milliseconds

1234567