Lines Matching defs:scope
15 * l d a p : / / hostport / dn [ ? attributes [ ? scope [ ? filter [ ? extensions ] ] ] ]
19 * scope is one of these three strings: base one sub (default=base)
247 /* scan for '?' that marks end of attrs and begin. of scope */
250 * terminate attrs; point to start of scope and scan for
251 * '?' that marks end of scope and begin. of filter
256 /* terminate scope; point to start of filter */
541 * If scope is not NULL then it overrides the URL's scope.
554 char *scope,
585 /* merge filter and/or scope and/or attributes with URL */
586 if (attrs || scope || filter) {
591 if (scope)
592 scope_len = strlen(scope) + 1; /* for NULL */
656 /* handle URL scope */
663 /* insert supplied scope */
664 if (scope) {
665 while (*scope) {
666 *cp2++ = *scope++;
674 if (scope) {
675 /* skip over URL scope */
679 /* insert supplied scope */
680 while (*scope) {
681 *cp2++ = *scope++;
685 /* copy URL scope */
693 /* append supplied scope */
694 if (scope) {
699 while (*scope) {
700 *cp2++ = *scope++;