Searched refs:thandle_t (Results 1 – 8 of 8) sorted by relevance
/external/pdfium/third_party/libtiff/ |
D | tiffio.h | 101 DECLARE_HANDLE(thandle_t); /* Win32 file handle */ 103 typedef HFILE thandle_t; /* client data handle */ typedef 106 typedef void* thandle_t; /* client data handle */ typedef 274 typedef void (*TIFFErrorHandlerExt)(thandle_t, const char*, const char*, va_list); 275 typedef tmsize_t (*TIFFReadWriteProc)(thandle_t, void*, tmsize_t); 276 typedef toff_t (*TIFFSeekProc)(thandle_t, toff_t, int); 277 typedef int (*TIFFCloseProc)(thandle_t); 278 typedef toff_t (*TIFFSizeProc)(thandle_t); 279 typedef int (*TIFFMapFileProc)(thandle_t, void** base, toff_t* size); 280 typedef void (*TIFFUnmapFileProc)(thandle_t, void* base, toff_t size); [all …]
|
D | tif_open.c | 36 _tiffDummyMapProc(thandle_t fd, void** pbase, toff_t* psize) in _tiffDummyMapProc() 43 _tiffDummyUnmapProc(thandle_t fd, void* base, toff_t size) in _tiffDummyUnmapProc() 75 thandle_t clientdata, 536 thandle_t 545 thandle_t 546 TIFFSetClientdata(TIFF* tif, thandle_t newvalue) 548 thandle_t m = tif->tif_clientdata;
|
D | tif_warning.c | 63 TIFFWarningExt(thandle_t fd, const char* module, const char* fmt, ...) in TIFFWarningExt()
|
D | tif_error.c | 63 TIFFErrorExt(thandle_t fd, const char* module, const char* fmt, ...) in TIFFErrorExt()
|
D | tif_close.c | 126 thandle_t fd = tif->tif_clientdata; in TIFFClose()
|
D | tiffiop.h | 191 thandle_t tif_clientdata; /* callback parameter */
|
/external/pdfium/core/src/fxcodec/codec/ |
D | fx_codec_tiff.cpp | 90 static tsize_t _tiff_read(thandle_t context, tdata_t buf, tsize_t length) { in _tiff_read() 104 static tsize_t _tiff_write(thandle_t context, tdata_t buf, tsize_t length) { in _tiff_write() 113 static toff_t _tiff_seek(thandle_t context, toff_t offset, int whence) { in _tiff_seek() 145 static int _tiff_close(thandle_t context) { in _tiff_close() 148 static toff_t _tiff_get_size(thandle_t context) { in _tiff_get_size() 153 static int _tiff_map(thandle_t context, tdata_t*, toff_t*) { in _tiff_map() 156 static void _tiff_unmap(thandle_t context, tdata_t, toff_t) {} in _tiff_unmap() 158 TIFF* tif = TIFFClientOpen("Tiff Image", mode, (thandle_t)context, _tiff_read, in _tiff_open() 188 int TIFFCmyk2Rgb(thandle_t context, in TIFFCmyk2Rgb()
|
/external/ImageMagick/coders/ |
D | tiff.c | 543 static int TIFFCloseBlob(thandle_t image) in TIFFCloseBlob() 569 static toff_t TIFFGetBlobSize(thandle_t image) in TIFFGetBlobSize() 846 static int TIFFMapBlob(thandle_t image,tdata_t *base,toff_t *size) in TIFFMapBlob() 856 static tsize_t TIFFReadBlob(thandle_t image,tdata_t data,tsize_t size) in TIFFReadBlob() 877 static toff_t TIFFSeekBlob(thandle_t image,toff_t offset,int whence) in TIFFSeekBlob() 882 static void TIFFUnmapBlob(thandle_t image,tdata_t base,toff_t size) in TIFFUnmapBlob() 909 static tsize_t TIFFWriteBlob(thandle_t image,tdata_t data,tsize_t size) in TIFFWriteBlob() 1160 tiff=TIFFClientOpen(image->filename,"rb",(thandle_t) image,TIFFReadBlob, in ReadTIFFImage() 3179 tiff=TIFFClientOpen(image->filename,mode,(thandle_t) image,TIFFReadBlob, in WriteTIFFImage()
|