Lines Matching refs:mem
1612 xmlChar *mem; in PHP_FUNCTION() local
1647 mem = (xmlChar*) xmlBufferContent(buf); in PHP_FUNCTION()
1648 if (!mem) { in PHP_FUNCTION()
1652 RETVAL_STRING((char *) mem); in PHP_FUNCTION()
1660 xmlDocDumpFormatMemory(docp, &mem, &size, format); in PHP_FUNCTION()
1664 if (!size || !mem) { in PHP_FUNCTION()
1667 RETVAL_STRINGL((char *) mem, size); in PHP_FUNCTION()
1668 xmlFree(mem); in PHP_FUNCTION()
2153 xmlChar *mem = NULL; in PHP_FUNCTION() local
2200 mem = (xmlChar*) xmlBufferContent(buf); in PHP_FUNCTION()
2201 if (!mem) { in PHP_FUNCTION()
2205 RETVAL_STRINGL((const char*) mem, size); in PHP_FUNCTION()
2216 htmlDocDumpMemoryFormat(docp, &mem, &size, format); in PHP_FUNCTION()
2218 htmlDocDumpMemory(docp, &mem, &size); in PHP_FUNCTION()
2220 if (!size || !mem) { in PHP_FUNCTION()
2223 RETVAL_STRINGL((const char*) mem, size); in PHP_FUNCTION()
2225 if (mem) in PHP_FUNCTION()
2226 xmlFree(mem); in PHP_FUNCTION()