Lines Matching defs:env
237 struct module_env* env)
252 if(!(*stack->mod[i]->startup)(env, i)) {
263 struct module_env* env)
266 env->need_to_validate = 0; /* set by module init below */
292 if(!(*stack->mod[i]->init)(env, i)) {
302 modstack_call_deinit(struct module_stack* stack, struct module_env* env)
307 (*stack->mod[i]->deinit)(env, i);
312 modstack_call_destartup(struct module_stack* stack, struct module_env* env)
319 (*stack->mod[i]->destartup)(env, i);
335 mod_get_mem(struct module_env* env, const char* name)
337 int m = modstack_find(&env->mesh->mods, name);
339 fptr_ok(fptr_whitelist_mod_get_mem(env->mesh->
341 return (*env->mesh->mods.mod[m]->get_mem)(env, m);