• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/source3/passdb/

Lines Matching defs:my_methods

188 static NTSTATUS ldapsam_get_seq_num(struct pdb_methods *my_methods, time_t *seq_num)
190 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
1533 static void ldapsam_endsampwent(struct pdb_methods *my_methods)
1535 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
1576 static NTSTATUS ldapsam_getsampwnam(struct pdb_methods *my_methods, struct samu *user, const char *sname)
1579 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
1618 my_methods, PDB_CHANGED);
1678 static NTSTATUS ldapsam_getsampwsid(struct pdb_methods *my_methods, struct samu * user, const DOM_SID *sid)
1680 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
1719 my_methods, PDB_CHANGED);
1729 static NTSTATUS ldapsam_modify_entry(struct pdb_methods *my_methods,
1734 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
1906 static NTSTATUS ldapsam_delete_sam_account(struct pdb_methods *my_methods,
1910 (struct ldapsam_privates *)my_methods->private_data;
1978 static NTSTATUS ldapsam_update_sam_account(struct pdb_methods *my_methods, struct samu * newpwd)
1981 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
1989 result = (LDAPMessage *)pdb_get_backend_private_data(newpwd, my_methods);
2001 my_methods, PDB_CHANGED);
2035 ret = ldapsam_modify_entry(my_methods,newpwd,dn,mods,LDAP_MOD_REPLACE, element_is_changed);
2053 pdb_set_backend_private_data(newpwd, NULL, NULL, my_methods,
2070 static NTSTATUS ldapsam_del_groupmem(struct pdb_methods *my_methods,
2082 static NTSTATUS ldapsam_rename_sam_account(struct pdb_methods *my_methods,
2170 static NTSTATUS ldapsam_add_sam_account(struct pdb_methods *my_methods, struct samu * newpwd)
2173 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
2376 ret = ldapsam_modify_entry(my_methods,newpwd,dn,mods,ldap_op, element_is_set_or_changed);
3427 static NTSTATUS ldapsam_setsamgrent(struct pdb_methods *my_methods,
3431 (struct ldapsam_privates *)my_methods->private_data;
3474 static void ldapsam_endsamgrent(struct pdb_methods *my_methods)
3476 ldapsam_endsampwent(my_methods);
3482 static NTSTATUS ldapsam_getsamgrent(struct pdb_methods *my_methods,
3487 (struct ldapsam_privates *)my_methods->private_data;
5262 static NTSTATUS ldapsam_create_user(struct pdb_methods *my_methods,
5266 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
5344 if (!NT_STATUS_IS_OK((ret = ldapsam_new_rid_internal(my_methods, rid)))) {
5477 static NTSTATUS ldapsam_delete_user(struct pdb_methods *my_methods, TALLOC_CTX *tmp_ctx, struct samu *sam_acct)
5479 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
5540 status = ldapsam_enum_group_memberships(my_methods,
5556 ldapsam_del_groupmem(my_methods,
5583 static NTSTATUS ldapsam_create_dom_group(struct pdb_methods *my_methods,
5588 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
5692 if (!NT_STATUS_IS_OK((ret = ldapsam_new_rid_internal(my_methods, rid)))) {
5738 static NTSTATUS ldapsam_delete_dom_group(struct pdb_methods *my_methods, TALLOC_CTX *tmp_ctx, uint32 rid)
5740 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
5832 static NTSTATUS ldapsam_change_groupmem(struct pdb_methods *my_methods,
5838 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;
5994 static NTSTATUS ldapsam_add_groupmem(struct pdb_methods *my_methods,
5999 return ldapsam_change_groupmem(my_methods, tmp_ctx, group_rid, member_rid, LDAP_MOD_ADD);
6001 static NTSTATUS ldapsam_del_groupmem(struct pdb_methods *my_methods,
6006 return ldapsam_change_groupmem(my_methods, tmp_ctx, group_rid, member_rid, LDAP_MOD_DELETE);
6009 static NTSTATUS ldapsam_set_primary_group(struct pdb_methods *my_methods,
6013 struct ldapsam_privates *ldap_state = (struct ldapsam_privates *)my_methods->private_data;