Lines Matching refs:mem
1614 xmlChar *mem; in PHP_FUNCTION() local
1649 mem = (xmlChar*) xmlBufferContent(buf); in PHP_FUNCTION()
1650 if (!mem) { in PHP_FUNCTION()
1654 RETVAL_STRING((char *) mem); in PHP_FUNCTION()
1662 xmlDocDumpFormatMemory(docp, &mem, &size, format); in PHP_FUNCTION()
1666 if (!size || !mem) { in PHP_FUNCTION()
1669 RETVAL_STRINGL((char *) mem, size); in PHP_FUNCTION()
1670 xmlFree(mem); in PHP_FUNCTION()
2155 xmlChar *mem = NULL; in PHP_FUNCTION() local
2201 mem = (xmlChar*) xmlBufferContent(buf); in PHP_FUNCTION()
2202 if (!mem) { in PHP_FUNCTION()
2205 RETVAL_STRINGL((const char*) mem, size); in PHP_FUNCTION()
2214 htmlDocDumpMemoryFormat(docp, &mem, &size, format); in PHP_FUNCTION()
2216 htmlDocDumpMemory(docp, &mem, &size); in PHP_FUNCTION()
2218 if (!size || !mem) { in PHP_FUNCTION()
2221 RETVAL_STRINGL((const char*) mem, size); in PHP_FUNCTION()
2223 if (mem) in PHP_FUNCTION()
2224 xmlFree(mem); in PHP_FUNCTION()