Searched defs:deref (Results 1 - 7 of 7) sorted by relevance

/osnet-11/usr/src/cmd/ldap/common/
H A Dldapdelete.c71 int rc, deref, optind; local
104 deref = LDAP_DEREF_NEVER; /* prudent, but probably unnecessary */
105 ldap_set_option( ld, LDAP_OPT_DEREF, &deref );
H A Dldapmodrdn.c42 int rc, havedn, deref, optind; local
117 deref = LDAP_DEREF_NEVER; /* this seems prudent */
118 ldap_set_option( ld, LDAP_OPT_DEREF, &deref );
H A Dldapmodify.c242 int rc, use_ldif, deref; local
252 deref = LDAP_DEREF_NEVER; /* this seems prudent */
253 ldap_set_option( ld, LDAP_OPT_DEREF, &deref );
H A Dldapsearch.c107 fprintf( stderr, gettext(" -a deref\tone of never, always, search, or find (default: never)\n") );
137 static int includeufn, allow_binary, vals2tmp, ldif, scope, deref; variable
167 deref = LDAP_DEREF_NEVER;
269 ldap_set_option( ld, LDAP_OPT_DEREF, &deref );
418 case 'a': /* set alias deref option */
420 deref = LDAP_DEREF_NEVER;
422 deref = LDAP_DEREF_SEARCHING;
424 deref = LDAP_DEREF_FINDING;
426 deref = LDAP_DEREF_ALWAYS;
428 fprintf( stderr, gettext("alias deref shoul
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/B/
H A DXref.pm236 sub deref { subroutine
242 sub pp_rv2cv { deref(shift, $top, "&"); }
243 sub pp_rv2hv { deref(shift, $top, "%"); }
244 sub pp_rv2sv { deref(shift, $top, "\$"); }
245 sub pp_rv2av { deref(shift, $top, "\@"); }
246 sub pp_rv2gv { deref(shift, $top, "*"); }
/osnet-11/usr/src/lib/libldap4/common/
H A Dreferral.c324 int ver, scope, deref, sizelimit, timelimit, attrsonly; local
445 if (ber_scanf(&tmpber, "iiiib", &scope, &deref, &sizelimit, &timelimit, &attrsonly) == LBER_DEFAULT){
451 deref, sizelimit, timelimit, attrsonly) == -1) {
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Doverload.t743 package deref; package
747 sub deref { subroutine
750 bless $self, 'deref::dummy'; # Disable overloading of %{}
755 sub hderef {shift->deref('h')}
756 sub aderef {shift->deref('a')}
757 sub cderef {shift->deref('c')}
758 sub gderef {shift->deref('g')}
759 sub sderef {shift->deref('s')}
762 my $deref = bless { h => { foo => 5 , fake => 23 },
767 }, 'deref';
[all...]

Completed in 23 milliseconds