/php-src/ext/zip/tests/ |
H A D | oo_getstatusstring.phpt | 12 $arch = new ZipArchive; 13 $arch->open($dirname.'foo.zip',ZIPARCHIVE::CREATE); 14 var_dump($arch->getStatusString()); 16 $arch->deleteIndex(2); 17 var_dump($arch->getStatusString()); 18 $arch->close();
|
/php-src/ext/sockets/tests/ |
H A D | socket_sendto_zerocopy.phpt | 7 $arch = php_uname('m'); 11 if (strpos($arch, 'ppc') !== false || strpos($arch, 'powerpc') !== false) { 12 die('skip not for powerpc arch'); 14 if (getenv('CIRRUS_CI') && strpos($arch, 'aarch64') !== false) {
|
/php-src/ext/phar/tests/tar/ |
H A D | bug70417.phpt | 26 $arch = new PharData($filename); 27 $arch->addFromString('foo', 'bar'); 28 $arch->compress(Phar::GZ); 29 unset($arch);
|
/php-src/ext/intl/tests/ |
H A D | timezone_getErrorCodeMessage_basic.phpt | 8 $arch = php_uname('m'); 9 if ($arch != 'x86_64' && $arch != 'i386')
|
H A D | timezone_getOffset_error.phpt | 8 $arch = php_uname('m'); 9 if ($arch != 'x86_64' && $arch != 'i386')
|
/php-src/ext/phar/ |
H A D | func_interceptors.c | 71 efree(arch); in PHP_FUNCTION() 113 efree(arch); in phar_get_name_for_relative_paths() 121 efree(arch); in phar_get_name_for_relative_paths() 132 efree(arch); in phar_get_name_for_relative_paths() 154 efree(arch); in phar_get_name_for_relative_paths() 519 efree(arch); in phar_file_stat() 538 efree(arch); in phar_file_stat() 593 efree(arch); in phar_file_stat() 601 efree(arch); in phar_file_stat() 783 efree(arch); in PharFileFunction() [all …]
|
H A D | dirstream.c | 352 char *error, *arch, *entry2; in phar_wrapper_mkdir() local 357 …if (FAILURE == phar_split_fname(url_from, strlen(url_from), &arch, &arch_len, &entry2, &entry_len,… in phar_wrapper_mkdir() 362 if (FAILURE == phar_get_archive(&phar, arch, arch_len, NULL, 0, NULL)) { in phar_wrapper_mkdir() 366 efree(arch); in phar_wrapper_mkdir() 481 char *error, *arch, *entry2; in phar_wrapper_rmdir() local 486 if (FAILURE == phar_split_fname(url, strlen(url), &arch, &arch_len, &entry2, &entry_len, 2, 2)) { in phar_wrapper_rmdir() 491 if (FAILURE == phar_get_archive(&phar, arch, arch_len, NULL, 0, NULL)) { in phar_wrapper_rmdir() 495 efree(arch); in phar_wrapper_rmdir()
|
H A D | phar_object.c | 173 efree(arch); in phar_file_action() 265 efree(arch); in phar_file_action() 424 efree(arch); in PHP_METHOD() 429 efree(arch); in PHP_METHOD() 483 efree(arch); in PHP_METHOD() 496 if (arch) { in PHP_METHOD() 511 if (arch) { in PHP_METHOD() 512 efree(arch); in PHP_METHOD() 1193 efree(arch); in PHP_METHOD() 1332 efree(arch); in PHP_METHOD() [all …]
|
H A D | util.c | 268 char *path, *arch, *entry, *test; in phar_find_in_include_path() local 296 arch = estrndup(PHAR_G(last_phar_name), PHAR_G(last_phar_name_len)); in phar_find_in_include_path() 311 if (FAILURE == phar_get_archive(&phar, arch, arch_len, NULL, 0, NULL)) { in phar_find_in_include_path() 312 efree(arch); in phar_find_in_include_path() 325 ret = strpprintf(0, "phar://%s%s", arch, test); in phar_find_in_include_path() 326 efree(arch); in phar_find_in_include_path() 332 ret = strpprintf(0, "phar://%s/%s", arch, test); in phar_find_in_include_path() 333 efree(arch); in phar_find_in_include_path() 342 efree(arch); in phar_find_in_include_path() 355 *pphar = zend_hash_str_find_ptr(&cached_phars, arch, arch_len); in phar_find_in_include_path() [all …]
|
H A D | stream.c | 63 char *arch = NULL, *entry = NULL, *error; in phar_parse_url() local 75 …if (phar_split_fname(filename, strlen(filename), &arch, &arch_len, &entry, &entry_len, 2, (mode[0]… in phar_parse_url() 77 if (arch && !entry) { in phar_parse_url() 78 …have at least phar://%s/ for root directory (always use full path to a new phar)", filename, arch); in phar_parse_url() 79 arch = NULL; in phar_parse_url() 88 resource->host = zend_string_init(arch, arch_len, 0); in phar_parse_url() 89 efree(arch); in phar_parse_url()
|
H A D | phar_internal.h | 474 zend_result phar_split_fname(const char *filename, size_t filename_len, char **arch, size_t *arch_l…
|
/php-src/ext/opcache/tests/ |
H A D | jmp_elim_001.phpt | 12 $info = array('arch' => $archName, 18 {"arch":"64","webserver":"Apache"}
|
/php-src/ext/zip/ |
H A D | php_zip.h | 92 php_stream *php_stream_zip_open(struct zip *arch, struct zip_stat *sb, const char *mode, zip_flags_…
|
H A D | zip_stream.c | 238 php_stream *php_stream_zip_open(struct zip *arch, struct zip_stat *sb, const char *mode, zip_flags_… in php_stream_zip_open() argument 249 if (arch) { in php_stream_zip_open() 250 zf = zip_fopen_index(arch, sb->index, flags); in php_stream_zip_open()
|
/php-src/ext/opcache/jit/ir/dynasm/ |
H A D | dynasm.lua | 631 local function loadarch(arch) 632 if not match(arch, "^[%w_]+$") then return "bad arch name" end 634 local ok, m_arch = pcall(require, "dasm_"..arch) 638 m_arch.setup(arch, g_opt) 885 _info.version, g_arch._info.arch, g_arch._info.version,
|
H A D | dasm_mips.lua | 13 arch = mips64 and "mips64" or "mips", 1147 _info.arch, _info.version, _info.release)) 1167 function _M.setup(arch, opt) 1168 g_arch, g_opt = arch, opt
|
H A D | dasm_arm.lua | 10 arch = "arm", 1079 _info.arch, _info.version, _info.release)) 1099 function _M.setup(arch, opt) 1100 g_arch, g_opt = arch, opt
|
H A D | dasm_arm64.lua | 10 arch = "arm", 1192 _info.arch, _info.version, _info.release)) 1212 function _M.setup(arch, opt) 1213 g_arch, g_opt = arch, opt
|
H A D | dasm_ppc.lua | 12 arch = "ppc", 1885 _info.arch, _info.version, _info.release)) 1905 function _M.setup(arch, opt) 1906 g_arch, g_opt = arch, opt
|
H A D | dasm_x86.lua | 12 arch = x64 and "x64" or "x86", 2359 _info.arch, _info.version, _info.release)) 2380 function _M.setup(arch, opt) 2381 g_arch, g_opt = arch, opt
|
/php-src/build/ |
H A D | config.guess | 223 arch=`echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,'` 225 machine=${arch}${endian}-unknown 277 UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` 281 UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` 285 UNAME_MACHINE_ARCH=`arch | sed 's/SecBSD.//'` 289 UNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\.//'` 463 case `/usr/bin/arch -k` in 478 case `/bin/arch` in
|
H A D | pkg.m4 | 244 dnl module should install arch-independent pkg-config .pc files. By 251 [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@])
|
/php-src/.github/workflows/ |
H A D | push.yml | 202 arch: X64 204 arch: ARM64 205 name: MACOS_${{ matrix.arch }}_DEBUG_NTS
|
H A D | real-time-benchmark.yml | 21 …echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/hashicorp-archive-keyri…
|
/php-src/win32/build/ |
H A D | config.w32.phpize.in | 130 ARG_WITH("codegen-arch", "Architecture for code generation", "no");
|