Lines Matching defs:lpp
230 * lpp (input) - pointer to the array of strings
236 prl(char **lpp)
238 if (!lpp) {
243 while (*lpp)
244 NDMP_LOG(LOG_DEBUG, "\"%s\"", *lpp++);
255 * lpp (input) - pointer to the array of strings
263 inlist(char **lpp, char *ent)
265 if (!lpp || !ent) {
270 while (*lpp) {
275 char *pattern = *lpp;
285 lpp++;
301 * lpp (input) - pointer to the array of strings
310 inexl(char **lpp, char *ent)
312 if (!lpp || !ent)
315 return (inlist(lpp, ent));
327 * lpp (input) - pointer to the array of strings
335 ininc(char **lpp, char *ent)
337 if (!lpp || !ent || !*ent)
340 return (inlist(lpp, ent));
366 char **lpp, **save;
374 save = lpp = ndmp_malloc(sizeof (char *) * (n + 1));
375 if (!lpp) {
390 *(lpp+i) = " ";
394 lpp += start; /* Next selection entry will be in lpp[start] */
418 *lpp++ = ep->nm3_opath;
422 *lpp = NULL;