HomeSort by relevance Sort by last modified time
    Searched refs:targetFileNamePath (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/icu/source/tools/pkgdata/
pkgdata.cpp 579 char targetFileNamePath[LARGE_BUFFER_MAX_SIZE] = "";
581 uprv_strcpy(targetFileNamePath, targetDir);
582 uprv_strcat(targetFileNamePath, datFileName);
584 if (T_FileStream_file_exists(targetFileNamePath)) {
585 if ((result = remove(targetFileNamePath)) != 0) {
586 fprintf(stderr, "Unable to remove old dat file: %s\n", targetFileNamePath);
592 result = rename(datFileNamePath, targetFileNamePath);
595 fprintf(stdout, "# Moving package file to %s ..\n", targetFileNamePath);
598 fprintf(stderr, "Unable to move dat file (%s) to target location (%s).\n", datFileNamePath, targetFileNamePath);
602 result = pkg_installCommonMode(o->install, targetFileNamePath);
    [all...]
  /external/icu4c/tools/pkgdata/
pkgdata.cpp 581 char targetFileNamePath[LARGE_BUFFER_MAX_SIZE] = "";
583 uprv_strcpy(targetFileNamePath, targetDir);
584 uprv_strcat(targetFileNamePath, datFileName);
587 if (uprv_strcmp(datFileNamePath, targetFileNamePath) != 0) {
588 if (T_FileStream_file_exists(targetFileNamePath)) {
589 if ((result = remove(targetFileNamePath)) != 0) {
591 targetFileNamePath);
596 result = rename(datFileNamePath, targetFileNamePath);
600 targetFileNamePath);
606 datFileNamePath, targetFileNamePath);
    [all...]

Completed in 635 milliseconds