< prev index next > src/hotspot/share/utilities/zipLibrary.hpp
Print this page
public:
static void** open(const char* name, char** pmsg);
static void close(jzfile* zip);
static jzentry* find_entry(jzfile* zip, const char* name, jint* sizeP, jint* nameLen);
static jboolean read_entry(jzfile* zip, jzentry* entry, unsigned char* buf, char* namebuf);
+ static void free_entry(jzfile* zip, jzentry* entry);
static jint crc32(jint crc, const jbyte* buf, jint len);
static const char* init_params(size_t block_size, size_t* needed_out_size, size_t* needed_tmp_size, int level);
static size_t compress(char* in, size_t in_size, char* out, size_t out_size, char* tmp, size_t tmp_size, int level, char* buf, const char** pmsg);
static void* handle();
};
< prev index next >