Lines Matching full:fullpath
407 char *fullPath = NULL;
425 fullPath = pathToFullPath(filename, source);
438 files[fileCount].pathname=fullPath;
443 file=T_FileStream_open(fullPath, "rb");
445 fprintf(stderr, "gencmn: unable to open listed file %s\n", fullPath);
452 fprintf(stderr, "gencmn: unable to get length of listed file %s\n", fullPath);
461 printf("%s ignored (size %ld > %ld)\n", fullPath, (long)length, (long)maxSize);
511 char *fullPath;
516 fullPath = uprv_malloc(newLength);
518 uprv_strcpy(fullPath, source);
519 uprv_strcat(fullPath, U_FILE_SEP_STRING);
521 fullPath[0] = 0;
523 n = (int32_t)uprv_strlen(fullPath);
524 fullPath[n] = 0; /* Suppress compiler warning for unused variable n */
526 uprv_strcat(fullPath, path);
531 for(;fullPath[n];n++) {
532 if(fullPath[n] == U_FILE_ALT_SEP_CHAR) {
533 fullPath[n] = U_FILE_SEP_CHAR;
540 for(;fullPath[n];n++) {
541 if(fullPath[n] == U_TREE_ENTRY_SEP_CHAR) {
542 fullPath[n] = U_FILE_SEP_CHAR;
546 return fullPath;