opened_path_p      97 main/php_open_temporary_file.c static int php_do_open_temporary_file(const char *path, const char *pfx, zend_string **opened_path_p)
opened_path_p     166 main/php_open_temporary_file.c 	if (fd != -1 && opened_path_p) {
opened_path_p     167 main/php_open_temporary_file.c 		*opened_path_p = zend_string_init(opened_path, strlen(opened_path), 0);
opened_path_p     252 main/php_open_temporary_file.c PHPAPI int php_open_temporary_fd_ex(const char *dir, const char *pfx, zend_string **opened_path_p, zend_bool open_basedir_check)
opened_path_p     260 main/php_open_temporary_file.c 	if (opened_path_p) {
opened_path_p     261 main/php_open_temporary_file.c 		*opened_path_p = NULL;
opened_path_p     269 main/php_open_temporary_file.c 			return php_do_open_temporary_file(temp_dir, pfx, opened_path_p);
opened_path_p     276 main/php_open_temporary_file.c 	fd = php_do_open_temporary_file(dir, pfx, opened_path_p);
opened_path_p     284 main/php_open_temporary_file.c PHPAPI int php_open_temporary_fd(const char *dir, const char *pfx, zend_string **opened_path_p)
opened_path_p     286 main/php_open_temporary_file.c 	return php_open_temporary_fd_ex(dir, pfx, opened_path_p, 0);
opened_path_p     289 main/php_open_temporary_file.c PHPAPI FILE *php_open_temporary_file(const char *dir, const char *pfx, zend_string **opened_path_p)
opened_path_p     292 main/php_open_temporary_file.c 	int fd = php_open_temporary_fd(dir, pfx, opened_path_p);
opened_path_p      25 main/php_open_temporary_file.h PHPAPI FILE *php_open_temporary_file(const char *dir, const char *pfx, zend_string **opened_path_p);
opened_path_p      26 main/php_open_temporary_file.h PHPAPI int php_open_temporary_fd_ex(const char *dir, const char *pfx, zend_string **opened_path_p, zend_bool open_basedir_check);
opened_path_p      27 main/php_open_temporary_file.h PHPAPI int php_open_temporary_fd(const char *dir, const char *pfx, zend_string **opened_path_p);