Lines Matching refs:targetFileNamePath
622 char targetFileNamePath[LARGE_BUFFER_MAX_SIZE] = ""; in pkg_executeOptions() local
624 uprv_strcpy(targetFileNamePath, targetDir); in pkg_executeOptions()
625 uprv_strcat(targetFileNamePath, datFileName); in pkg_executeOptions()
628 if (uprv_strcmp(datFileNamePath, targetFileNamePath) != 0) { in pkg_executeOptions()
629 if (T_FileStream_file_exists(targetFileNamePath)) { in pkg_executeOptions()
630 if ((result = remove(targetFileNamePath)) != 0) { in pkg_executeOptions()
632 targetFileNamePath); in pkg_executeOptions()
637 result = rename(datFileNamePath, targetFileNamePath); in pkg_executeOptions()
641 targetFileNamePath); in pkg_executeOptions()
647 datFileNamePath, targetFileNamePath); in pkg_executeOptions()
653 result = pkg_installCommonMode(o->install, targetFileNamePath); in pkg_executeOptions()