trait zlib extends AnyRef
- Annotations
- @define("__SCALANATIVE_JAVALIB_Z") @extern()
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- zlib
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- type Bytef = Byte
- type alloc_func = CFuncPtr3[voidpf, uInt, uInt, voidpf]
- type free_func = CFuncPtr2[voidpf, voidpf, Unit]
- type gzFile = Ptr[_]
- type gz_headerp = Ptr[gz_header[AnyVal, AnyVal]]
- type in_func = CFuncPtr2[Ptr[Byte], Ptr[Ptr[CUnsignedChar]], CUnsignedInt]
- type out_func = CFuncPtr3[Ptr[Byte], Ptr[CUnsignedChar], CUnsignedInt, CInt]
- type uInt = UInt
- type uLong = USize
- type uLongf = USize
- type voidp = Ptr[_]
- type voidpc = Ptr[_]
- type voidpf = Ptr[_]
- type z_off_t = Size
- type z_size_t = USize
- type z_streamp = Ptr[z_stream[AnyVal, AnyVal]]
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def Z_ASCII: CInt
- Annotations
- @name("scalanative_z_ascii")
- def Z_BEST_COMPRESSION: CInt
- Annotations
- @name("scalanative_z_best_compression")
- def Z_BEST_SPEED: CInt
- Annotations
- @name("scalanative_z_best_speed")
- def Z_BINARY: CInt
- Annotations
- @name("scalanative_z_binary")
- def Z_BLOCK: CInt
- Annotations
- @name("scalanative_z_block")
- def Z_BUF_ERROR: CInt
- Annotations
- @name("scalanative_z_buf_error")
- def Z_DATA_ERROR: CInt
- Annotations
- @name("scalanative_z_data_error")
- def Z_DEFAULT_COMPRESSION: CInt
- Annotations
- @name("scalanative_z_default_compression")
- def Z_DEFAULT_STRATEGY: CInt
- Annotations
- @name("scalanative_z_default_strategy")
- def Z_DEFLATED: CInt
- Annotations
- @name("scalanative_z_deflated")
- def Z_ERRNO: CInt
- Annotations
- @name("scalanative_z_errno")
- def Z_FILTERED: CInt
- Annotations
- @name("scalanative_z_filtered")
- def Z_FINISH: CInt
- Annotations
- @name("scalanative_z_finish")
- def Z_FIXED: CInt
- Annotations
- @name("scalanative_z_fixed")
- def Z_FULL_FLUSH: CInt
- Annotations
- @name("scalanative_z_full_flush")
- def Z_HUFFMAN_ONLY: CInt
- Annotations
- @name("scalanative_z_huffman_only")
- def Z_MEM_ERROR: CInt
- Annotations
- @name("scalanative_z_mem_error")
- def Z_NEED_DICT: CInt
- Annotations
- @name("scalanative_z_need_dict")
- def Z_NO_COMPRESSION: CInt
- Annotations
- @name("scalanative_z_no_compression")
- def Z_NO_FLUSH: CInt
- Annotations
- @name("scalanative_z_no_flush")
- def Z_NULL: CInt
- Annotations
- @name("scalanative_z_null")
- def Z_OK: CInt
- Annotations
- @name("scalanative_z_ok")
- def Z_PARTIAL_FLUSH: CInt
- Annotations
- @name("scalanative_z_partial_flush")
- def Z_RLE: CInt
- Annotations
- @name("scalanative_z_rle")
- def Z_STREAM_END: CInt
- Annotations
- @name("scalanative_z_stream_end")
- def Z_STREAM_ERROR: CInt
- Annotations
- @name("scalanative_z_stream_error")
- def Z_SYNC_FLUSH: CInt
- Annotations
- @name("scalanative_z_sync_flush")
- def Z_TEXT: CInt
- Annotations
- @name("scalanative_z_text")
- def Z_TREES: CInt
- Annotations
- @name("scalanative_z_trees")
- def Z_UNKNOWN: CInt
- Annotations
- @name("scalanative_z_unknown")
- def Z_VERSION_ERROR: CInt
- Annotations
- @name("scalanative_z_version_error")
- def adler32(adler: uLong, buf: Ptr[Bytef], len: uInt): uLong
- Annotations
- @name("scalanative_adler32")
- def adler32_combine(adler1: uLong, adler2: uLong, len2: z_off_t): uLong
- Annotations
- @name("scalanative_adler32_combine")
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def compress(dest: Ptr[Bytef], destLen: Ptr[uLongf], source: Ptr[Bytef], sourceLength: uLong): CInt
- Annotations
- @name("scalanative_compress")
- def compress2(dest: Ptr[Bytef], destLen: Ptr[uLongf], source: Ptr[Byte], sourceLength: uLong, level: CInt): CInt
- Annotations
- @name("scalanative_compress2")
- def compressBound(sourceLen: uLong): uLong
- Annotations
- @name("scalanative_compressBound")
- def crc32(crc: uLong, buf: Ptr[Bytef], len: uInt): uLong
- Annotations
- @name("scalanative_crc32")
- def crc32_combine(crc1: uLong, crc2: uLong, len2: z_off_t): uLong
- Annotations
- @name("scalanative_crc32_combine")
- def deflate(strm: z_streamp, flush: CInt): CInt
- Annotations
- @name("scalanative_deflate")
- def deflateBound(strm: z_streamp, sourceLen: uLong): uLong
- Annotations
- @name("scalanative_deflateBound")
- def deflateCopy(dest: z_streamp, source: z_streamp): CInt
- Annotations
- @name("scalanative_deflateCopy")
- def deflateEnd(strm: z_streamp): CInt
- Annotations
- @name("scalanative_deflateEnd")
- def deflateInit(strm: z_streamp, level: CInt): CInt
- Annotations
- @name("scalanative_deflateInit")
- def deflateInit2(strm: z_streamp, level: CInt, method: CInt, windowBits: CInt, memLevel: CInt, strategy: CInt): CInt
- Annotations
- @name("scalanative_deflateInit2")
- def deflateParams(strm: z_streamp, level: CInt, strategy: CInt): CInt
- Annotations
- @name("scalanative_deflateParams")
- def deflatePrime(strm: z_streamp, bits: CInt, value: CInt): CInt
- Annotations
- @name("scalanative_deflatePrime")
- def deflateReset(strm: z_streamp): CInt
- Annotations
- @name("scalanative_deflateReset")
- def deflateSetDictionary(strm: z_streamp, dictionary: Ptr[Bytef], dictLength: uInt): CInt
- Annotations
- @name("scalanative_deflateSetDictionary")
- def deflateSetHeader(strm: z_streamp, head: gz_headerp): CInt
- Annotations
- @name("scalanative_deflateSetHeader")
- def deflateTune(strm: z_streamp, good_length: CInt, max_lazy: CInt, nice_length: CInt, max_chain: CInt): CInt
- Annotations
- @name("scalanative_deflateTune")
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def gzclearerr(file: gzFile): Unit
- Annotations
- @name("scalanative_gzclearerr")
- def gzclose(file: gzFile): CInt
- Annotations
- @name("scalanative_gzclose")
- def gzdirect(file: gzFile): CInt
- Annotations
- @name("scalanative_gzdirect")
- def gzdopen(fd: CInt, mode: CString): gzFile
- Annotations
- @name("scalanative_gzdopen")
- def gzeof(file: gzFile): CInt
- Annotations
- @name("scalanative_gzeof")
- def gzerror(file: gzFile, errnum: Ptr[Int]): CString
- Annotations
- @name("scalanative_gzerror")
- def gzflush(file: gzFile, flush: CInt): CInt
- Annotations
- @name("scalanative_gzflush")
- def gzgetc(file: gzFile): CInt
- Annotations
- @name("scalanative_gzgetc")
- def gzgets(file: gzFile, buf: CString, len: CInt): CString
- Annotations
- @name("scalanative_gzgets")
- def gzopen(path: CString, mode: CString): gzFile
- Annotations
- @name("scalanative_gzopen")
- def gzputc(file: gzFile, c: CInt): CInt
- Annotations
- @name("scalanative_gzputc")
- def gzputs(file: gzFile, s: CString): CInt
- Annotations
- @name("scalanative_gzputs")
- def gzread(file: gzFile, buf: voidp, len: CUnsignedInt): CInt
- Annotations
- @name("scalanative_gzread")
- def gzrewind(file: gzFile): CInt
- Annotations
- @name("scalanative_gzrewind")
- def gzseek(file: gzFile, offset: z_off_t, whence: CInt): z_off_t
- Annotations
- @name("scalanative_gzseek")
- def gzsetparams(file: gzFile, level: CInt, strategy: CInt): CInt
- Annotations
- @name("scalanative_gzsetparams")
- def gztell(file: gzFile): z_off_t
- Annotations
- @name("scalanative_gztell")
- def gzungetc(c: CInt, file: gzFile): CInt
- Annotations
- @name("scalanative_gzungetc")
- def gzwrite(file: gzFile, buf: voidpc, len: CUnsignedInt): CInt
- Annotations
- @name("scalanative_gzwrite")
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def inflate(strm: z_streamp, flush: CInt): CInt
- Annotations
- @name("scalanative_inflate")
- def inflateBack(strm: z_streamp, in: in_func, in_desc: Ptr[Byte], out: out_func, out_desc: Ptr[Byte]): CInt
- Annotations
- @name("scalanative_inflateBack")
- def inflateBackEnd(strm: z_streamp): CInt
- Annotations
- @name("scalanative_inflateBackEnd")
- def inflateBackInit(strm: z_streamp, windowBits: CInt, window: Ptr[CUnsignedChar]): CInt
- Annotations
- @name("scalanative_inflateBackInit")
- def inflateCopy(dest: z_streamp, source: z_streamp): CInt
- Annotations
- @name("scalanative_inflateCopy")
- def inflateEnd(strm: z_streamp): CInt
- Annotations
- @name("scalanative_inflateEnd")
- def inflateGetHeader(strm: z_streamp, head: gz_headerp): CInt
- Annotations
- @name("scalanative_inflateGetHeader")
- def inflateInit(strm: z_streamp): CInt
- Annotations
- @name("scalanative_inflateInit")
- def inflateInit2(strm: z_streamp, windowBits: CInt): CInt
- Annotations
- @name("scalanative_inflateInit2")
- def inflateMark(strm: z_streamp): CInt
- Annotations
- @name("scalanative_inflateMark")
- def inflatePrime(strm: z_streamp, bits: CInt, value: CInt): CInt
- Annotations
- @name("scalanative_inflatePrime")
- def inflateReset(strm: z_streamp): CInt
- Annotations
- @name("scalanative_inflateReset")
- def inflateReset2(strm: z_streamp, windowBits: CInt): CInt
- Annotations
- @name("scalanative_inflateReset2")
- def inflateSetDictionary(strm: z_streamp, dictionary: Ptr[Bytef], dictLength: uInt): CInt
- Annotations
- @name("scalanative_inflateSetDictionary")
- def inflateSync(strm: z_streamp): CInt
- Annotations
- @name("scalanative_inflateSync")
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def uncompress(dest: Ptr[Bytef], destLen: Ptr[uLongf], source: Ptr[Bytef], sourceLen: uLong): CInt
- Annotations
- @name("scalanative_uncompress")
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def zlibCompileFlags(): uLong
- Annotations
- @name("scalanative_zlibCompileFlags")
- def zlibVersion(): CString
- Annotations
- @name("scalanative_zlibVersion")