Lines Matching refs:szPtr

403     char* szPtr = szHeader;  in Open()  local
409 szPtr += 3; in Open()
412 const char* pszEncoding = strstr(szPtr, "encoding="); in Open()
422 bHas3D = strstr(szPtr, "srsDimension=\"3\"") != NULL || strstr(szPtr, "<gml:Z>") != NULL; in Open()
427 if( szPtr[0] != '<' || !CheckHeader(szPtr) ) in Open()
441 const char* pszFeatureCollection = strstr(szPtr, "wfs:FeatureCollection"); in Open()
443 pszFeatureCollection = strstr(szPtr, "gml:FeatureCollection"); /* GML 3.2.1 output */ in Open()
446 pszFeatureCollection = strstr(szPtr, "<FeatureCollection"); /* Deegree WFS 1.0.0 output */ in Open()
447 … if (pszFeatureCollection && strstr(szPtr, "xmlns:wfs=\"http://www.opengis.net/wfs\"") == NULL) in Open()
454 const char* pszNumberOfFeatures = strstr(szPtr, "numberOfFeatures="); in Open()
464 else if ((pszNumberOfFeatures = strstr(szPtr, "numberReturned=")) != NULL) /* WFS 2.0.0 */ in Open()
487 bExposeGMLId = strstr(szPtr, " gml:id=\"") != NULL || in Open()
488 strstr(szPtr, " gml:id='") != NULL; in Open()
489 bExposeFid = strstr(szPtr, " fid=\"") != NULL || in Open()
490 strstr(szPtr, " fid='") != NULL; in Open()
503 bHintConsiderEPSGAsURN = strstr(szPtr, "xmlns:fme=\"http://www.safe.com/gml/fme\"") != NULL; in Open()
506 if( strstr(szPtr, "<Maastotiedot") != NULL ) in Open()
508 …if( strstr(szPtr, "http://xml.nls.fi/XML/Namespace/Maastotietojarjestelma/SiirtotiedostonMalli/201… in Open()
512 if( !ExtractSRSName(szPtr, szSRSName, sizeof(szSRSName)) ) in Open()
516 pszSchemaLocation = strstr(szPtr, "schemaLocation="); in Open()
526 int bIsWFSJointLayer = bIsWFS && strstr(szPtr, "<wfs:Tuple>"); in Open()