Lines Matching refs:es
309 execstr2attr(execstr_t *es) in execstr2attr() argument
313 if (es == NULL) { in execstr2attr()
320 newexec->name = _do_unescape(es->name); in execstr2attr()
321 newexec->policy = _do_unescape(es->policy); in execstr2attr()
322 newexec->type = _do_unescape(es->type); in execstr2attr()
323 newexec->res1 = _do_unescape(es->res1); in execstr2attr()
324 newexec->res2 = _do_unescape(es->res2); in execstr2attr()
325 newexec->id = _do_unescape(es->id); in execstr2attr()
326 newexec->attr = _str2kva(es->attr, KV_ASSIGN, KV_DELIMITER); in execstr2attr()
327 if (es->next) { in execstr2attr()
328 newexec->next = execstr2attr((execstr_t *)(es->next)); in execstr2attr()