Lines Matching full:d
25 d xmlInputMatchCallback...
26 d s * based(######typedef######)
27 d procptr
36 d xmlInputOpenCallback...
37 d s * based(######typedef######)
38 d procptr
49 d xmlInputReadCallback...
50 d s * based(######typedef######)
51 d procptr
60 d xmlInputCloseCallback...
61 d s * based(######typedef######)
62 d procptr
77 d xmlOutputMatchCallback...
78 d s * based(######typedef######)
79 d procptr
88 d xmlOutputOpenCallback...
89 d s * based(######typedef######)
90 d procptr
101 d xmlOutputWriteCallback...
102 d s * based(######typedef######)
103 d procptr
112 d xmlOutputCloseCallback...
113 d s * based(######typedef######)
114 d procptr
122 d xmlParserInputBuffer...
123 d ds based(xmlParserInputBufferPtr)
124 d align qualified
125 d context * void *
126 d readcallback like(xmlInputReadCallback)
127 d closecallback like(xmlInputCloseCallback)
129 d encoder like(xmlCharEncodingHandlerPtr) Conversions --> UTF8
131 d buffer like(xmlBufPtr) UTF-8 local buffer
132 d raw like(xmlBufPtr) Raw input buffer
133 d compressed like(xmlCint)
134 d error like(xmlCint)
135 d rawconsumed like(xmlCulong)
138 d xmlOutputBuffer...
139 d ds based(xmlOutputBufferPtr)
140 d align qualified
141 d context * void *
142 d writecallback like(xmlOutputWriteCallback)
143 d closecallback like(xmlOutputCloseCallback)
145 d encoder like(xmlCharEncodingHandlerPtr) Conversions --> UTF8
147 d buffer like(xmlBufPtr) UTF-8/ISOLatin local
148 d conv like(xmlBufPtr) Buffer for output
149 d written like(xmlCint) Total # byte written
150 d error like(xmlCint)
155 d xmlCleanupInputCallbacks...
156 d pr extproc('xmlCleanupInputCallbacks')
158 d xmlPopInputCallbacks...
159 d pr extproc('xmlPopInputCallbacks')
160 d like(xmlCint)
162 d xmlRegisterDefaultInputCallbacks...
163 d pr extproc(
164 d 'xmlRegisterDefaultInputCallbacks')
166 d xmlAllocParserInputBuffer...
167 d pr extproc('xmlAllocParserInputBuffer')
168 d like(xmlParserInputBufferPtr)
169 d enc value like(xmlCharEncoding)
171 d xmlParserInputBufferCreateFilename...
172 d pr extproc(
173 d 'xmlParserInputBufferCreateFilename')
174 d like(xmlParserInputBufferPtr)
175 d URI * value options(*string) const char *
176 d enc value like(xmlCharEncoding)
178 d xmlParserInputBufferCreateFile...
179 d pr extproc(
180 d 'xmlParserInputBufferCreateFile')
181 d like(xmlParserInputBufferPtr)
182 d file * value FILE *
183 d enc value like(xmlCharEncoding)
185 d xmlParserInputBufferCreateFd...
186 d pr extproc(
187 d 'xmlParserInputBufferCreateFd')
188 d like(xmlParserInputBufferPtr)
189 d fd value like(xmlCint)
190 d enc value like(xmlCharEncoding)
192 d xmlParserInputBufferCreateMem...
193 d pr extproc(
194 d 'xmlParserInputBufferCreateMem')
195 d like(xmlParserInputBufferPtr)
196 d mem * value options(*string) const char *
197 d size value like(xmlCint)
198 d enc value like(xmlCharEncoding)
200 d xmlParserInputBufferCreateStatic...
201 d pr extproc(
202 d 'xmlParserInputBufferCreateStatic')
203 d like(xmlParserInputBufferPtr)
204 d mem * value options(*string) const char *
205 d size value like(xmlCint)
206 d enc value like(xmlCharEncoding)
208 d xmlParserInputBufferCreateIO...
209 d pr extproc(
210 d 'xmlParserInputBufferCreateIO')
211 d like(xmlParserInputBufferPtr)
212 d ioread value like(xmlInputReadCallback)
213 d ioclose value like(xmlInputCloseCallback)
214 d ioctx * value void *
215 d enc value like(xmlCharEncoding)
217 d xmlParserInputBufferRead...
218 d pr extproc('xmlParserInputBufferRead')
219 d like(xmlCint)
220 d in value like(xmlParserInputBufferPtr)
221 d len value like(xmlCint)
223 d xmlParserInputBufferGrow...
224 d pr extproc('xmlParserInputBufferGrow')
225 d like(xmlCint)
226 d in value like(xmlParserInputBufferPtr)
227 d len value like(xmlCint)
229 d xmlParserInputBufferPush...
230 d pr extproc('xmlParserInputBufferPush')
231 d like(xmlCint)
232 d in value like(xmlParserInputBufferPtr)
233 d len value like(xmlCint)
234 d buf * value options(*string) const char *
236 d xmlFreeParserInputBuffer...
237 d pr extproc('xmlFreeParserInputBuffer')
238 d in value like(xmlParserInputBufferPtr)
240 d xmlParserGetDirectory...
241 d pr * extproc('xmlParserGetDirectory') char *
242 d filename * value options(*string) const char *
244 d xmlRegisterInputCallbacks...
245 d pr extproc('xmlRegisterInputCallbacks')
246 d like(xmlCint)
247 d matchFunc value like(xmlInputMatchCallback)
248 d openFunc value like(xmlInputOpenCallback)
249 d readFunc value like(xmlInputReadCallback)
250 d closeFunc value like(xmlInputCloseCallback)
256 d xmlCleanupOutputCallbacks...
257 d pr extproc('xmlCleanupOutputCallbacks')
259 d xmlRegisterDefaultOutputCallbacks...
260 d pr extproc(
261 d 'xmlRegisterDefaultOuputCallbacks')
263 d xmlAllocOutputBuffer...
264 d pr extproc('xmlAllocOutputBuffer')
265 d like(xmlOutputBufferPtr)
266 d encoder value
267 d like(xmlCharEncodingHandlerPtr)
269 d xmlOutputBufferCreateFilename...
270 d pr extproc(
271 d 'xmlOutputBufferCreateFilename')
272 d like(xmlOutputBufferPtr)
273 d URI * value options(*string) const char *
274 d encoder value
275 d like(xmlCharEncodingHandlerPtr)
276 d compression value like(xmlCint)
278 d xmlOutputBufferCreateFile...
279 d pr extproc('xmlOutputBufferCreateFile')
280 d like(xmlOutputBufferPtr)
281 d file * value FILE *
282 d encoder value
283 d like(xmlCharEncodingHandlerPtr)
285 d xmlOutputBufferCreateBuffer...
286 d pr extproc(
287 d 'xmlOutputBufferCreateBuffer')
288 d like(xmlOutputBufferPtr)
289 d buffer value like(xmlBufferPtr)
290 d encoder value
291 d like(xmlCharEncodingHandlerPtr)
293 d xmlOutputBufferCreateFd...
294 d pr extproc('xmlOutputBufferCreateFd')
295 d like(xmlOutputBufferPtr)
296 d fd value like(xmlCint)
297 d encoder value
298 d like(xmlCharEncodingHandlerPtr)
300 d xmlOutputBufferCreateIO...
301 d pr extproc('xmlOutputBufferCreateIO')
302 d like(xmlOutputBufferPtr)
303 d iowrite value like(xmlOutputWriteCallback)
304 d ioclose value like(xmlOutputCloseCallback)
305 d ioctx * value void *
306 d encoder value
307 d like(xmlCharEncodingHandlerPtr)
311 d xmlOutputBufferGetContent...
312 d pr * extproc('xmlOutputBufferGetContent') const xmlChar *
313 d out value like(xmlOutputBufferPtr)
315 d xmlOutputBufferGetSize...
316 d pr extproc('xmlOutputBufferGetSize')
317 d like(xmlCsize_t)
318 d out value like(xmlOutputBufferPtr)
320 d xmlOutputBufferWrite...
321 d pr extproc('xmlOutputBufferWrite')
322 d like(xmlCint)
323 d out value like(xmlOutputBufferPtr)
324 d len value like(xmlCint)
325 d buf * value options(*string) const char *
327 d xmlOutputBufferWriteString...
328 d pr extproc('xmlOutputBufferWriteString')
329 d like(xmlCint)
330 d out value like(xmlOutputBufferPtr)
331 d str * value options(*string) const char *
333 d xmlOutputBufferWriteEscape...
334 d pr extproc('xmlOutputBufferWriteEscape')
335 d like(xmlCint)
336 d out value like(xmlOutputBufferPtr)
337 d str * value options(*string) const xmlChar *
338 d escaping value like(xmlCharEncodingOutputFunc)
340 d xmlOutputBufferFlush...
341 d pr extproc('xmlOutputBufferFlush')
342 d like(xmlCint)
343 d out value like(xmlOutputBufferPtr)
345 d xmlOutputBufferClose...
346 d pr extproc('xmlOutputBufferClose')
347 d like(xmlCint)
348 d out value like(xmlOutputBufferPtr)
350 d xmlRegisterOutputCallbacks...
351 d pr extproc('xmlRegisterOutputCallbacks')
352 d like(xmlCint)
353 d matchFunc value like(xmlOutputMatchCallback)
354 d openFunc value like(xmlOutputOpenCallback)
355 d writeFunc value like(xmlOutputWriteCallback)
356 d closeFunc value like(xmlOutputCloseCallback)
362 d xmlRegisterHTTPPostCallbacks...
363 d pr extproc(
364 d 'xmlRegisterHTTPPostCallbacks')
369 d xmlCheckHTTPInput...
370 d pr extproc('xmlCheckHTTPInput')
371 d like(xmlParserInputPtr)
372 d ctxt value like(xmlParserCtxtPtr)
373 d ret value like(xmlParserInputPtr)
377 d xmlNoNetExternalEntityLoader...
378 d pr extproc(
379 d 'xmlNoNetExternalEntityLoader')
380 d like(xmlParserInputPtr)
381 d URL * value options(*string) const char *
382 d ID * value options(*string) const char *
383 d ctxt value like(xmlParserCtxtPtr)
388 d xmlNormalizeWindowsPath...
389 d pr * extproc('xmlNormalizeWindowsPath') xmlChar *
390 d path * value options(*string) const xmlChar *
392 d xmlCheckFilename...
393 d pr extproc('xmlCheckFilename')
394 d like(xmlCint)
395 d path * value options(*string) const char *
399 d xmlFileMatch pr extproc('xmlFileMatch')
400 d like(xmlCint)
401 d filename * value options(*string) const char *
403 d xmlFileOpen pr * extproc('xmlFileOpen') void *
404 d filename * value options(*string) const char *
406 d xmlFileRead pr extproc('xmlFileRead')
407 d like(xmlCint)
408 d context * value void *
409 d buffer 65535 options(*varsize)
410 d len value like(xmlCint)
412 d xmlFileClose pr extproc('xmlFileClose')
413 d like(xmlCint)
414 d context * value void *
419 d xmlIOHTTPMatch pr extproc('xmlIOHTTPMatch')
420 d like(xmlCint)
421 d filename * value options(*string) const char *
423 d xmlIOHTTPOpen pr * extproc('xmlIOHTTPOpen') void *
424 d filename * value options(*string) const char *
427 d xmlIOHTTPOpenW pr * extproc('xmlIOHTTPOpenW') void *
428 d post_uri * value options(*string) const char *
429 d compression value like(xmlCint)
432 d xmlIOHTTPRead pr extproc('xmlIOHTTPRead')
433 d like(xmlCint)
434 d context * value void *
435 d buffer 65535 options(*varsize)
436 d len value like(xmlCint)
438 d xmlIOHTTPClose pr extproc('xmlIOHTTPClose')
439 d like(xmlCint)
440 d context * value void *
446 d xmlIOFTPMatch pr extproc('xmlIOFTPMatch')
447 d like(xmlCint)
448 d filename * value options(*string) const char *
450 d xmlIOFTPOpen pr * extproc('xmlIOFTPOpen') void *
451 d filename * value options(*string) const char *
453 d xmlIOFTPRead pr extproc('xmlIOFTPRead')
454 d like(xmlCint)
455 d context * value void *
456 d buffer 65535 options(*varsize)
457 d len value like(xmlCint)
459 d xmlIOFTPClose pr extproc('xmlIOFTPClose')
460 d like(xmlCint)
461 d context * value void *