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