Home
last modified time | relevance | path

Searched refs:pszFileContents (Results 1 – 4 of 4) sorted by relevance

/dports/devel/upp/upp/bazaar/plugin/gdal/frmts/xpm/
H A Dxpmdataset.cpp108 char *pszFileContents; in Open() local
116 pszFileContents = (char *) VSIMalloc(nFileSize+1); in Open()
117 if( pszFileContents == NULL ) in Open()
125 pszFileContents[nFileSize] = '\0'; in Open()
129 if( VSIFReadL( pszFileContents, 1, nFileSize, fp ) != nFileSize) in Open()
131 CPLFree( pszFileContents ); in Open()
151 pabyImage = ParseXPM( pszFileContents, &nXSize, &nYSize, &poCT ); in Open()
152 CPLFree( pszFileContents ); in Open()
/dports/graphics/py-gdal/gdal-3.3.3/frmts/xpm/
H A Dxpmdataset.cpp122 char *pszFileContents = reinterpret_cast<char *>( VSI_MALLOC_VERBOSE(nFileSize+1) ); in Open() local
123 if( pszFileContents == nullptr ) in Open()
128 pszFileContents[nFileSize] = '\0'; in Open()
131 VSIFReadL( pszFileContents, 1, nFileSize, fp ) != nFileSize) in Open()
133 CPLFree( pszFileContents ); in Open()
153 GByte *pabyImage = ParseXPM( pszFileContents, nFileSize, &nXSize, &nYSize, &poCT ); in Open()
155 CPLFree( pszFileContents ); in Open()
/dports/graphics/p5-Geo-GDAL/gdal-3.3.3/frmts/xpm/
H A Dxpmdataset.cpp122 char *pszFileContents = reinterpret_cast<char *>( VSI_MALLOC_VERBOSE(nFileSize+1) );
123 if( pszFileContents == nullptr )
128 pszFileContents[nFileSize] = '\0';
131 VSIFReadL( pszFileContents, 1, nFileSize, fp ) != nFileSize)
133 CPLFree( pszFileContents );
153 GByte *pabyImage = ParseXPM( pszFileContents, nFileSize, &nXSize, &nYSize, &poCT );
155 CPLFree( pszFileContents );
/dports/graphics/gdal/gdal-3.3.3/frmts/xpm/
H A Dxpmdataset.cpp122 char *pszFileContents = reinterpret_cast<char *>( VSI_MALLOC_VERBOSE(nFileSize+1) ); in Open() local
123 if( pszFileContents == nullptr ) in Open()
128 pszFileContents[nFileSize] = '\0'; in Open()
131 VSIFReadL( pszFileContents, 1, nFileSize, fp ) != nFileSize) in Open()
133 CPLFree( pszFileContents ); in Open()
153 GByte *pabyImage = ParseXPM( pszFileContents, nFileSize, &nXSize, &nYSize, &poCT ); in Open()
155 CPLFree( pszFileContents ); in Open()