Lines Matching refs:file_modulepath
121 if (ptr->file_modulepath == NULL) { in xf86parseFilesSection()
122 ptr->file_modulepath = malloc(1); in xf86parseFilesSection()
123 ptr->file_modulepath[0] = '\0'; in xf86parseFilesSection()
127 k = strlen(ptr->file_modulepath) + strlen(str) + 1; in xf86parseFilesSection()
128 if (ptr->file_modulepath[strlen(ptr->file_modulepath) - 1] != in xf86parseFilesSection()
134 ptr->file_modulepath = realloc(ptr->file_modulepath, k); in xf86parseFilesSection()
136 strcat(ptr->file_modulepath, ","); in xf86parseFilesSection()
138 strcat(ptr->file_modulepath, str); in xf86parseFilesSection()
185 if (ptr->file_modulepath) { in xf86printFileSection()
186 s = ptr->file_modulepath; in xf86printFileSection()
222 TestFree(p->file_modulepath); in xf86freeFiles()