Lines Matching refs:_priv_exec
175 _priv_execattr _priv_exec; in _getexecprof() local
190 _priv_exec.name = name; in _getexecprof()
191 _priv_exec.type = type; in _getexecprof()
192 _priv_exec.id = id; in _getexecprof()
199 _priv_exec.policy = IS_SEARCH_ALL(search_flag) ? NULL : policy_buf; in _getexecprof()
200 _priv_exec.search_flag = search_flag; in _getexecprof()
201 _priv_exec.head_exec = NULL; in _getexecprof()
202 _priv_exec.prev_exec = NULL; in _getexecprof()
204 arg.key.attrp = &(_priv_exec); in _getexecprof()
287 _priv_execattr *_priv_exec = (_priv_execattr *)(argp->key.attrp); in _doexeclist() local
290 if (_priv_exec->head_exec == NULL) { in _doexeclist()
291 if (_priv_exec->head_exec = _dup_execstr(exec)) in _doexeclist()
292 _priv_exec->prev_exec = _priv_exec->head_exec; in _doexeclist()
296 if (_priv_exec->prev_exec->next = _dup_execstr(exec)) in _doexeclist()
297 _priv_exec->prev_exec = _priv_exec->prev_exec->next; in _doexeclist()
389 _priv_execattr *_priv_exec = (_priv_execattr *)(argp->key.attrp); in _exec_cleanup() local
392 if (_priv_exec->head_exec != NULL) { in _exec_cleanup()
393 argp->buf.result = _priv_exec->head_exec; in _exec_cleanup()
397 if (_priv_exec->head_exec != NULL) in _exec_cleanup()
398 _free_execstr(_priv_exec->head_exec); in _exec_cleanup()