diff options
Diffstat (limited to 'ANDROID_3.4.5/include/linux/decompress')
-rw-r--r-- | ANDROID_3.4.5/include/linux/decompress/bunzip2.h | 10 | ||||
-rw-r--r-- | ANDROID_3.4.5/include/linux/decompress/generic.h | 39 | ||||
-rw-r--r-- | ANDROID_3.4.5/include/linux/decompress/inflate.h | 10 | ||||
-rw-r--r-- | ANDROID_3.4.5/include/linux/decompress/mm.h | 93 | ||||
-rwxr-xr-x | ANDROID_3.4.5/include/linux/decompress/unlz4.h | 10 | ||||
-rw-r--r-- | ANDROID_3.4.5/include/linux/decompress/unlzma.h | 12 | ||||
-rw-r--r-- | ANDROID_3.4.5/include/linux/decompress/unlzo.h | 10 | ||||
-rw-r--r-- | ANDROID_3.4.5/include/linux/decompress/unxz.h | 19 |
8 files changed, 0 insertions, 203 deletions
diff --git a/ANDROID_3.4.5/include/linux/decompress/bunzip2.h b/ANDROID_3.4.5/include/linux/decompress/bunzip2.h deleted file mode 100644 index 11527213..00000000 --- a/ANDROID_3.4.5/include/linux/decompress/bunzip2.h +++ /dev/null @@ -1,10 +0,0 @@ -#ifndef DECOMPRESS_BUNZIP2_H -#define DECOMPRESS_BUNZIP2_H - -int bunzip2(unsigned char *inbuf, int len, - int(*fill)(void*, unsigned int), - int(*flush)(void*, unsigned int), - unsigned char *output, - int *pos, - void(*error)(char *x)); -#endif diff --git a/ANDROID_3.4.5/include/linux/decompress/generic.h b/ANDROID_3.4.5/include/linux/decompress/generic.h deleted file mode 100644 index 0c7111a5..00000000 --- a/ANDROID_3.4.5/include/linux/decompress/generic.h +++ /dev/null @@ -1,39 +0,0 @@ -#ifndef DECOMPRESS_GENERIC_H -#define DECOMPRESS_GENERIC_H - -typedef int (*decompress_fn) (unsigned char *inbuf, int len, - int(*fill)(void*, unsigned int), - int(*flush)(void*, unsigned int), - unsigned char *outbuf, - int *posp, - void(*error)(char *x)); - -/* inbuf - input buffer - *len - len of pre-read data in inbuf - *fill - function to fill inbuf when empty - *flush - function to write out outbuf - *outbuf - output buffer - *posp - if non-null, input position (number of bytes read) will be - * returned here - * - *If len != 0, inbuf should contain all the necessary input data, and fill - *should be NULL - *If len = 0, inbuf can be NULL, in which case the decompressor will allocate - *the input buffer. If inbuf != NULL it must be at least XXX_IOBUF_SIZE bytes. - *fill will be called (repeatedly...) to read data, at most XXX_IOBUF_SIZE - *bytes should be read per call. Replace XXX with the appropriate decompressor - *name, i.e. LZMA_IOBUF_SIZE. - * - *If flush = NULL, outbuf must be large enough to buffer all the expected - *output. If flush != NULL, the output buffer will be allocated by the - *decompressor (outbuf = NULL), and the flush function will be called to - *flush the output buffer at the appropriate time (decompressor and stream - *dependent). - */ - - -/* Utility routine to detect the decompression method */ -decompress_fn decompress_method(const unsigned char *inbuf, int len, - const char **name); - -#endif diff --git a/ANDROID_3.4.5/include/linux/decompress/inflate.h b/ANDROID_3.4.5/include/linux/decompress/inflate.h deleted file mode 100644 index 8c0aef1b..00000000 --- a/ANDROID_3.4.5/include/linux/decompress/inflate.h +++ /dev/null @@ -1,10 +0,0 @@ -#ifndef INFLATE_H -#define INFLATE_H - -int gunzip(unsigned char *inbuf, int len, - int(*fill)(void*, unsigned int), - int(*flush)(void*, unsigned int), - unsigned char *output, - int *pos, - void(*error_fn)(char *x)); -#endif diff --git a/ANDROID_3.4.5/include/linux/decompress/mm.h b/ANDROID_3.4.5/include/linux/decompress/mm.h deleted file mode 100644 index 7925bf0e..00000000 --- a/ANDROID_3.4.5/include/linux/decompress/mm.h +++ /dev/null @@ -1,93 +0,0 @@ -/* - * linux/compr_mm.h - * - * Memory management for pre-boot and ramdisk uncompressors - * - * Authors: Alain Knaff <alain@knaff.lu> - * - */ - -#ifndef DECOMPR_MM_H -#define DECOMPR_MM_H - -#ifdef STATIC - -/* Code active when included from pre-boot environment: */ - -/* - * Some architectures want to ensure there is no local data in their - * pre-boot environment, so that data can arbitrarily relocated (via - * GOT references). This is achieved by defining STATIC_RW_DATA to - * be null. - */ -#ifndef STATIC_RW_DATA -#define STATIC_RW_DATA static -#endif - -/* A trivial malloc implementation, adapted from - * malloc by Hannu Savolainen 1993 and Matthias Urlichs 1994 - */ -STATIC_RW_DATA unsigned long malloc_ptr; -STATIC_RW_DATA int malloc_count; - -static void *malloc(int size) -{ - void *p; - - if (size < 0) - return NULL; - if (!malloc_ptr) - malloc_ptr = free_mem_ptr; - - malloc_ptr = (malloc_ptr + 3) & ~3; /* Align */ - - p = (void *)malloc_ptr; - malloc_ptr += size; - - if (free_mem_end_ptr && malloc_ptr >= free_mem_end_ptr) - return NULL; - - malloc_count++; - return p; -} - -static void free(void *where) -{ - malloc_count--; - if (!malloc_count) - malloc_ptr = free_mem_ptr; -} - -#define large_malloc(a) malloc(a) -#define large_free(a) free(a) - -#define INIT - -#else /* STATIC */ - -/* Code active when compiled standalone for use when loading ramdisk: */ - -#include <linux/kernel.h> -#include <linux/fs.h> -#include <linux/string.h> -#include <linux/slab.h> -#include <linux/vmalloc.h> - -/* Use defines rather than static inline in order to avoid spurious - * warnings when not needed (indeed large_malloc / large_free are not - * needed by inflate */ - -#define malloc(a) kmalloc(a, GFP_KERNEL) -#define free(a) kfree(a) - -#define large_malloc(a) vmalloc(a) -#define large_free(a) vfree(a) - -#define INIT __init -#define STATIC - -#include <linux/init.h> - -#endif /* STATIC */ - -#endif /* DECOMPR_MM_H */ diff --git a/ANDROID_3.4.5/include/linux/decompress/unlz4.h b/ANDROID_3.4.5/include/linux/decompress/unlz4.h deleted file mode 100755 index d5b68bf3..00000000 --- a/ANDROID_3.4.5/include/linux/decompress/unlz4.h +++ /dev/null @@ -1,10 +0,0 @@ -#ifndef DECOMPRESS_UNLZ4_H -#define DECOMPRESS_UNLZ4_H - -int unlz4(unsigned char *inbuf, int len, - int(*fill)(void*, unsigned int), - int(*flush)(void*, unsigned int), - unsigned char *output, - int *pos, - void(*error)(char *x)); -#endif diff --git a/ANDROID_3.4.5/include/linux/decompress/unlzma.h b/ANDROID_3.4.5/include/linux/decompress/unlzma.h deleted file mode 100644 index 7796538f..00000000 --- a/ANDROID_3.4.5/include/linux/decompress/unlzma.h +++ /dev/null @@ -1,12 +0,0 @@ -#ifndef DECOMPRESS_UNLZMA_H -#define DECOMPRESS_UNLZMA_H - -int unlzma(unsigned char *, int, - int(*fill)(void*, unsigned int), - int(*flush)(void*, unsigned int), - unsigned char *output, - int *posp, - void(*error)(char *x) - ); - -#endif diff --git a/ANDROID_3.4.5/include/linux/decompress/unlzo.h b/ANDROID_3.4.5/include/linux/decompress/unlzo.h deleted file mode 100644 index 98722975..00000000 --- a/ANDROID_3.4.5/include/linux/decompress/unlzo.h +++ /dev/null @@ -1,10 +0,0 @@ -#ifndef DECOMPRESS_UNLZO_H -#define DECOMPRESS_UNLZO_H - -int unlzo(unsigned char *inbuf, int len, - int(*fill)(void*, unsigned int), - int(*flush)(void*, unsigned int), - unsigned char *output, - int *pos, - void(*error)(char *x)); -#endif diff --git a/ANDROID_3.4.5/include/linux/decompress/unxz.h b/ANDROID_3.4.5/include/linux/decompress/unxz.h deleted file mode 100644 index 41728fc6..00000000 --- a/ANDROID_3.4.5/include/linux/decompress/unxz.h +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Wrapper for decompressing XZ-compressed kernel, initramfs, and initrd - * - * Author: Lasse Collin <lasse.collin@tukaani.org> - * - * This file has been put into the public domain. - * You can do whatever you want with this file. - */ - -#ifndef DECOMPRESS_UNXZ_H -#define DECOMPRESS_UNXZ_H - -int unxz(unsigned char *in, int in_size, - int (*fill)(void *dest, unsigned int size), - int (*flush)(void *src, unsigned int size), - unsigned char *out, int *in_used, - void (*error)(char *x)); - -#endif |