Lines Matching refs:opened_path_p
89 …atic int php_do_open_temporary_file(const char *path, const char *pfx, zend_string **opened_path_p) in php_do_open_temporary_file() argument
189 if (fd != -1 && opened_path_p) { in php_do_open_temporary_file()
190 *opened_path_p = zend_string_init(opened_path, opened_path_len, 0); in php_do_open_temporary_file()
194 if (fd != -1 && opened_path_p) { in php_do_open_temporary_file()
195 *opened_path_p = zend_string_init(opened_path, strlen(opened_path), 0); in php_do_open_temporary_file()
288 PHPAPI int php_open_temporary_fd_ex(const char *dir, const char *pfx, zend_string **opened_path_p, … in php_open_temporary_fd_ex() argument
296 if (opened_path_p) { in php_open_temporary_fd_ex()
297 *opened_path_p = NULL; in php_open_temporary_fd_ex()
307 return php_do_open_temporary_file(temp_dir, pfx, opened_path_p); in php_open_temporary_fd_ex()
318 fd = php_do_open_temporary_file(dir, pfx, opened_path_p); in php_open_temporary_fd_ex()
329 PHPAPI int php_open_temporary_fd(const char *dir, const char *pfx, zend_string **opened_path_p) in php_open_temporary_fd() argument
331 return php_open_temporary_fd_ex(dir, pfx, opened_path_p, PHP_TMP_FILE_DEFAULT); in php_open_temporary_fd()
334 PHPAPI FILE *php_open_temporary_file(const char *dir, const char *pfx, zend_string **opened_path_p) in php_open_temporary_file() argument
337 int fd = php_open_temporary_fd(dir, pfx, opened_path_p); in php_open_temporary_file()