Lines Matching defs:module
18 struct userdb_module module;
28 struct static_userdb_module *module =
32 if (userdb_template_export(module->tmpl, auth_request, &error) < 0) {
80 struct static_userdb_module *module =
84 if (!auth_request->successful && !module->allow_all_users) {
119 struct static_userdb_module *module;
122 module = p_new(pool, struct static_userdb_module, 1);
123 module->tmpl = userdb_template_build(pool, "static", args);
125 if (userdb_template_remove(module->tmpl, "allow_all_users", &value)) {
126 module->allow_all_users = value == NULL ||
129 return &module->module;