Lines Matching refs:p
89 char c = '\0', *p = NULL;
97 for (p = buf;;) {
99 while (*p && isspace(_UC(*p)))
100 p++;
101 if (*p == '\0')
115 quoted = *p == '\'' || *p == '"';
117 c = *p++;
118 arg->argv[arg->argc++] = p;
122 while (*p && *p != c)
123 p++;
124 *p++ = '\0';
126 while (*p && !isspace(_UC(*p)))
127 p++;
128 if (*p)
129 *p++ = '\0';
449 char *p;
454 if ((p = app_conf_try_string(conf, NULL, "oid_section")) == NULL)
456 if ((sktmp = NCONF_get_section(conf, p)) == NULL) {
457 BIO_printf(bio_err, "problem loading oid section %s\n", p);
1755 char *p = app_conf_try_string(dbattr_conf, NULL, "unique_subject");
1757 if (p != NULL)
1758 retdb->attributes.unique_subject = parse_yesno(p, 1);