newdn             717 source3/lib/ldb/common/ldb.c 			const struct ldb_dn *newdn,
newdn             734 source3/lib/ldb/common/ldb.c 	req->op.rename.newdn = newdn;
newdn             931 source3/lib/ldb/common/ldb.c int ldb_rename(struct ldb_context *ldb, const struct ldb_dn *olddn, const struct ldb_dn *newdn)
newdn             938 source3/lib/ldb/common/ldb.c 					newdn,
newdn             734 source3/lib/ldb/common/ldb_dn.c 	struct ldb_dn *newdn;
newdn             740 source3/lib/ldb/common/ldb_dn.c 	newdn = ldb_dn_new(mem_ctx);
newdn             741 source3/lib/ldb/common/ldb_dn.c 	LDB_DN_NULL_FAILED(newdn);
newdn             743 source3/lib/ldb/common/ldb_dn.c 	newdn->comp_num = num_el;
newdn             744 source3/lib/ldb/common/ldb_dn.c 	n = newdn->comp_num - 1;
newdn             745 source3/lib/ldb/common/ldb_dn.c 	newdn->components = talloc_array(newdn, struct ldb_dn_component, newdn->comp_num);
newdn             746 source3/lib/ldb/common/ldb_dn.c 	if (newdn->components == NULL) goto failed;
newdn             748 source3/lib/ldb/common/ldb_dn.c 	if (dn->comp_num == 0) return newdn;
newdn             751 source3/lib/ldb/common/ldb_dn.c 	for (i = 0; i < newdn->comp_num; i++) {
newdn             752 source3/lib/ldb/common/ldb_dn.c 		newdn->components[n - i] = ldb_dn_copy_component(newdn->components,
newdn             755 source3/lib/ldb/common/ldb_dn.c 			return newdn;
newdn             759 source3/lib/ldb/common/ldb_dn.c 	return newdn;
newdn             762 source3/lib/ldb/common/ldb_dn.c 	talloc_free(newdn);
newdn             809 source3/lib/ldb/common/ldb_dn.c 	struct ldb_dn *newdn;
newdn             814 source3/lib/ldb/common/ldb_dn.c 		newdn = ldb_dn_copy_partial(mem_ctx, base, base->comp_num + 1);
newdn             815 source3/lib/ldb/common/ldb_dn.c 		LDB_DN_NULL_FAILED(newdn);
newdn             817 source3/lib/ldb/common/ldb_dn.c 		newdn = ldb_dn_new(mem_ctx);
newdn             818 source3/lib/ldb/common/ldb_dn.c 		LDB_DN_NULL_FAILED(newdn);
newdn             820 source3/lib/ldb/common/ldb_dn.c 		newdn->comp_num = 1;
newdn             821 source3/lib/ldb/common/ldb_dn.c 		newdn->components = talloc_array(newdn, struct ldb_dn_component, newdn->comp_num);
newdn             822 source3/lib/ldb/common/ldb_dn.c 		LDB_DN_NULL_FAILED(newdn->components);
newdn             825 source3/lib/ldb/common/ldb_dn.c 	newdn->components[0].name = talloc_strdup(newdn->components, attr);
newdn             826 source3/lib/ldb/common/ldb_dn.c 	LDB_DN_NULL_FAILED(newdn->components[0].name);
newdn             828 source3/lib/ldb/common/ldb_dn.c 	newdn->components[0].value.data = (uint8_t *)talloc_strdup(newdn->components, value);
newdn             829 source3/lib/ldb/common/ldb_dn.c 	LDB_DN_NULL_FAILED(newdn->components[0].value.data);
newdn             830 source3/lib/ldb/common/ldb_dn.c 	newdn->components[0].value.length = strlen((char *)newdn->components[0].value.data);
newdn             832 source3/lib/ldb/common/ldb_dn.c 	return newdn;
newdn             835 source3/lib/ldb/common/ldb_dn.c 	talloc_free(newdn);
newdn             843 source3/lib/ldb/common/ldb_dn.c 	struct ldb_dn *newdn;
newdn             850 source3/lib/ldb/common/ldb_dn.c 		newdn = ldb_dn_new(mem_ctx);
newdn             851 source3/lib/ldb/common/ldb_dn.c 		LDB_DN_NULL_FAILED(newdn);
newdn             853 source3/lib/ldb/common/ldb_dn.c 		newdn->comp_num = dn1->comp_num;
newdn             854 source3/lib/ldb/common/ldb_dn.c 		newdn->components = talloc_array(newdn, struct ldb_dn_component, newdn->comp_num);
newdn             855 source3/lib/ldb/common/ldb_dn.c 		LDB_DN_NULL_FAILED(newdn->components);
newdn             859 source3/lib/ldb/common/ldb_dn.c 		newdn = ldb_dn_copy_partial(mem_ctx, dn2, comp_num);
newdn             860 source3/lib/ldb/common/ldb_dn.c 		LDB_DN_NULL_FAILED(newdn);
newdn             864 source3/lib/ldb/common/ldb_dn.c 		return newdn;
newdn             868 source3/lib/ldb/common/ldb_dn.c 		newdn->components[i] = ldb_dn_copy_component(newdn->components,
newdn             870 source3/lib/ldb/common/ldb_dn.c 		if (newdn->components[i].value.data == NULL) {
newdn             875 source3/lib/ldb/common/ldb_dn.c 	return newdn;
newdn             878 source3/lib/ldb/common/ldb_dn.c 	talloc_free(newdn);
newdn             726 source3/lib/ldb/include/ldb.h 	const struct ldb_dn *newdn;
newdn             968 source3/lib/ldb/include/ldb.h 			const struct ldb_dn *newdn,
newdn            1049 source3/lib/ldb/include/ldb.h int ldb_rename(struct ldb_context *ldb, const struct ldb_dn *olddn, const struct ldb_dn *newdn);
newdn             625 source3/lib/ldb/ldb_ildap/ldb_ildap.c 	if (ldb_dn_is_special(req->op.rename.olddn) || ldb_dn_is_special(req->op.rename.newdn)) {
newdn             643 source3/lib/ldb/ldb_ildap/ldb_ildap.c 				ldb_dn_get_rdn_name(req->op.rename.newdn),
newdn             644 source3/lib/ldb/ldb_ildap/ldb_ildap.c 				ldb_dn_escape_value(msg, *ldb_dn_get_rdn_val(req->op.rename.newdn)));
newdn             652 source3/lib/ldb/ldb_ildap/ldb_ildap.c 				 ldb_dn_get_parent(msg, req->op.rename.newdn));
newdn             452 source3/lib/ldb/ldb_ldap/ldb_ldap.c 	if (ldb_dn_is_special(req->op.rename.olddn) || ldb_dn_is_special(req->op.rename.newdn)) {
newdn             469 source3/lib/ldb/ldb_ldap/ldb_ldap.c 				 ldb_dn_get_rdn_name(req->op.rename.newdn),
newdn             470 source3/lib/ldb/ldb_ldap/ldb_ldap.c 				 ldb_dn_escape_value(lldb, *(ldb_dn_get_rdn_val(req->op.rename.newdn))));
newdn             475 source3/lib/ldb/ldb_ldap/ldb_ldap.c 	parentdn = ldb_dn_linearize(lldb_ac, ldb_dn_get_parent(lldb_ac, req->op.rename.newdn));
newdn            1430 source3/lib/ldb/ldb_sqlite3/ldb_sqlite3.c 	new_cdn = ldb_dn_linearize(lsql_ac, ldb_dn_casefold(module->ldb, lsql_ac, req->op.rename.newdn));
newdn            1431 source3/lib/ldb/ldb_sqlite3/ldb_sqlite3.c 	new_dn = ldb_dn_linearize(lsql_ac, req->op.rename.newdn);
newdn             850 source3/lib/ldb/ldb_tdb/ldb_tdb.c 	msg->dn = ldb_dn_copy(msg, req->op.rename.newdn);
newdn             864 source3/lib/ldb/ldb_tdb/ldb_tdb.c 		ltdb_delete_internal(module, req->op.rename.newdn);
newdn             230 source3/lib/ldb/modules/ldb_map.c 		request->op.rename.newdn = ldb_dn_rebase_remote(request, data, request->op.rename.newdn);
newdn             460 source3/lib/ldb/modules/ldb_map.c 	struct ldb_dn *newdn;
newdn             471 source3/lib/ldb/modules/ldb_map.c 	newdn = ldb_dn_copy(mem_ctx, dn);
newdn             472 source3/lib/ldb/modules/ldb_map.c 	if (newdn == NULL) {
newdn             478 source3/lib/ldb/modules/ldb_map.c 	for (i = 0; i < ldb_dn_get_comp_num(newdn); i++) {
newdn             506 source3/lib/ldb/modules/ldb_map.c 			name = map_attr_map_local(newdn, map, ldb_dn_get_component_name(dn, i));
newdn             509 source3/lib/ldb/modules/ldb_map.c 			value = ldb_val_map_local(module, newdn, map, ldb_dn_get_component_val(dn, i));
newdn             512 source3/lib/ldb/modules/ldb_map.c 			ret = ldb_dn_set_component(newdn, i, name, value);
newdn             521 source3/lib/ldb/modules/ldb_map.c 	return newdn;
newdn             524 source3/lib/ldb/modules/ldb_map.c 	talloc_free(newdn);
newdn             532 source3/lib/ldb/modules/ldb_map.c 	struct ldb_dn *newdn;
newdn             543 source3/lib/ldb/modules/ldb_map.c 	newdn = ldb_dn_copy(mem_ctx, dn);
newdn             544 source3/lib/ldb/modules/ldb_map.c 	if (newdn == NULL) {
newdn             550 source3/lib/ldb/modules/ldb_map.c 	for (i = 0; i < ldb_dn_get_comp_num(newdn); i++) {
newdn             578 source3/lib/ldb/modules/ldb_map.c 			name = map_attr_map_remote(newdn, map, ldb_dn_get_component_name(dn, i));
newdn             581 source3/lib/ldb/modules/ldb_map.c 			value = ldb_val_map_remote(module, newdn, map, ldb_dn_get_component_val(dn, i));
newdn             584 source3/lib/ldb/modules/ldb_map.c 			ret = ldb_dn_set_component(newdn, i, name, value);
newdn             593 source3/lib/ldb/modules/ldb_map.c 	return newdn;
newdn             596 source3/lib/ldb/modules/ldb_map.c 	talloc_free(newdn);
newdn             621 source3/lib/ldb/modules/ldb_map.c 	struct ldb_dn *dn, *newdn;
newdn             625 source3/lib/ldb/modules/ldb_map.c 	newdn = ldb_dn_map_local(module, mem_ctx, dn);
newdn             629 source3/lib/ldb/modules/ldb_map.c 	newval.data = (uint8_t *)ldb_dn_linearize(mem_ctx, newdn);
newdn             633 source3/lib/ldb/modules/ldb_map.c 	talloc_free(newdn);
newdn             641 source3/lib/ldb/modules/ldb_map.c 	struct ldb_dn *dn, *newdn;
newdn             645 source3/lib/ldb/modules/ldb_map.c 	newdn = ldb_dn_map_remote(module, mem_ctx, dn);
newdn             649 source3/lib/ldb/modules/ldb_map.c 	newval.data = (uint8_t *)ldb_dn_linearize(mem_ctx, newdn);
newdn             653 source3/lib/ldb/modules/ldb_map.c 	talloc_free(newdn);
newdn             915 source3/lib/ldb/modules/ldb_map.c struct ldb_request *map_build_fixup_req(struct map_context *ac, const struct ldb_dn *olddn, const struct ldb_dn *newdn)
newdn             937 source3/lib/ldb/modules/ldb_map.c 	dn = ldb_dn_linearize(msg, newdn);
newdn             650 source3/lib/ldb/modules/ldb_map_inbound.c 	    (!ldb_dn_check_local(module, req->op.rename.newdn))) {
newdn             656 source3/lib/ldb/modules/ldb_map_inbound.c 	    !ldb_dn_check_local(module, req->op.rename.newdn)) {
newdn             675 source3/lib/ldb/modules/ldb_map_inbound.c 	ac->local_req->op.rename.newdn = req->op.rename.newdn;
newdn             688 source3/lib/ldb/modules/ldb_map_inbound.c 	ac->remote_req->op.rename.newdn = ldb_dn_map_local(module, ac->remote_req, req->op.rename.newdn);
newdn             701 source3/lib/ldb/modules/ldb_map_inbound.c 	ac->down_req = map_build_fixup_req(ac, req->op.rename.newdn, ac->remote_req->op.rename.newdn);
newdn              91 source3/lib/ldb/modules/ldb_map_private.h struct ldb_request *map_build_fixup_req(struct map_context *ac, const struct ldb_dn *olddn, const struct ldb_dn *newdn);
newdn             155 source3/lib/ldb/modules/rdn_name.c 	if (ldb_dn_is_special(req->op.rename.newdn)) {
newdn             209 source3/lib/ldb/modules/rdn_name.c 	msg->dn = ldb_dn_copy(msg, ac->orig_req->op.rename.newdn);
newdn             214 source3/lib/ldb/modules/rdn_name.c 	rdn_name = ldb_dn_get_rdn_name(ac->orig_req->op.rename.newdn);
newdn             219 source3/lib/ldb/modules/rdn_name.c 	rdn_val = ldb_val_dup(msg, ldb_dn_get_rdn_val(ac->orig_req->op.rename.newdn));
newdn             222 source4/dsdb/samdb/ldb_modules/extended_dn_in.c 						   ac->req->op.rename.newdn,
newdn             956 source4/dsdb/samdb/ldb_modules/linked_attributes.c 				   ac->req->op.rename.newdn, LDB_SCOPE_BASE,
newdn            1083 source4/dsdb/samdb/ldb_modules/linked_attributes.c 					   ac->req->op.rename.newdn,
newdn             362 source4/dsdb/samdb/ldb_modules/objectclass.c 		  struct ldb_dn *newdn, struct ldb_dn *parent_dn, 
newdn             371 source4/dsdb/samdb/ldb_modules/objectclass.c 					 ldb_dn_get_rdn_name(newdn));
newdn             383 source4/dsdb/samdb/ldb_modules/objectclass.c 				    *ldb_dn_get_rdn_val(newdn));
newdn             988 source4/dsdb/samdb/ldb_modules/objectclass.c 	if (ldb_dn_is_special(req->op.rename.newdn)) { /* do not manipulate our control entries */
newdn             993 source4/dsdb/samdb/ldb_modules/objectclass.c 	if ((ldb_dn_compare_base(req->op.rename.olddn, req->op.rename.newdn) == 0) 
newdn             994 source4/dsdb/samdb/ldb_modules/objectclass.c 	    && (ldb_dn_compare(req->op.rename.olddn, req->op.rename.newdn) != 0)) {
newdn            1005 source4/dsdb/samdb/ldb_modules/objectclass.c 	parent_dn = ldb_dn_get_parent(ac, req->op.rename.newdn);
newdn            1037 source4/dsdb/samdb/ldb_modules/objectclass.c 				       ldb_dn_get_linearized(ac->req->op.rename.newdn));
newdn            1044 source4/dsdb/samdb/ldb_modules/objectclass.c 		     ac->req->op.rename.newdn,
newdn             285 source4/dsdb/samdb/ldb_modules/partition.c 					ac->req->op.rename.newdn,
newdn             600 source4/dsdb/samdb/ldb_modules/partition.c 	backend2 = find_partition(data, req->op.rename.newdn);
newdn             611 source4/dsdb/samdb/ldb_modules/partition.c 				       ldb_dn_get_linearized(req->op.rename.newdn),
newdn              46 source4/dsdb/samdb/ldb_modules/proxy.c 	struct ldb_dn *newdn;
newdn              70 source4/dsdb/samdb/ldb_modules/proxy.c 	const char *olddn, *newdn, *url, *username, *password, *oldstr, *newstr;
newdn              91 source4/dsdb/samdb/ldb_modules/proxy.c 	newdn    = ldb_msg_find_attr_as_string(res->msgs[0], "newdn", NULL);
newdn              97 source4/dsdb/samdb/ldb_modules/proxy.c 	if (url == NULL || olddn == NULL || newdn == NULL || username == NULL || password == NULL) {
newdn             108 source4/dsdb/samdb/ldb_modules/proxy.c 	proxy->newdn = ldb_dn_new(proxy, ldb, newdn);
newdn             109 source4/dsdb/samdb/ldb_modules/proxy.c 	if (proxy->newdn == NULL) {
newdn             110 source4/dsdb/samdb/ldb_modules/proxy.c 		ldb_debug(ldb, LDB_DEBUG_FATAL, "Failed to explode newdn '%s'\n", newdn);
newdn             159 source4/dsdb/samdb/ldb_modules/proxy.c 	talloc_free(proxy->newdn);
newdn             237 source4/dsdb/samdb/ldb_modules/proxy.c 		ldb_dn_add_base(msg->dn, proxy->newdn);
newdn             329 source4/dsdb/samdb/ldb_modules/proxy.c 	if (ldb_dn_compare_base(proxy->newdn, req->op.search.base) != 0) {
newdn             351 source4/dsdb/samdb/ldb_modules/proxy.c 	ldb_dn_remove_base_components(base, ldb_dn_get_comp_num(proxy->newdn));
newdn              36 source4/dsdb/samdb/ldb_modules/subtree_rename.c 	struct ldb_dn *newdn;
newdn             124 source4/dsdb/samdb/ldb_modules/subtree_rename.c 				   ac->current->newdn,
newdn             175 source4/dsdb/samdb/ldb_modules/subtree_rename.c 		store->newdn = ldb_dn_copy(store, store->olddn);
newdn             177 source4/dsdb/samdb/ldb_modules/subtree_rename.c 		if ( ! ldb_dn_remove_base_components(store->newdn,
newdn             183 source4/dsdb/samdb/ldb_modules/subtree_rename.c 		if ( ! ldb_dn_add_base(store->newdn, ac->list->newdn)) {
newdn             246 source4/dsdb/samdb/ldb_modules/subtree_rename.c 	ac->current->newdn = req->op.rename.newdn;
newdn             366 source4/dsdb/samdb/ldb_modules/update_keytab.c 	ac->dn = req->op.rename.newdn;
newdn             370 source4/dsdb/samdb/ldb_modules/update_keytab.c 				req->op.rename.newdn,
newdn             588 source4/ldap_server/ldap_backend.c 	struct ldb_dn *olddn, *newdn=NULL, *newrdn;
newdn             641 source4/ldap_server/ldap_backend.c 	newdn = parentdn;
newdn             648 source4/ldap_server/ldap_backend.c 		ldb_ret = ldb_rename(samdb, olddn, newdn);
newdn             913 source4/lib/ldb/common/ldb.c 			struct ldb_dn *newdn,
newdn             931 source4/lib/ldb/common/ldb.c 	req->op.rename.newdn = newdn;
newdn            1215 source4/lib/ldb/common/ldb.c 		struct ldb_dn *olddn, struct ldb_dn *newdn)
newdn            1222 source4/lib/ldb/common/ldb.c 					newdn,
newdn             755 source4/lib/ldb/include/ldb.h 	struct ldb_dn *newdn;
newdn            1056 source4/lib/ldb/include/ldb.h 			struct ldb_dn *newdn,
newdn            1160 source4/lib/ldb/include/ldb.h int ldb_rename(struct ldb_context *ldb, struct ldb_dn *olddn, struct ldb_dn *newdn);
newdn             609 source4/lib/ldb/ldb_ildap/ldb_ildap.c 				ldb_dn_get_rdn_name(req->op.rename.newdn),
newdn             610 source4/lib/ldb/ldb_ildap/ldb_ildap.c 				ldb_dn_escape_value(msg, *ldb_dn_get_rdn_val(req->op.rename.newdn)));
newdn             617 source4/lib/ldb/ldb_ildap/ldb_ildap.c 		ldb_dn_alloc_linearized(msg, ldb_dn_get_parent(msg, req->op.rename.newdn));
newdn             404 source4/lib/ldb/ldb_ldap/ldb_ldap.c 				 ldb_dn_get_rdn_name(req->op.rename.newdn),
newdn             405 source4/lib/ldb/ldb_ldap/ldb_ldap.c 				 ldb_dn_escape_value(lldb, *(ldb_dn_get_rdn_val(req->op.rename.newdn))));
newdn             410 source4/lib/ldb/ldb_ldap/ldb_ldap.c 	parentdn = ldb_dn_alloc_linearized(lldb_ac, ldb_dn_get_parent(lldb_ac, req->op.rename.newdn));
newdn             240 source4/lib/ldb/ldb_map/ldb_map.c 		request->op.rename.newdn = ldb_dn_rebase_remote(request, data, request->op.rename.newdn);
newdn             471 source4/lib/ldb/ldb_map/ldb_map.c 	struct ldb_dn *newdn;
newdn             484 source4/lib/ldb/ldb_map/ldb_map.c 	newdn = ldb_dn_copy(mem_ctx, dn);
newdn             485 source4/lib/ldb/ldb_map/ldb_map.c 	if (newdn == NULL) {
newdn             491 source4/lib/ldb/ldb_map/ldb_map.c 	for (i = 0; i < ldb_dn_get_comp_num(newdn); i++) {
newdn             519 source4/lib/ldb/ldb_map/ldb_map.c 			name = map_attr_map_local(newdn, map, ldb_dn_get_component_name(dn, i));
newdn             522 source4/lib/ldb/ldb_map/ldb_map.c 			value = ldb_val_map_local(module, newdn, map, ldb_dn_get_component_val(dn, i));
newdn             525 source4/lib/ldb/ldb_map/ldb_map.c 			ret = ldb_dn_set_component(newdn, i, name, value);
newdn             534 source4/lib/ldb/ldb_map/ldb_map.c 	return newdn;
newdn             537 source4/lib/ldb/ldb_map/ldb_map.c 	talloc_free(newdn);
newdn             546 source4/lib/ldb/ldb_map/ldb_map.c 	struct ldb_dn *newdn;
newdn             559 source4/lib/ldb/ldb_map/ldb_map.c 	newdn = ldb_dn_copy(mem_ctx, dn);
newdn             560 source4/lib/ldb/ldb_map/ldb_map.c 	if (newdn == NULL) {
newdn             566 source4/lib/ldb/ldb_map/ldb_map.c 	for (i = 0; i < ldb_dn_get_comp_num(newdn); i++) {
newdn             594 source4/lib/ldb/ldb_map/ldb_map.c 			name = map_attr_map_remote(newdn, map, ldb_dn_get_component_name(dn, i));
newdn             597 source4/lib/ldb/ldb_map/ldb_map.c 			value = ldb_val_map_remote(module, newdn, map, ldb_dn_get_component_val(dn, i));
newdn             600 source4/lib/ldb/ldb_map/ldb_map.c 			ret = ldb_dn_set_component(newdn, i, name, value);
newdn             609 source4/lib/ldb/ldb_map/ldb_map.c 	return newdn;
newdn             612 source4/lib/ldb/ldb_map/ldb_map.c 	talloc_free(newdn);
newdn             638 source4/lib/ldb/ldb_map/ldb_map.c 	struct ldb_dn *dn, *newdn;
newdn             650 source4/lib/ldb/ldb_map/ldb_map.c 	newdn = ldb_dn_map_local(module, mem_ctx, dn);
newdn             654 source4/lib/ldb/ldb_map/ldb_map.c 	newval.data = (uint8_t *)ldb_dn_alloc_linearized(mem_ctx, newdn);
newdn             658 source4/lib/ldb/ldb_map/ldb_map.c 	talloc_free(newdn);
newdn             667 source4/lib/ldb/ldb_map/ldb_map.c 	struct ldb_dn *dn, *newdn;
newdn             679 source4/lib/ldb/ldb_map/ldb_map.c 	newdn = ldb_dn_map_remote(module, mem_ctx, dn);
newdn             683 source4/lib/ldb/ldb_map/ldb_map.c 	newval.data = (uint8_t *)ldb_dn_alloc_linearized(mem_ctx, newdn);
newdn             687 source4/lib/ldb/ldb_map/ldb_map.c 	talloc_free(newdn);
newdn             904 source4/lib/ldb/ldb_map/ldb_map.c 					struct ldb_dn *newdn,
newdn             925 source4/lib/ldb/ldb_map/ldb_map.c 	dn = ldb_dn_alloc_linearized(msg, newdn);
newdn             701 source4/lib/ldb/ldb_map/ldb_map_inbound.c 	    (!ldb_dn_check_local(module, req->op.rename.newdn))) {
newdn             707 source4/lib/ldb/ldb_map/ldb_map_inbound.c 	    !ldb_dn_check_local(module, req->op.rename.newdn)) {
newdn             720 source4/lib/ldb/ldb_map/ldb_map_inbound.c 				   ldb_dn_map_local(module, ac, req->op.rename.newdn),
newdn             762 source4/lib/ldb/ldb_map/ldb_map_inbound.c 				   ac->req->op.rename.newdn,
newdn             817 source4/lib/ldb/ldb_map/ldb_map_inbound.c 					ac->req->op.rename.newdn,
newdn             818 source4/lib/ldb/ldb_map/ldb_map_inbound.c 					ac->remote_req->op.rename.newdn,
newdn              78 source4/lib/ldb/ldb_map/ldb_map_private.h 					struct ldb_dn *newdn,
newdn            1317 source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c 	new_cdn = ldb_dn_alloc_casefold(ctx, req->op.rename.newdn);
newdn            1318 source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c 	new_dn = ldb_dn_alloc_linearized(ctx, req->op.rename.newdn);
newdn             803 source4/lib/ldb/ldb_tdb/ldb_tdb.c 	msg->dn = ldb_dn_copy(msg, req->op.rename.newdn);
newdn             808 source4/lib/ldb/ldb_tdb/ldb_tdb.c 	if (ldb_dn_compare(req->op.rename.olddn, req->op.rename.newdn) == 0) {
newdn             836 source4/lib/ldb/ldb_tdb/ldb_tdb.c 			ltdb_delete_internal(module, req->op.rename.newdn);
newdn             242 source4/lib/ldb/modules/rdn_name.c 	msg->dn = ldb_dn_copy(msg, ac->req->op.rename.newdn);
newdn             246 source4/lib/ldb/modules/rdn_name.c 	rdn_name = ldb_dn_get_rdn_name(ac->req->op.rename.newdn);
newdn             251 source4/lib/ldb/modules/rdn_name.c 	rdn_val = ldb_val_dup(msg, ldb_dn_get_rdn_val(ac->req->op.rename.newdn));
newdn             294 source4/lib/ldb/modules/rdn_name.c 	if (ldb_dn_is_special(req->op.rename.newdn)) {
newdn             310 source4/lib/ldb/modules/rdn_name.c 				   req->op.rename.newdn,
newdn            1222 source4/lib/ldb/pyldb.c 	req->op.rename.newdn = PyLdbDn_AsDn(py_dn2);
newdn            1864 source4/lib/ldb/pyldb.c 	py_newdn = PyLdbDn_FromDn(req->op.rename.newdn);
newdn             493 source4/param/share_ldb.c 		struct ldb_dn *olddn, *newdn;
newdn             498 source4/param/share_ldb.c 		newdn = ldb_dn_new_fmt(tmp_ctx, ldb, "CN=%s,CN=SHARES", newname);
newdn             499 source4/param/share_ldb.c 		if (!newdn) {
newdn             505 source4/param/share_ldb.c 		err = ldb_rename(ldb, olddn, newdn);
newdn             517 source4/param/share_ldb.c 		msg->dn = newdn;