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

Function msLayerGetProcessingKey

maplayer.c:769–781  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

767}
768
769char *msLayerGetProcessingKey( layerObj *layer, const char *key )
770{
771 int i, len = strlen(key);
772
773 for( i = 0; i < layer->numprocessing; i++ )
774 {
775 if( strncasecmp(layer->processing[i],key,len) == 0
776 && layer->processing[i][len] == '=' )
777 return layer->processing[i] + len + 1;
778 }
779
780 return NULL;
781}
782
783
784/************************************************************************/

Callers 15

msDrawLayerFunction · 0.85
msDrawShapeFunction · 0.85
msImageStartLayerFunction · 0.85
msDrawWMSLayerLowFunction · 0.85
msConnPoolRegisterFunction · 0.85
msConnPoolRequestFunction · 0.85
msOGRFileGetItemsFunction · 0.85
msDrawLegendIconFunction · 0.85
msWCSGetCoverage20Function · 0.85
msLayerGetItemsFunction · 0.85
msDrawPieChartLayerFunction · 0.85

Calls 1

strncasecmpFunction · 0.85

Tested by

no test coverage detected