Home
last modified time | relevance | path

Searched refs:CONFIG_BUF_LEN (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/external/xserver/hw/xfree86/parser/
H A Dscan.c80 #define CONFIG_BUF_LEN 1024 macro
113 static int configBufLen = CONFIG_BUF_LEN; in xf86getNextLine()
125 if (configBufLen != CONFIG_BUF_LEN) { in xf86getNextLine()
127 tmpConfigBuf = malloc(CONFIG_BUF_LEN); in xf86getNextLine()
128 tmpConfigRBuf = malloc(CONFIG_BUF_LEN); in xf86getNextLine()
148 configBufLen = CONFIG_BUF_LEN; in xf86getNextLine()
198 tmpConfigBuf = realloc(configBuf, configBufLen + CONFIG_BUF_LEN); in xf86getNextLine()
199 tmpConfigRBuf = realloc(configRBuf, configBufLen + CONFIG_BUF_LEN); in xf86getNextLine()
226 configBufLen += CONFIG_BUF_LEN; in xf86getNextLine()
288 builtinConfig[builtinIndex], CONFIG_BUF_LEN); in xf86getToken()
[all …]
/OK3568_Linux_fs/external/xserver/
H A DChangeLog172728 Bug 8386: Grow parser buffers to fit an entire line if it's longer than CONFIG_BUF_LEN.