Home
last modified time | relevance | path

Searched refs:file_fontpath (Results 1 – 5 of 5) sorted by relevance

/OK3568_Linux_fs/external/xserver/hw/xfree86/parser/
H A DFiles.c98 if (ptr->file_fontpath == NULL) { in xf86parseFilesSection()
99 ptr->file_fontpath = calloc(1, 1); in xf86parseFilesSection()
103 i = strlen(ptr->file_fontpath) + strlen(str) + 1; in xf86parseFilesSection()
104 if (ptr->file_fontpath[strlen(ptr->file_fontpath) - 1] != ',') { in xf86parseFilesSection()
109 ptr->file_fontpath = realloc(ptr->file_fontpath, i); in xf86parseFilesSection()
111 strcat(ptr->file_fontpath, ","); in xf86parseFilesSection()
113 strcat(ptr->file_fontpath, str); in xf86parseFilesSection()
198 if (ptr->file_fontpath) { in xf86printFileSection()
199 s = ptr->file_fontpath; in xf86printFileSection()
223 TestFree(p->file_fontpath); in xf86freeFiles()
H A Dxf86Parser.h75 char *file_fontpath; member
/OK3568_Linux_fs/external/xserver/hw/xwin/
H A Dwinconfig.c568 else if (filesptr != NULL && filesptr->file_fontpath) { in winConfigFiles()
570 defaultFontPath = strdup(filesptr->file_fontpath); in winConfigFiles()
/OK3568_Linux_fs/external/xserver/hw/xfree86/common/
H A Dxf86Config.c537 else if (fileconf && fileconf->file_fontpath) { in configFiles()
541 if (asprintf(&new_font_path, "%s%s%s", fileconf->file_fontpath, in configFiles()
549 defaultFontPath = fileconf->file_fontpath; in configFiles()
H A Dxf86Configure.c429 ptr->file_fontpath = xnfstrdup(defaultFontPath); in configureFilesSection()