Lines Matching defs:p
175 inetd_prop_t *p;
177 p = find_prop(prop, name, INET_TYPE_INTEGER);
178 return (p->ip_value.iv_int);
189 inetd_prop_t *p;
191 p = find_prop(prop, name, INET_TYPE_COUNT);
192 return (p->ip_value.iv_cnt);
203 inetd_prop_t *p;
205 p = find_prop(prop, name, INET_TYPE_BOOLEAN);
206 return (p->ip_value.iv_boolean);
217 inetd_prop_t *p;
219 p = find_prop(prop, name, INET_TYPE_STRING);
220 return (p->ip_value.iv_string);
231 inetd_prop_t *p;
233 p = find_prop(prop, name, INET_TYPE_STRING_LIST);
234 return ((const char **)p->ip_value.iv_string_list);
245 inetd_prop_t *p;
247 p = find_prop(prop, name, INET_TYPE_INTEGER);
248 p->ip_value.iv_int = value;
249 p->ip_error = IVE_VALID;
260 inetd_prop_t *p;
262 p = find_prop(prop, name, INET_TYPE_COUNT);
263 p->ip_value.iv_cnt = value;
264 p->ip_error = IVE_VALID;
275 inetd_prop_t *p;
277 p = find_prop(prop, name, INET_TYPE_BOOLEAN);
278 p->ip_value.iv_boolean = value;
279 p->ip_error = IVE_VALID;
291 inetd_prop_t *p;
297 p = find_prop(prop, name, INET_TYPE_STRING);
298 if ((p->ip_value.iv_string = strdup(value)) == NULL)
300 p->ip_error = IVE_VALID;
312 inetd_prop_t *p;
314 p = find_prop(prop, name, INET_TYPE_STRING_LIST);
315 p->ip_value.iv_string_list = value;
316 p->ip_error = IVE_VALID;
546 void *p = res->ai_addr;
547 struct sockaddr_storage *newss = p;
1549 inetd_builtin_srcport(in_port_t p)
1551 p = ntohs(p);
1553 if ((p == IPPORT_ECHO) ||
1554 (p == IPPORT_DISCARD) ||
1555 (p == IPPORT_DAYTIME) ||
1556 (p == IPPORT_CHARGEN) ||
1557 (p == IPPORT_TIMESERVER)) {