Home
last modified time | relevance | path

Searched refs:thandle_t (Results 1 – 8 of 8) sorted by relevance

/external/pdfium/third_party/libtiff/
Dtiffio.h99 DECLARE_HANDLE(thandle_t); /* Win32 file handle */
101 typedef HFILE thandle_t; /* client data handle */ typedef
104 typedef void* thandle_t; /* client data handle */ typedef
272 typedef void (*TIFFErrorHandlerExt)(thandle_t, const char*, const char*, va_list);
273 typedef tmsize_t (*TIFFReadWriteProc)(thandle_t, void*, tmsize_t);
274 typedef toff_t (*TIFFSeekProc)(thandle_t, toff_t, int);
275 typedef int (*TIFFCloseProc)(thandle_t);
276 typedef toff_t (*TIFFSizeProc)(thandle_t);
277 typedef int (*TIFFMapFileProc)(thandle_t, void** base, toff_t* size);
278 typedef void (*TIFFUnmapFileProc)(thandle_t, void* base, toff_t size);
[all …]
Dtif_open.c34 _tiffDummyMapProc(thandle_t fd, void** pbase, toff_t* psize) in _tiffDummyMapProc()
41 _tiffDummyUnmapProc(thandle_t fd, void* base, toff_t size) in _tiffDummyUnmapProc()
73 thandle_t clientdata,
552 thandle_t
561 thandle_t
562 TIFFSetClientdata(TIFF* tif, thandle_t newvalue)
564 thandle_t m = tif->tif_clientdata;
Dtif_warning.c65 TIFFWarningExt(thandle_t fd, const char* module, const char* fmt, ...) in TIFFWarningExt()
Dtif_error.c65 TIFFErrorExt(thandle_t fd, const char* module, const char* fmt, ...) in TIFFErrorExt()
Dtif_close.c124 thandle_t fd = tif->tif_clientdata; in TIFFClose()
Dtiffiop.h206 thandle_t tif_clientdata; /* callback parameter */
/external/pdfium/core/fxcodec/tiff/
Dtiffmodule.cpp111 tsize_t tiff_read(thandle_t context, tdata_t buf, tsize_t length) { in tiff_read()
129 tsize_t tiff_write(thandle_t context, tdata_t buf, tsize_t length) { in tiff_write()
134 toff_t tiff_seek(thandle_t context, toff_t offset, int whence) { in tiff_seek()
167 int tiff_close(thandle_t context) { in tiff_close()
171 toff_t tiff_get_size(thandle_t context) { in tiff_get_size()
176 int tiff_map(thandle_t context, tdata_t*, toff_t*) { in tiff_map()
180 void tiff_unmap(thandle_t context, tdata_t, toff_t) {} in tiff_unmap()
183 TIFF* tif = TIFFClientOpen("Tiff Image", mode, (thandle_t)context, tiff_read, in tiff_open()
/external/ImageMagick/coders/
Dtiff.c569 static int TIFFCloseBlob(thandle_t image) in TIFFCloseBlob()
599 static toff_t TIFFGetBlobSize(thandle_t image) in TIFFGetBlobSize()
898 static int TIFFMapBlob(thandle_t image,tdata_t *base,toff_t *size) in TIFFMapBlob()
908 static tsize_t TIFFReadBlob(thandle_t image,tdata_t data,tsize_t size) in TIFFReadBlob()
928 static toff_t TIFFSeekBlob(thandle_t image,toff_t offset,int whence) in TIFFSeekBlob()
933 static void TIFFUnmapBlob(thandle_t image,tdata_t base,toff_t size) in TIFFUnmapBlob()
964 static tsize_t TIFFWriteBlob(thandle_t image,tdata_t data,tsize_t size) in TIFFWriteBlob()
1294 tiff=TIFFClientOpen(image->filename,"rb",(thandle_t) image,TIFFReadBlob, in ReadTIFFImage()
3358 tiff=TIFFClientOpen(image->filename,mode,(thandle_t) image,TIFFReadBlob, in WriteTIFFImage()