Lines Matching defs:nop
625 Operation nop = *op;
638 nop.o_protocol = LDAP_VERSION3;
639 nop.o_tag = LDAP_REQ_SEARCH;
640 nop.o_time = slap_get_time();
645 nop.o_req_dn = dn;
646 nop.o_req_ndn = dn;
647 nop.o_bd = select_backend(&nop.o_req_ndn, 1 );
648 if (!nop.o_bd) {
651 if (!nop.o_bd->be_search) {
655 nop.o_req_dn = nop.o_bd->be_nsuffix[0];
656 nop.o_req_ndn = nop.o_bd->be_nsuffix[0];
657 nop.o_bd = on->on_info->oi_origdb;
659 nop.o_do_not_cache = 1;
660 nop.o_callback = &cb;
662 nop.ors_scope = c->lud->lud_scope;
663 nop.ors_deref = LDAP_DEREF_NEVER;
664 nop.ors_slimit = SLAP_NO_LIMIT;
665 nop.ors_tlimit = SLAP_NO_LIMIT;
666 nop.ors_limit = NULL;
668 nop.ors_attrsonly = 0;
669 nop.ors_attrs = slap_anlist_no_attrs;
700 nop.ors_filterstr = filterstr;
701 nop.ors_filter = str2filter_x(&nop, filterstr.bv_val);
702 if ( nop.ors_filter == NULL ) {
715 rc = nop.o_bd->be_search( &nop, &nrs );