• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/emacs-93/emacs/lisp/url/

Lines Matching +defs:function +defs:document

310 		    url-callback-function url-callback-arguments))
360 (url-retrieve-internal url url-callback-function
404 url-callback-function url-callback-arguments))
463 ;; No new data, just stay at the same document
525 (url-http-debug "Extracting document from cache... (%s)"
585 redirect-uri url-callback-function
792 url-callback-function
798 (apply url-callback-function url-callback-arguments))
810 (defun url-http-end-of-document-sentinel (proc why)
812 ;; to die as the 'end of document' notifier.
813 (url-http-debug "url-http-end-of-document-sentinel in buffer (%s)"
824 (defun url-http-simple-after-change-function (st nd length)
825 ;; Function used when we do NOT know how long the document is going to be
830 (defun url-http-content-length-after-change-function (st nd length)
831 "Function used when we DO know how long the document is going to be.
861 ;; Found the end of the document! Wheee!
867 (defun url-http-chunked-encoding-after-change-function (st nd length)
870 function to look for the special 0-length chunk that signifies
871 the end of the document."
885 ;; one after-change-function call.
946 ;; Found the end of the document! Wheee!
956 (defun url-http-wait-for-headers-change-function (st nd length)
958 ;; next appropriate after-change-function, etc.
964 url-callback-function
968 url-http-after-change-function
970 (url-http-debug "url-http-wait-for-headers-change-function (%s)"
1048 "Saw HTTP/0.9 response, connection closed means end of document.")
1049 (setq url-http-after-change-function
1050 'url-http-simple-after-change-function))
1053 (setq url-http-after-change-function
1054 'url-http-chunked-encoding-after-change-function)
1058 (url-http-chunked-encoding-after-change-function
1063 "Got a content-length, being smart about document end.")
1064 (setq url-http-after-change-function
1065 'url-http-content-length-after-change-function)
1077 (url-http-content-length-after-change-function
1085 (setq url-http-after-change-function
1086 'url-http-simple-after-change-function)))))
1096 When retrieval is completed, the function CALLBACK is executed with
1104 url-http-after-change-function
1105 url-callback-function
1133 url-http-after-change-function
1139 url-callback-function
1157 url-callback-function callback
1159 url-http-after-change-function 'url-http-wait-for-headers-change-function
1175 (set-process-sentinel connection 'url-http-end-of-document-sentinel)
1186 (url-http-end-of-document-sentinel proc why))
1208 (declare (special url-http-after-change-function))
1212 (url-http-debug "Calling after change function `%s' for `%S'" url-http-after-change-function proc)
1213 (funcall url-http-after-change-function
1296 A list of the units available for use in partial document fetches.