Lines Matching defs:_to
707 if (to != NULL && isccc_cc_definestring(_ctrl, "_to", to) == NULL) {
731 char *_frm, *_to;
747 * _frm and _to are optional.
751 _to = NULL;
752 (void)isccc_cc_lookupstring(_ctrl, "_to", &_to);
757 result = createmessage(1, _to, _frm, serial, t, 0, &ack, false);
813 char *_frm, *_to, *type = NULL;
829 * _frm and _to are optional.
833 _to = NULL;
834 (void)isccc_cc_lookupstring(_ctrl, "_to", &_to);
839 result = isccc_cc_createmessage(1, _to, _frm, serial, now, expires,
1000 const char *_to;
1020 * _frm and _to are optional.
1030 if (isccc_cc_lookupstring(_ctrl, "_to", &tmp) != ISC_R_SUCCESS) {
1031 _to = "";
1033 _to = tmp;
1034 INSIST(_to != NULL);
1040 if (has_whitespace(_frm) || has_whitespace(_to) ||
1045 len = strlen(_frm) + strlen(_to) + strlen(_ser) + strlen(_tim) + 4;
1050 snprintf(key, len, "%s;%s;%s;%s", _frm, _to, _ser, _tim);