Lines Matching refs:fullline
173 MP_WCHAR fullline[MAX_LINE_SIZE]; /* line read in from mpapi.conf */ in InitLibrary() local
214 (charPtr = fgetws(fullline, MAX_LINE_SIZE, mpconf))) { in InitLibrary()
217 if ((charPtr = wcschr(fullline, L'\n')) != NULL) in InitLibrary()
220 charPtr = fullline; in InitLibrary()
222 while ((fullline[0] == L' ') || (fullline[0] == L'\t')) in InitLibrary()
230 if ((charPtr = wcschr(fullline, L'\t')) == NULL) in InitLibrary()
231 charPtr = wcschr(fullline, L' '); in InitLibrary()
3456 MP_CHAR fullline[MAX_LINE_SIZE]; /* Full line to add to mpapi.conf */ in MP_RegisterPlugin() local
3476 *fullline = '\0'; in MP_RegisterPlugin()
3477 strncpy(fullline, pluginid, MAX_NAME_SIZE); in MP_RegisterPlugin()
3479 strncat(fullline, "\t", MAX_LINE_SIZE - strlen(pluginid)); in MP_RegisterPlugin()
3480 strncat(fullline, pFileName, MAX_LINE_SIZE - strlen(pluginid) - 1); in MP_RegisterPlugin()
3482 strncat(fullline, "\n", in MP_RegisterPlugin()
3517 if (pwrite(mpconf, fullline, strlen(fullline), in MP_RegisterPlugin()
3519 strlen(fullline)) { in MP_RegisterPlugin()
3539 if (pwrite(mpconf, fullline, strlen(fullline), in MP_RegisterPlugin()
3541 strlen(fullline)) { in MP_RegisterPlugin()