< prev index next >

src/java.base/share/native/libjimage/jimage.hpp

Print this page
rev 15130 : imported patch 8162343

*** 99,109 **** * utf-8, zero byte terminated. * * Ex. * const char* package = (*JImagePackageToModule)(image, "java/lang"); * tty->print_cr(package); ! * —> java.base */ extern "C" const char * JIMAGE_PackageToModule(JImageFile* jimage, const char* package_name); typedef const char* (*JImagePackageToModule_t)(JImageFile* jimage, const char* package_name); --- 99,109 ---- * utf-8, zero byte terminated. * * Ex. * const char* package = (*JImagePackageToModule)(image, "java/lang"); * tty->print_cr(package); ! * -> java.base */ extern "C" const char * JIMAGE_PackageToModule(JImageFile* jimage, const char* package_name); typedef const char* (*JImagePackageToModule_t)(JImageFile* jimage, const char* package_name);
*** 131,141 **** const char* module_name, const char* version, const char* name, jlong* size); /* ! * JImageGetResource - Given an open image file (see JImageOpen), a resource’s * location information (see JImageFindResource), a buffer of appropriate * size and the size, retrieve the bytes associated with the * resource. If the size is less than the resource size then the read is truncated. * If the size is greater than the resource size then the remainder of the buffer * is zero filled. The function will return the actual size of the resource. --- 131,141 ---- const char* module_name, const char* version, const char* name, jlong* size); /* ! * JImageGetResource - Given an open image file (see JImageOpen), a resource's * location information (see JImageFindResource), a buffer of appropriate * size and the size, retrieve the bytes associated with the * resource. If the size is less than the resource size then the read is truncated. * If the size is greater than the resource size then the remainder of the buffer * is zero filled. The function will return the actual size of the resource.
*** 163,173 **** * required. All strings are utf-8, zero byte terminated.file. * * Ex. * bool ctw_visitor(JImageFile* jimage, const char* module_name, const char* version, * const char* package, const char* name, const char* extension, void* arg) { ! * if (strcmp(extension, “class”) == 0) { * char path[JIMAGE_MAX_PATH]; * Thread* THREAD = Thread::current(); * jio_snprintf(path, JIMAGE_MAX_PATH - 1, "/%s/%s", package, name); * ClassLoader::compile_the_world_in(path, (Handle)arg, THREAD); * return !HAS_PENDING_EXCEPTION; --- 163,173 ---- * required. All strings are utf-8, zero byte terminated.file. * * Ex. * bool ctw_visitor(JImageFile* jimage, const char* module_name, const char* version, * const char* package, const char* name, const char* extension, void* arg) { ! * if (strcmp(extension, "class") == 0) { * char path[JIMAGE_MAX_PATH]; * Thread* THREAD = Thread::current(); * jio_snprintf(path, JIMAGE_MAX_PATH - 1, "/%s/%s", package, name); * ClassLoader::compile_the_world_in(path, (Handle)arg, THREAD); * return !HAS_PENDING_EXCEPTION;
< prev index next >