Lines Matching defs:rkp
341 set_value(struct rcfile *rcp, struct rcsection *rsp, struct rckey *rkp,
353 if (strcmp(rkp->rk_name, "minauth") == 0) {
354 now = eval_minauth(rkp->rk_value);
362 rkp->rk_name, ptr,
372 rkp->rk_name, ptr, rsp->rs_name, from);
374 rkp->rk_value = strdup(ptr);
387 struct rckey *rkp = NULL;
469 rkp = rc_sect_addkey(rsp, buf, NULL);
485 set_value(rcp, rsp, rkp, buf);
487 rkp = NULL;
491 set_value(rcp, rsp, rkp, buf);
500 struct rckey *rkp;
511 rkp = rc_sect_findkey(rsp, key);
512 if (!rkp) {
516 *dest = rkp->rk_value;
548 struct rckey *rkp;
558 rkp = rc_sect_findkey(rsp, key);
559 if (!rkp) {
564 *value = strtol(rkp->rk_value, NULL, 0);
568 rkp->rk_value, key, section);
584 struct rckey *rkp;
595 rkp = rc_sect_findkey(rsp, key);
596 if (!rkp) {
600 p = rkp->rk_value;
631 struct rckey *rkp = NULL;
638 SLIST_FOREACH(rkp, &rsp->rs_keys, rk_next) {
640 rkp->rk_name, rkp->rk_value);