Lines Matching refs:pathified
6965 char * pathified, *ret_spec, *ret_buf; local
6967 pathified = NULL;
6971 Newx(pathified, VMS_MAXRSS, char);
6972 if (pathified == NULL)
6974 ret_buf = pathified;
6984 if (pathified)
6985 Safefree(pathified);
8930 char * ret_spec, *pathified; local
8935 pathified = (char *)PerlMem_malloc(VMS_MAXRSS);
8936 if (pathified == NULL)
8939 ret_spec = int_pathify_dirspec(path, pathified);
8942 PerlMem_free(pathified);
8946 ret_spec = int_tovmsspec(pathified, buf, 0, utf8_fl);
8948 PerlMem_free(pathified);
8959 char *pathified, *vmsified, *cp; local
8962 pathified = (char *)PerlMem_malloc(VMS_MAXRSS);
8963 if (pathified == NULL) _ckvmssts(SS$_INSFMEM);
8964 if (int_pathify_dirspec(path, pathified) == NULL) {
8965 PerlMem_free(pathified);
8972 if (do_tovmsspec(pathified, buf ? buf : vmsified, 0, NULL) == NULL) {
8973 PerlMem_free(pathified);
8977 PerlMem_free(pathified);
9029 char *pathified, *unixified, *cp; local
9032 pathified = (char *)PerlMem_malloc(VMS_MAXRSS);
9033 if (pathified == NULL) _ckvmssts(SS$_INSFMEM);
9034 if (int_pathify_dirspec(path, pathified) == NULL) {
9035 PerlMem_free(pathified);
9043 if (do_tounixspec(pathified,buf ? buf : unixified,0,NULL) == NULL) {
9044 PerlMem_free(pathified);
9048 PerlMem_free(pathified);
12721 char *pathified; local
12727 pathified = do_pathify_dirspec(SvPV(ST(0),n_a),NULL,1,&utf8_fl);
12729 if (pathified != NULL) {
12730 sv_usepvn(ST(0),pathified,strlen(pathified));