Home
last modified time | relevance | path

Searched refs:st (Results 76 – 100 of 180) sorted by relevance

12345678

/PHP-7.0/ext/fileinfo/libmagic/
H A Dapprentice.c1221 zend_stat_t st; in apprentice_load() local
1245 if (php_sys_stat(fn, &st) == 0 && S_ISDIR(st.st_mode)) { in apprentice_load()
1262 if (zend_stat(mfn, &st) == -1 || !S_ISREG(st.st_mode)) { in apprentice_load()
2814 php_stream_statbuf st; in apprentice_map() local
2832 if (st.sb.st_mode & S_IFDIR) { in apprentice_map()
2848 if (php_stream_stat(stream, &st) < 0) { in apprentice_map()
2852 if (st.sb.st_size < 8 || st.sb.st_size > MAXMAGIC_SIZE) { in apprentice_map()
2854 st.sb.st_size < 8 ? "small" : "large"); in apprentice_map()
2858 map->len = (size_t)st.sb.st_size; in apprentice_map()
2863 if (php_stream_read(stream, map->p, (size_t)st.sb.st_size) != (size_t)st.sb.st_size) { in apprentice_map()
[all …]
/PHP-7.0/ext/standard/tests/strings/
H A Dstripos.phpt10 var_dump(stripos("te".chr(0)."st", chr(0)));
H A Dstripos_variation4.phpt17 Ex'ple of h'doc st'g, contains
H A Dstrripos_variation4.phpt17 Ex'ple of h'doc st'g, contains
H A Dstrrpos_variation4.phpt17 Ex'ple of h'doc st'g, contains
H A Dstristr.phpt14 var_dump(md5(stristr("te".chr(0)."st", chr(0))));
H A Dstrrev_variation3.phpt20 Ex'ple of h'doc st'g, contains
H A Dlevenshtein.phpt30 $n += test_me("1st empty" , 3, "", "xzy");
H A Dstr_split_variation3.phpt74 string(7) "It's st"
/PHP-7.0/ext/intl/tests/
H A Dtransliterator_transliterate_variant1.phpt2 transliterator_transliterate (variant 1, non-transliterator 1st arg)
/PHP-7.0/ext/standard/tests/general_functions/
H A D003.phpt26 $n += test_me("1st empty" , 3, "", "xzy");
/PHP-7.0/ext/reflection/tests/
H A DReflectionMethod_constructor_error2.phpt39 //invalid 1st param
/PHP-7.0/ext/spl/tests/
H A Dbug45614.phpt2 SPL: Bug#45614 (ArrayIterator can show 1st private prop of wrapped object)
/PHP-7.0/ext/fileinfo/
H A Dlibmagic.patch460 - struct stat st;
462 + zend_stat_t st;
484 - if (stat(fn, &st) == 0 && S_ISDIR(st.st_mode)) {
488 + if (php_sys_stat(fn, &st) == 0 && S_ISDIR(st.st_mode)) {
509 - if (stat(mfn, &st) == -1 || !S_ISREG(st.st_mode)) {
511 + if (zend_stat(mfn, &st) == -1 || !S_ISREG(st.st_mode)) {
651 - struct stat st;
659 + php_stream_statbuf st;
702 - if (st.st_size < 8 || st.st_size > MAXMAGIC_SIZE) {
703 + if (st.sb.st_size < 8 || st.sb.st_size > MAXMAGIC_SIZE) {
[all …]
/PHP-7.0/tests/classes/
H A Diterators_001.phpt35 case 0: return "1st";
187 object:1st=>0
H A Diterators_002.phpt36 case 0: return "1st";
/PHP-7.0/ext/mbstring/oniguruma/
H A DREADME.ja135 st.h �ϥå���ơ��֥�ؿ����
136 st.c �ϥå���ơ��֥�ؿ�
H A DREADME129 st.h hash table functions header file
130 st.c hash table functions
/PHP-7.0/ext/xmlreader/tests/
H A D003.phpt28 echo "1st attr (num) failed\n";
/PHP-7.0/tests/lang/
H A DforeachLoopIteratorAggregate.004.phpt34 case 0: return "1st";
/PHP-7.0/ext/oci8/tests/
H A Dlob_025.phpt68 string(2) "st"
H A Dlob_027.phpt91 string(30) "this is a biiiig faaat test st"
/PHP-7.0/ext/date/tests/
H A Dbug43452.phpt7 // (November 1st) is the same day of week.
/PHP-7.0/main/streams/
H A Dplain_wrapper.c58 # define PLAIN_WRAP_BUF_SIZE(st) (((st) > UINT_MAX) ? UINT_MAX : (unsigned int)(st)) argument
60 # define PLAIN_WRAP_BUF_SIZE(st) (st) argument
/PHP-7.0/TSRM/
H A Dtsrm_win32.c782 SYSTEMTIME st; in win32_utime() local
783 GetSystemTime(&st); in win32_utime()
784 SystemTimeToFileTime(&st, &mtime); in win32_utime()

Completed in 49 milliseconds

12345678