Lines Matching defs:p
48 _nss_initf_rpc(nss_db_params_t *p)
50 p->name = NSS_DBNAM_RPC;
51 p->default_config = NSS_DEFCONF_RPC;
122 const char *p, *numstart, *limit, *namestart;
131 p = instr;
132 limit = p + lenstr;
134 while (p < limit && isspace(*p)) {
135 p++;
137 namestart = p;
138 while (p < limit && !isspace(*p)) {
139 p++; /* Skip over the canonical name */
141 namelen = p - namestart;
149 while (p < limit && isspace(*p)) {
150 p++;
152 if (p >= limit) /* Syntax error -- no RPC number */
154 numstart = p;
156 p++; /* Find the end of the RPC number */
157 } while (p < limit && !isspace(*p));
158 numlen = p - numstart;
169 while (p < limit && isspace(*p)) {
170 p++;
177 if (p >= limit || *p == '#') { /* no aliases, no problem */
190 rpc->r_aliases = _nss_netdb_aliases(p, (int)(lenstr - (p - instr)),