Lines Matching refs:pfx
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()
138 …if (snprintf(opened_path, MAXPATHLEN, "%s%s%sXXXXXX", new_state.cwd, trailing_slash, pfx) >= MAXPA… in php_do_open_temporary_file()
146 pfxw = php_win32_ioutil_any_to_w(pfx); in php_do_open_temporary_file()
286 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
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
335 int fd = php_open_temporary_fd(dir, pfx, opened_path_p); in php_open_temporary_file()