hotspot/src/share/vm/prims/jvmtiClassFileReconstituter.hpp
void copy_cpool_bytes(unsigned char *cpool_bytes) {
{- -------------------------------------------
(1) constantPoolOopDesc::copy_cpool_bytes() を呼び出すだけ.
(なお cpool_bytes 引数が NULL の場合は, 何もせずにリターンするだけ)
---------------------------------------- -}
if (cpool_bytes == NULL) {
assert(cpool_bytes != NULL, "cpool_bytes pointer must not be NULL");
return;
}
cpool()->copy_cpool_bytes(cpool_size(), _symmap, cpool_bytes);
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.