Lines Matching defs:arg

58  *	@arg:	pointer to the private state for the compressor.
60 static void z_comp_free(void *arg)
62 struct ppp_deflate_state *state = (struct ppp_deflate_state *) arg;
124 * @arg: pointer to the private state for the compressor
137 static int z_comp_init(void *arg, unsigned char *options, int opt_len,
140 struct ppp_deflate_state *state = (struct ppp_deflate_state *) arg;
161 * @arg: pointer to private state for the compressor.
166 static void z_comp_reset(void *arg)
168 struct ppp_deflate_state *state = (struct ppp_deflate_state *) arg;
176 * @arg: pointer to private state for the compressor
185 static int z_compress(void *arg, unsigned char *rptr, unsigned char *obuf,
188 struct ppp_deflate_state *state = (struct ppp_deflate_state *) arg;
263 * @arg: pointer to private space for the (de)compressor
266 static void z_comp_stats(void *arg, struct compstat *stats)
268 struct ppp_deflate_state *state = (struct ppp_deflate_state *) arg;
275 * @arg: pointer to private space for the decompressor.
277 static void z_decomp_free(void *arg)
279 struct ppp_deflate_state *state = (struct ppp_deflate_state *) arg;
338 * @arg: pointer to the private state for the decompressor
352 static int z_decomp_init(void *arg, unsigned char *options, int opt_len,
355 struct ppp_deflate_state *state = (struct ppp_deflate_state *) arg;
377 * @arg: pointer to private state for the decompressor.
382 static void z_decomp_reset(void *arg)
384 struct ppp_deflate_state *state = (struct ppp_deflate_state *) arg;
392 * @arg: pointer to private state for the decompressor
411 static int z_decompress(void *arg, unsigned char *ibuf, int isize,
414 struct ppp_deflate_state *state = (struct ppp_deflate_state *) arg;
513 * @arg: pointer to private state for the decompressor
517 static void z_incomp(void *arg, unsigned char *ibuf, int icnt)
519 struct ppp_deflate_state *state = (struct ppp_deflate_state *) arg;