MCPcopy Index your code
hub / github.com/MapServer/MapServer / msIO_installStdoutToBuffer

Function msIO_installStdoutToBuffer

mapio.c:812–826  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

810/************************************************************************/
811
812void msIO_installStdoutToBuffer()
813
814{
815 msIOContextGroup *group = msIO_GetContextGroup();
816 msIOContext context;
817
818 context.label = "buffer";
819 context.write_channel = MS_TRUE;
820 context.readWriteFunc = msIO_bufferWrite;
821 context.cbData = calloc(sizeof(msIOBuffer),1);
822
823 msIO_installHandlers( &group->stdin_context,
824 &context,
825 &group->stderr_context );
826}
827
828/************************************************************************/
829/* msIO_installStdinFromBuffer() */

Callers 1

php_mapscript.cFile · 0.85

Calls 2

msIO_GetContextGroupFunction · 0.85
msIO_installHandlersFunction · 0.85

Tested by

no test coverage detected