Searched refs:pfx (Results 1 – 10 of 10) sorted by relevance
/PHP-8.3/main/ |
H A D | php_open_temporary_file.c | 87 static int php_do_open_temporary_file(const char *path, const char *pfx, zend_string **opened_path_… in php_do_open_temporary_file() argument 113 if (!php_win32_check_trailing_space(pfx, strlen(pfx))) { in php_do_open_temporary_file() 146 pfxw = php_win32_ioutil_any_to_w(pfx); in php_do_open_temporary_file() 291 if (!pfx) { in php_open_temporary_fd_ex() 292 pfx = "tmp."; in php_open_temporary_fd_ex() 305 return php_do_open_temporary_file(temp_dir, pfx, opened_path_p); in php_open_temporary_fd_ex() 316 fd = php_do_open_temporary_file(dir, pfx, opened_path_p); in php_open_temporary_fd_ex() 327 PHPAPI int php_open_temporary_fd(const char *dir, const char *pfx, zend_string **opened_path_p) in php_open_temporary_fd() argument 329 return php_open_temporary_fd_ex(dir, pfx, opened_path_p, PHP_TMP_FILE_DEFAULT); in php_open_temporary_fd() 332 PHPAPI FILE *php_open_temporary_file(const char *dir, const char *pfx, zend_string **opened_path_p) in php_open_temporary_file() argument [all …]
|
H A D | php_open_temporary_file.h | 32 PHPAPI FILE *php_open_temporary_file(const char *dir, const char *pfx, zend_string **opened_path_p); 33 PHPAPI int php_open_temporary_fd_ex(const char *dir, const char *pfx, zend_string **opened_path_p, … 34 PHPAPI int php_open_temporary_fd(const char *dir, const char *pfx, zend_string **opened_path_p);
|
H A D | php_streams.h | 75 …ine php_stream_fopen_temporary_file_rel(dir, pfx, opened_path) _php_stream_fopen_temporary_file((d… argument
|
/PHP-8.3/ext/openssl/tests/ |
H A D | bug74022.phpt | 2 Bug #74022 PHP Fast CGI crashes when reading from a pfx file with valid password 7 $pfx = __DIR__ . DIRECTORY_SEPARATOR . "bug74022.pfx"; 8 $cert_store = file_get_contents($pfx);
|
H A D | bug74022_2.phpt | 2 Bug #74022 PHP Fast CGI crashes when reading from a pfx file with valid password, multiple extra ce…
|
/PHP-8.3/ext/zlib/tests/ |
H A D | compress_zlib_wrapper.phpt | 9 $pfx = str_repeat('../', substr_count($_SERVER['PHP_SELF'], '../')); 12 $fp = fopen("compress.zlib://{$pfx}ext/xsl/tests/xslt.xsl.gz", "rb");
|
/PHP-8.3/main/streams/ |
H A D | php_stream_plain_wrapper.h | 44 PHPAPI php_stream *_php_stream_fopen_temporary_file(const char *dir, const char *pfx, zend_string *… 45 #define php_stream_fopen_temporary_file(dir, pfx, opened_path) _php_stream_fopen_temporary_file((di… argument
|
H A D | plain_wrapper.c | 217 PHPAPI php_stream *_php_stream_fopen_temporary_file(const char *dir, const char *pfx, zend_string *… in _php_stream_fopen_temporary_file() argument 222 fd = php_open_temporary_fd(dir, pfx, &opened_path); in _php_stream_fopen_temporary_file()
|
/PHP-8.3/ext/opcache/jit/libudis86/ |
H A D | decode.c | 1077 uint8_t pfx; in decode_ssepfx() local 1083 pfx = u->pfx_str; in decode_ssepfx() 1084 if (pfx == 0) { in decode_ssepfx() 1085 pfx = u->pfx_opr; in decode_ssepfx() 1087 idx = ((pfx & 0xf) + 1) / 2; in decode_ssepfx() 1097 if (pfx == 0x66) { in decode_ssepfx()
|
/PHP-8.3/docs/ |
H A D | streams.md | 82 const char *pfx, char **opened_path);
|
Completed in 30 milliseconds