Top


定義場所(file name)

hotspot/src/share/vm/prims/jvmtiClassFileReconstituter.hpp

名前(function name)

  void copy_cpool_bytes(unsigned char *cpool_bytes) {

本体部(body)

  {- -------------------------------------------
  (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.