Home | History | Annotate | Download | only in openjdkjvmti

Lines Matching refs:mem_ptr

108   static jvmtiError Allocate(jvmtiEnv* env, jlong size, unsigned char** mem_ptr) {
110 ENSURE_NON_NULL(mem_ptr);
114 *mem_ptr = nullptr;
117 *mem_ptr = static_cast<unsigned char*>(malloc(size));
118 return (*mem_ptr != nullptr) ? OK : ERR(OUT_OF_MEMORY);