• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/emacs-92/emacs/lisp/net/

Lines Matching +defs:parameter +defs:string

51   :type '(choice (string :tag "Host name")
64 This is a string using the syntax of RFC 1779.
68 (string :tag "Search base"))
94 (string :tag "Host name")
101 string)
106 string)
111 string)
154 :type '(string :tag "`ldapsearch' Program")
160 (string :tag "Argument"))
174 "*Coding system of LDAP string values.
190 ldap-encode-country-string ; 11 Country String Y
191 ldap-encode-string ; 12 DN Y
194 ldap-encode-string ; 15 Directory String Y
206 number-to-string ; 27 INTEGER Y
223 ldap-encode-string ; 44 Printable String Y
255 ldap-decode-string ; 11 Country String Y
256 ldap-decode-string ; 12 DN Y
259 ldap-decode-string ; 15 Directory String Y
271 string-to-number ; 27 INTEGER Y
288 ldap-decode-string ; 44 Printable String Y
397 ((string-equal str "TRUE")
399 ((string-equal str "FALSE")
402 (error "Wrong LDAP boolean string: %s" str))))
404 (defun ldap-encode-country-string (str)
407 (error "Invalid country string: %s" str)))
409 (defun ldap-decode-string (str)
410 (decode-coding-string str ldap-coding-system))
412 (defun ldap-encode-string (str)
413 (encode-coding-string str ldap-coding-system))
416 (mapconcat 'ldap-decode-string
417 (split-string str "\\$")
421 (mapconcat 'ldap-encode-string
422 (split-string str "\n")
428 (defun ldap-get-host-parameter (host parameter)
431 parameter))
486 `host' is a string naming one or more (blank-separated) LDAP servers to
488 `filter' is a filter string for the search as described in RFC 1558.
590 (setq name (match-string 1)
591 value (match-string 4))
595 (eq (string-match "/\\(.:.*\\)$" value) 0))
596 (setq value (match-string 1 value)))
606 (setq value (buffer-string))))