Home | History | Annotate | Download | only in toolutil

Lines Matching full:fullpath

411     char *fullPath = NULL;
429 fullPath = pathToFullPath(filename, source);
442 files[fileCount].pathname=fullPath;
447 file=T_FileStream_open(fullPath, "rb");
449 fprintf(stderr, "gencmn: unable to open listed file %s\n", fullPath);
456 fprintf(stderr, "gencmn: unable to get length of listed file %s\n", fullPath);
465 printf("%s ignored (size %ld > %ld)\n", fullPath, (long)length, (long)maxSize);
515 char *fullPath;
520 fullPath = (char *)uprv_malloc(newLength);
522 uprv_strcpy(fullPath, source);
523 uprv_strcat(fullPath, U_FILE_SEP_STRING);
525 fullPath[0] = 0;
527 n = (int32_t)uprv_strlen(fullPath);
528 fullPath[n] = 0; /* Suppress compiler warning for unused variable n */
530 uprv_strcat(fullPath, path);
535 for(;fullPath[n];n++) {
536 if(fullPath[n] == U_FILE_ALT_SEP_CHAR) {
537 fullPath[n] = U_FILE_SEP_CHAR;
544 for(;fullPath[n];n++) {
545 if(fullPath[n] == U_TREE_ENTRY_SEP_CHAR) {
546 fullPath[n] = U_FILE_SEP_CHAR;
550 return fullPath;