Lines Matching defs:chunk
455 errmsg = "chunk is not well balanced\n";
458 errmsg = "extra content at the end of well balanced chunk\n";
9645 * Doing validity checking on chunk doesn't make sense
9763 * Lookup the last < and > in the current chunk
9884 * @terminate: last chunk indicator
10815 * @chunk: an char array
10816 * @size: the size in byte of the chunk
10817 * @terminate: last chunk indicator
10824 xmlParseChunk(xmlParserCtxtPtr ctxt, const char *chunk, int size,
10834 if ((size > 0) && (chunk != NULL) && (!terminate) &&
10835 (chunk[size - 1] == '\r')) {
10839 if ((size > 0) && (chunk != NULL) && (ctxt->input != NULL) &&
10845 res =xmlParserInputBufferPush(ctxt->input->buf, size, chunk);
10924 * @chunk: a pointer to an array of chars
10941 const char *chunk, int size, const char *filename) {
10950 if ((chunk != NULL) && (size >= 4))
10951 enc = xmlDetectCharEncoding((const xmlChar *) chunk, size);
11023 * If the caller didn't provide an initial 'chunk' for determining
11027 if ((size == 0) || (chunk == NULL)) {
11033 xmlParserInputBufferPush(ctxt->input->buf, size, chunk);
11523 * Doing validity checking on chunk doesn't make sense
11602 * @doc: the document the chunk pertains to
11658 * Doing validity checking on chunk without context
11807 * @doc: the document the chunk pertains to
11834 * @doc: the document the chunk pertains to
11841 * Parse a well-balanced chunk of an XML document
11848 * Returns 0 if the chunk is well balanced, -1 in case of args problem and
11868 * Parse a well-balanced chunk of an XML document
11875 * Returns XML_ERR_OK if the chunk is well balanced, and the parser
11879 * the parsed chunk is not well balanced.
12048 * Parse a well-balanced chunk of an XML document
12056 * Returns XML_ERR_OK if the chunk is well balanced, and the parser
12247 * @doc: the document the chunk pertains to
12256 * Parse a well-balanced chunk of an XML document
12263 * Returns 0 if the chunk is well balanced, -1 in case of args problem and
12267 * the parsed chunk is not well balanced.
12346 * Doing validity checking on chunk doesn't make sense
12418 * This correspond to a "Well Balanced" chunk
12463 * This correspond to a "Well Balanced" chunk
13364 * @chunk: a pointer to an array of chars
13374 xmlCtxtResetPush(xmlParserCtxtPtr ctxt, const char *chunk,
13384 if ((encoding == NULL) && (chunk != NULL) && (size >= 4))
13385 enc = xmlDetectCharEncoding((const xmlChar *) chunk, size);
13433 if ((size > 0) && (chunk != NULL) && (ctxt->input != NULL) &&
13438 xmlParserInputBufferPush(ctxt->input->buf, size, chunk);