Home | History | Annotate | Download | only in toolutil

Lines Matching refs:fullPath

386     char *fullPath = NULL;
404 fullPath = pathToFullPath(filename, source);
418 files[fileCount].pathname=fullPath;
423 file=T_FileStream_open(fullPath, "rb");
425 fprintf(stderr, "gencmn: unable to open listed file %s\n", fullPath);
432 fprintf(stderr, "gencmn: unable to get length of listed file %s\n", fullPath);
441 printf("%s ignored (size %ld > %ld)\n", fullPath, (long)length, (long)maxSize);
494 char *fullPath;
499 fullPath = uprv_malloc(newLength);
501 uprv_strcpy(fullPath, source);
502 uprv_strcat(fullPath, U_FILE_SEP_STRING);
504 fullPath[0] = 0;
506 n = (int32_t)uprv_strlen(fullPath);
507 uprv_strcat(fullPath, path);
512 for(;fullPath[n];n++) {
513 if(fullPath[n] == U_FILE_ALT_SEP_CHAR) {
514 fullPath[n] = U_FILE_SEP_CHAR;
521 for(;fullPath[n];n++) {
522 if(fullPath[n] == U_TREE_ENTRY_SEP_CHAR) {
523 fullPath[n] = U_FILE_SEP_CHAR;
527 return fullPath;