Searched refs:encoder (Results 1 - 19 of 19) sorted by relevance

/vbox/src/libs/libxml2-2.6.31/include/libxml/
H A DxmlIO.h130 xmlCharEncodingHandlerPtr encoder; /* I18N conversions to UTF-8 */ member in struct:_xmlParserInputBuffer
133 xmlBufferPtr raw; /* if encoder != NULL buffer for raw input */
146 xmlCharEncodingHandlerPtr encoder; /* I18N conversions to UTF-8 */ member in struct:_xmlOutputBuffer
149 xmlBufferPtr conv; /* if encoder != NULL buffer for output */
223 xmlAllocOutputBuffer (xmlCharEncodingHandlerPtr encoder);
227 xmlCharEncodingHandlerPtr encoder,
232 xmlCharEncodingHandlerPtr encoder);
236 xmlCharEncodingHandlerPtr encoder);
240 xmlCharEncodingHandlerPtr encoder);
246 xmlCharEncodingHandlerPtr encoder);
[all...]
H A Dglobals.h32 typedef xmlOutputBufferPtr (*xmlOutputBufferCreateFilenameFunc) (const char *URI, xmlCharEncodingHandlerPtr encoder, int compression);
/vbox/src/VBox/Additions/linux/drm/
H A Dvbox_mode.c317 static void vbox_encoder_destroy(struct drm_encoder *encoder) argument
319 LogFunc(("vboxvideo: %d: encoder=%p\n", __LINE__, encoder));
320 drm_encoder_cleanup(encoder);
321 kfree(encoder);
329 struct drm_encoder *encoder; local
332 /* pick the encoder ids */
338 encoder = obj_to_encoder(obj);
339 LogFunc(("vboxvideo: %d: encoder=%p\n", __LINE__, encoder));
352 vbox_encoder_dpms(struct drm_encoder *encoder, int mode) argument
357 vbox_mode_fixup(struct drm_encoder *encoder, const struct drm_display_mode *mode, struct drm_display_mode *adjusted_mode) argument
364 vbox_encoder_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode, struct drm_display_mode *adjusted_mode) argument
370 vbox_encoder_prepare(struct drm_encoder *encoder) argument
375 vbox_encoder_commit(struct drm_encoder *encoder) argument
[all...]
/vbox/src/libs/libxml2-2.6.31/
H A DxmlIO.c191 "encoder error", /* XML_IO_ENCODER */
2239 ret->encoder = xmlGetCharEncodingHandler(enc);
2240 if (ret->encoder != NULL)
2256 * @encoder: the encoding converter or NULL
2263 xmlAllocOutputBuffer(xmlCharEncodingHandlerPtr encoder) { argument
2278 ret->encoder = encoder;
2279 if (encoder != NULL) {
2282 * This call is designed to initiate the encoder state
2284 xmlCharEncOutFunc(encoder, re
2451 __xmlOutputBufferCreateFilename(const char *URI, xmlCharEncodingHandlerPtr encoder, int compression ATTRIBUTE_UNUSED) argument
2589 xmlOutputBufferCreateFilename(const char *URI, xmlCharEncodingHandlerPtr encoder, int compression ATTRIBUTE_UNUSED) argument
2640 xmlOutputBufferCreateFile(FILE *file, xmlCharEncodingHandlerPtr encoder) argument
2668 xmlOutputBufferCreateBuffer(xmlBufferPtr buffer, xmlCharEncodingHandlerPtr encoder) argument
2801 xmlOutputBufferCreateFd(int fd, xmlCharEncodingHandlerPtr encoder) argument
2860 xmlOutputBufferCreateIO(xmlOutputWriteCallback iowrite, xmlOutputCloseCallback ioclose, void *ioctx, xmlCharEncodingHandlerPtr encoder) argument
[all...]
H A Dxmlsave.c852 (buf->encoder == NULL) && (buf->conv == NULL) &&
862 buf->encoder = xmlFindCharEncodingHandler((const char *)encoding);
863 if (buf->encoder == NULL) {
870 xmlCharEncCloseFunc(buf->encoder);
877 xmlCharEncOutFunc(buf->encoder, buf->conv, NULL);
946 xmlCharEncCloseFunc(buf->encoder);
948 buf->encoder = NULL;
1908 outbuf->encoder = NULL;
H A Dxmlwriter.c521 xmlCharEncodingHandlerPtr encoder; local
536 encoder = NULL;
538 encoder = xmlFindCharEncodingHandler(encoding);
539 if (encoder == NULL) {
546 writer->out->encoder = encoder;
547 if (encoder != NULL) {
551 xmlCharEncOutFunc(encoder, writer->out->conv, NULL);
553 writer->doc->encoding = xmlStrdup((xmlChar *)writer->out->encoder->name);
577 if (writer->out->encoder !
[all...]
H A DparserInternals.c1111 if (input->buf->encoder != NULL) {
1116 if (input->buf->encoder == handler)
1121 if ((!xmlStrncmp(BAD_CAST input->buf->encoder->name,
1134 xmlCharEncCloseFunc(input->buf->encoder);
1135 input->buf->encoder = handler;
1138 input->buf->encoder = handler;
1189 nbchars = xmlCharEncInFunc(input->buf->encoder,
1199 nbchars = xmlCharEncFirstLine(input->buf->encoder,
1205 "switching encoding: encoder error\n",
H A Dc14n.c1466 * buffer MUST have encoder==NULL because C14N requires
1489 if (buf->encoder != NULL) {
1491 "xmlC14NNewCtx: output buffer encoder != NULL but C14N requires UTF8 output\n");
1559 * buffer MUST have encoder==NULL because C14N requires
1584 if (buf->encoder != NULL) {
1586 "xmlC14NExecute: output buffer encoder != NULL but C14N requires UTF8 output\n");
1648 * buffer MUST have encoder==NULL because C14N requires
H A DHTMLparser.c3329 (ctxt->input->buf->encoder == NULL)) {
3351 (ctxt->input->buf->encoder != NULL) &&
3362 nbchars = xmlCharEncInFunc(ctxt->input->buf->encoder,
3367 "htmlCheckEncoding: encoder error\n",
5335 if ((in->encoder != NULL) && (in->buffer != NULL) &&
5339 nbchars = xmlCharEncInFunc(in->encoder, in->buffer, in->raw);
5342 "encoder error\n", NULL, NULL);
5404 if(enc==XML_CHAR_ENCODING_UTF8 || buf->encoder)
H A DHTMLtree.c409 outbuf->encoder = NULL;
H A Dencoding.c1933 * In case of UTF8 sequence conversion errors for the given encoder,
1983 "initialized encoder\n");
2076 * did not mangle the encoder state.
2170 if ((in->buf != NULL) && (in->buf->encoder != NULL)) {
2172 xmlCharEncodingHandler * handler = in->buf->encoder;
H A Dtestapi.c5479 xmlOutputBufferPtr buf; /* the output buffer to store canonical XML; this buffer MUST have encoder==NULL because C14N requires UTF-8 output */
27198 xmlCharEncodingHandlerPtr encoder; /* the encoding converter or NULL */ local
27203 encoder = gen_xmlCharEncodingHandlerPtr(n_encoder, 0);
27205 ret_val = xmlAllocOutputBuffer(encoder);
27208 des_xmlCharEncodingHandlerPtr(n_encoder, encoder, 0);
27905 xmlCharEncodingHandlerPtr encoder; /* the encoding converter or NULL */ local
27912 encoder = gen_xmlCharEncodingHandlerPtr(n_encoder, 1);
27914 ret_val = xmlOutputBufferCreateBuffer(buffer, encoder);
27918 des_xmlCharEncodingHandlerPtr(n_encoder, encoder, 1);
27946 xmlCharEncodingHandlerPtr encoder; /* th local
27987 xmlCharEncodingHandlerPtr encoder; /* the encoding converter or NULL */ local
28028 xmlCharEncodingHandlerPtr encoder; /* the encoding converter or NULL */ local
[all...]
H A Dparser.c10862 if ((in->encoder != NULL) && (in->buffer != NULL) &&
10866 nbchars = xmlCharEncInFunc(in->encoder, in->buffer, in->raw);
10870 "xmlParseChunk: encoder error\n");
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/java_api/src/
H A DTestBean.java94 XMLEncoder encoder = null;
98 encoder = new XMLEncoder(out);
103 return encoder;
643 XMLEncoder encoder = getXMLEncoder(file);
646 encoder.writeObject(obj);
647 encoder.close();
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/
H A DLzmaEnc.c1691 const CLzmaProb *encoder = p->posSlotEncoder[lenToPosState]; local
1694 posSlotPrices[posSlot] = RcTree_GetPrice(encoder, kNumPosSlotBits, posSlot, p->ProbPrices);
/vbox/src/libs/libxml2-2.6.31/python/
H A Dlibxml.c417 * @encoder: the encoding converter or NULL
426 xmlCharEncodingHandlerPtr encoder) {
431 ret = xmlAllocOutputBuffer(encoder);
594 * @encoder: the encoding converter or NULL
425 xmlOutputBufferCreatePythonFile(PyObject *file, xmlCharEncodingHandlerPtr encoder) argument
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Djaxws-tools.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/istack/ ...
H A Djaxb-xjc.jar ... UnicodeEscapeWriter { private final java.nio.charset.CharsetEncoder encoder final synthetic java.io.OutputStreamWriter val$bw ...
H A Djaxb-impl.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/xml/ com/sun/xml/bind/ ...

Completed in 305 milliseconds