Lines Matching refs:newexec
311 execattr_t *newexec;
316 if ((newexec = malloc(sizeof (execattr_t))) == NULL) {
320 newexec->name = _do_unescape(es->name);
321 newexec->policy = _do_unescape(es->policy);
322 newexec->type = _do_unescape(es->type);
323 newexec->res1 = _do_unescape(es->res1);
324 newexec->res2 = _do_unescape(es->res2);
325 newexec->id = _do_unescape(es->id);
326 newexec->attr = _str2kva(es->attr, KV_ASSIGN, KV_DELIMITER);
328 newexec->next = execstr2attr((execstr_t *)(es->next));
330 newexec->next = NULL;
332 return (newexec);