Home
last modified time | relevance | path

Searched defs:z_stream_s (Results 1 – 2 of 2) sorted by relevance

/development/ndk/platforms/android-9/include/linux/
Dzlib.h19 typedef struct z_stream_s { struct
20 Byte *next_in;
21 uInt avail_in;
22 uLong total_in;
24 Byte *next_out;
25 uInt avail_out;
26 uLong total_out;
28 char *msg;
29 struct internal_state *state;
31 void *workspace;
[all …]
/development/ndk/platforms/android-9/include/
Dzlib.h82 typedef struct z_stream_s { struct
83 Bytef *next_in; /* next input byte */
84 uInt avail_in; /* number of bytes available at next_in */
85 uLong total_in; /* total nb of input bytes read so far */
87 Bytef *next_out; /* next output byte should be put there */
88 uInt avail_out; /* remaining free space at next_out */
89 uLong total_out; /* total nb of bytes output so far */
91 char *msg; /* last error message, NULL if no error */
92 struct internal_state FAR *state; /* not visible by applications */
94 alloc_func zalloc; /* used to allocate the internal state */
[all …]