Searched refs:fullline (Results 1 – 5 of 5) sorted by relevance
/titanic_41/usr/src/lib/mpapi/libmpapi/common/ |
H A D | mpapi.c | 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() [all …]
|
/titanic_41/usr/src/cmd/sendmail/aux/ |
H A D | mail.local.c | 528 bool fullline = TRUE; /* current line is terminated */ local 578 prevfl = fullline; /* preserve state of previous line */ 594 fullline = FALSE; 606 fullline = TRUE; 615 fullline = TRUE; 622 fullline = TRUE;
|
/titanic_41/usr/src/lib/libima/common/ |
H A D | ima-lib.c | 391 char fullline[512]; /* Full line read in from IMA.conf */ in InitLibrary() local 433 (fgets(fullline, sizeof (fullline), imaconf))) { in InitLibrary() 434 if ((fullline[0] != '#') && (fullline[0] != '\n')) { in InitLibrary() 436 if ((charPtr = (char *)strchr(fullline, '\n')) != NULL) in InitLibrary() 440 if ((charPtr = (char *)strchr(fullline, '\t')) == NULL) in InitLibrary() 441 charPtr = (char *)strchr(fullline, ' '); in InitLibrary() 457 strcpy(pluginname, fullline); in InitLibrary() 1024 char fullline[512]; /* Full line read in from IMA.conf */ in IMA_GetNodeProperties() local 1048 GetComputerName((char *)fullline, in IMA_GetNodeProperties() 1050 sprintf(nodename, DEFAULT_NODE_NAME_FORMAT, fullline); in IMA_GetNodeProperties() [all …]
|
/titanic_41/usr/src/lib/hbaapi/common/ |
H A D | HBAAPILIB.c | 667 char fullline[512]; /* line read from HBA.conf */ in HBA_LoadLibrary() local 689 while ((hbaconf != NULL) && (fgets(fullline, sizeof(fullline), hbaconf))) { in HBA_LoadLibrary() 691 if ((fullline[0] == '#') || (fullline[0] == '\n')) { in HBA_LoadLibrary() 696 if((libraryname = strtok(fullline, " \t\n")) != NULL) { in HBA_LoadLibrary()
|
/titanic_41/usr/src/lib/smhba/common/ |
H A D | SMHBAAPILIB.c | 872 char fullline[512]; /* line read from HBA.conf */ in HBA_LoadLibrary() local 898 (fgets(fullline, sizeof (fullline), hbaconf))) { in HBA_LoadLibrary() 900 if ((fullline[0] == '#') || (fullline[0] == '\n')) { in HBA_LoadLibrary() 905 if ((libraryname = strtok(fullline, " \t\n")) != NULL) { in HBA_LoadLibrary()
|