/PHP-7.4/ext/pcntl/tests/ |
H A D | 003.phpt | 16 var_dump(count($old)); 17 pcntl_sigprocmask(SIG_BLOCK, array(SIGINT), $old); 18 var_dump(count($old)); 19 pcntl_sigprocmask(SIG_UNBLOCK, array(SIGINT), $old); 20 var_dump(count($old)); 21 pcntl_sigprocmask(SIG_SETMASK, array(SIGINT), $old); 22 var_dump(count($old)); 23 pcntl_sigprocmask(SIG_SETMASK, array(), $old); 24 var_dump(count($old)); 27 pcntl_sigprocmask(SIG_SETMASK, $prev, $old); [all …]
|
/PHP-7.4/sapi/fpm/fpm/ |
H A D | fpm_atomic.h | 41 static inline atomic_uint_t atomic_cmp_set(atomic_t *lock, atomic_uint_t old, atomic_uint_t set) /*… in atomic_cmp_set() argument 46 "=a" (res) : "m" (*lock), "a" (old), "r" (set) : "memory"); in atomic_cmp_set() 67 static inline atomic_uint_t atomic_cmp_set(atomic_t *lock, atomic_uint_t old, atomic_uint_t set) /*… in atomic_cmp_set() argument 72 "=a" (res) : "m" (*lock), "a" (old), "r" (set) : "memory"); in atomic_cmp_set() 102 static inline atomic_uint_t atomic_cas_64(atomic_t *lock, atomic_uint_t old, atomic_uint_t new) /* … in atomic_cas_64() argument 104 __asm__ __volatile__("casx [%2], %3, %0 " : "=&r"(new) : "0"(new), "r"(lock), "r"(old): "memory"); in atomic_cas_64() 110 static inline atomic_uint_t atomic_cmp_set(atomic_t *lock, atomic_uint_t old, atomic_uint_t set) /*… in atomic_cmp_set() argument 112 return (atomic_cas_64(lock, old, set)==old); in atomic_cmp_set() 119 static inline atomic_uint_t atomic_cas_32(atomic_t *lock, atomic_uint_t old, atomic_uint_t new) /* … in atomic_cas_32() argument 121 __asm__ __volatile__("cas [%2], %3, %0 " : "=&r"(new) : "0"(new), "r"(lock), "r"(old): "memory"); in atomic_cas_32() [all …]
|
/PHP-7.4/ext/soap/tests/bugs/ |
H A D | bug31695.phpt | 37 $old = $client->__setLocation("test://3"); 38 echo "$old\n"; 41 $client->__setLocation($old); 43 $old = $client->__setLocation(); 45 $client->__setLocation($old);
|
/PHP-7.4/ext/reflection/tests/ |
H A D | bug79487.phpt | 14 public static $a = 'A old'; 17 public static $b = 'B old'; 31 string(5) "B old"
|
H A D | ReflectionMethod_constructor_basic.phpt | 33 echo "\nInherited old-style constructor:\n"; 82 echo "\nRedefined old-style constructor:\n"; 98 Inherited old-style constructor: 116 Redefined old-style constructor:
|
/PHP-7.4/Zend/tests/ |
H A D | bug32322.phpt | 25 echo "Using old class " . self::$instance -> myname . "\n"; 37 echo "Using old class " . $instance2 -> myname . "\n"; 69 Using old class Singleton1 72 Using old class Singleton1 75 Using old class Singleton2 78 Using old class Singleton2
|
/PHP-7.4/scripts/dev/ |
H A D | bless_tests.php | 106 $result[] = $elem->old; 138 public $old; variable in DiffElem 142 public function __construct(int $type, $old, $new) { argument 144 $this->old = $old; 165 * @param array $old Original array 170 public function diff(array $old, array $new) { argument 171 list($trace, $x, $y) = $this->calculateTrace($old, $new); 172 return $this->extractDiff($trace, $x, $y, $old, $new);
|
/PHP-7.4/docs/ |
H A D | output-api.md | 1 # API adjustment to the old output control code 23 // not possible with old API 38 // not possible with old API 46 // not possible with old API 82 // not possible with old API, unless hardcoding into output.c 86 // not possible with old API 90 // not possible with old API 94 //not possible with old API 98 // not possible with old API 102 // not possible with old API [all …]
|
/PHP-7.4/ext/session/tests/ |
H A D | bug79413.phpt | 10 $old = session_id(); 12 var_dump($new !== $old);
|
/PHP-7.4/ext/standard/tests/general_functions/ |
H A D | bug79254.phpt | 6 $old = getenv(); 12 var_dump(array_diff($new, $old));
|
/PHP-7.4/ext/standard/tests/serialize/ |
H A D | bug49649.phpt | 15 * public $notThere = 'old'; 44 string(3) "old"
|
H A D | bug49649_1.phpt | 15 * public $notThere = 'old'; 44 string(3) "old"
|
H A D | bug49649_2.phpt | 15 * public $notThere = 'old'; 44 string(3) "old"
|
/PHP-7.4/ext/fileinfo/libmagic/ |
H A D | compress.c | 498 unsigned char flg = old[3]; in uncompressgzipped() 504 data_start += 2 + old[data_start] + old[data_start + 1] * 256; in uncompressgzipped() 507 while(data_start < *n && old[data_start]) in uncompressgzipped() 512 while(data_start < *n && old[data_start]) in uncompressgzipped() 523 old += data_start; in uncompressgzipped() 524 return uncompresszlib(old, newch, bytes_max, n, 0); in uncompressgzipped() 539 z.next_in = CCAST(Bytef *, old); in uncompresszlib() 622 writechild(int fd, const void *old, size_t n) in writechild() argument 637 if (swrite(fd, old, n) != CAST(ssize_t, n)) { in writechild() 700 return uncompressgzipped(old, newch, bytes_max, n); in uncompressbuf() [all …]
|
/PHP-7.4/ext/standard/ |
H A D | html.h | 55 PHPAPI zend_string *php_escape_html_entities(unsigned char *old, size_t oldlen, int all, int flags,… 56 PHPAPI zend_string *php_escape_html_entities_ex(unsigned char *old, size_t oldlen, int all, int fla…
|
H A D | html.c | 891 const char *old, in traverse_for_entities() argument 904 lim = old + oldlen; /* terminator address */ in traverse_for_entities() 907 for (p = old, q = ZSTR_VAL(ret); p < lim;) { in traverse_for_entities() 1099 unsigned char *old, in find_entity_for_char() argument 1254 mbsequence = &old[cursor_before]; in php_escape_html_entities_ex() 1277 &rep_len, old, oldlen, &cursor); in php_escape_html_entities_ex() 1335 if (old[cursor] == '#') { /* numeric entity */ in php_escape_html_entities_ex() 1338 char *pos = (char*)&old[cursor+1]; in php_escape_html_entities_ex() 1346 ent_len = pos - (char*)&old[cursor]; in php_escape_html_entities_ex() 1349 const char *start = (const char *) &old[cursor], in php_escape_html_entities_ex() [all …]
|
/PHP-7.4/tests/lang/ |
H A D | bug21961.phpt | 52 $x->getdrunk('The old Tavern'); 56 string(14) "The old Tavern"
|
/PHP-7.4/ext/soap/ |
H A D | php_xml.c | 94 zend_bool old; in soap_xmlParseFile() local 103 old = php_libxml_disable_entity_loader(1); in soap_xmlParseFile() 105 php_libxml_disable_entity_loader(old); in soap_xmlParseFile() 142 zend_bool old; in soap_xmlParseMemory() local 150 old = php_libxml_disable_entity_loader(1); in soap_xmlParseMemory() 152 php_libxml_disable_entity_loader(old); in soap_xmlParseMemory()
|
/PHP-7.4/ext/mysqli/tests/ |
H A D | table.inc | 11 printf("Failed to drop old test table: [%d] %s\n", mysqli_errno($link), mysqli_error($link)); 16 printf("Failed to drop old test table: [%d] %s\n", mysqli_errno($link), mysqli_error($link));
|
/PHP-7.4/sapi/phpdbg/ |
H A D | phpdbg_set.c | 209 FILE *old = PHPDBG_G(oplog); in PHPDBG_SET() local 214 PHPDBG_G(oplog) = old; in PHPDBG_SET() 216 if (old) { in PHPDBG_SET() 218 fclose(old); in PHPDBG_SET()
|
/PHP-7.4/ext/openssl/tests/ |
H A D | openssl_encrypt_crash.phpt | 2 openssl_encrypt() crash with old OpenSSL
|
/PHP-7.4/ext/standard/tests/file/ |
H A D | fileinode_variation.phpt | 62 fclose( fopen("$file_path/old.txt", "w") ); 63 print( fileinode("$file_path/old.txt") )."\n"; 66 rename("$file_path/old.txt", "$file_path/new.txt");
|
/PHP-7.4/ext/mbstring/tests/ |
H A D | mb_ereg_search_invalid_pattern.phpt | 2 mb_ereg_search() with invalid pattern should discard old matches
|
/PHP-7.4/ext/opcache/ |
H A D | zend_shared_alloc.h | 170 void zend_shared_alloc_register_xlat_entry(const void *old, const void *new); 171 void *zend_shared_alloc_get_xlat_entry(const void *old);
|
/PHP-7.4/ext/curl/ |
H A D | config.m4 | 29 AC_MSG_CHECKING([for libcurl linked against old openssl]) 58 AC_DEFINE([HAVE_CURL_OLD_OPENSSL], [1], [Have cURL with old OpenSSL])
|