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/fxcodec/codec/ |
D | ccodec_tiffmodule.cpp | 105 tsize_t tiff_read(thandle_t context, tdata_t buf, tsize_t length) { in tiff_read() 123 tsize_t tiff_write(thandle_t context, tdata_t buf, tsize_t length) { in tiff_write() 128 toff_t tiff_seek(thandle_t context, toff_t offset, int whence) { in tiff_seek() 161 int tiff_close(thandle_t context) { in tiff_close() 165 toff_t tiff_get_size(thandle_t context) { in tiff_get_size() 170 int tiff_map(thandle_t context, tdata_t*, toff_t*) { in tiff_map() 174 void tiff_unmap(thandle_t context, tdata_t, toff_t) {} in tiff_unmap() 177 TIFF* tif = TIFFClientOpen("Tiff Image", mode, (thandle_t)context, tiff_read, in tiff_open()
|
/external/ImageMagick/coders/ |
D | tiff.c | 630 static int TIFFCloseBlob(thandle_t image) in TIFFCloseBlob() 660 static toff_t TIFFGetBlobSize(thandle_t image) in TIFFGetBlobSize() 934 static int TIFFMapBlob(thandle_t image,tdata_t *base,toff_t *size) in TIFFMapBlob() 944 static tsize_t TIFFReadBlob(thandle_t image,tdata_t data,tsize_t size) in TIFFReadBlob() 964 static toff_t TIFFSeekBlob(thandle_t image,toff_t offset,int whence) in TIFFSeekBlob() 969 static void TIFFUnmapBlob(thandle_t image,tdata_t base,toff_t size) in TIFFUnmapBlob() 1000 static tsize_t TIFFWriteBlob(thandle_t image,tdata_t data,tsize_t size) in TIFFWriteBlob() 1325 tiff=TIFFClientOpen(image->filename,"rb",(thandle_t) image,TIFFReadBlob, in ReadTIFFImage() 3499 tiff=TIFFClientOpen(image->filename,mode,(thandle_t) image,TIFFReadBlob, in WriteTIFFImage()
|