Searched refs:Allocate (Results 1 - 25 of 37) sorted by relevance

12

/art/openjdkjvmti/
H A Dti_allocator.h48 static jvmtiError Allocate(jvmtiEnv* env, jlong size, unsigned char** mem_ptr);
H A Dti_allocator.cc59 jvmtiError AllocUtil::Allocate(jvmtiEnv* env ATTRIBUTE_UNUSED, function in class:openjdkjvmti::AllocUtil
H A Dti_jni.cc78 // Allocate memory and copy the table.
80 jvmtiError data_result = env->Allocate(sizeof(JNINativeInterface), &data);
H A Dart_jvmti.h193 *error = env->Allocate(sizeof(T), &tmp);
206 *error = env->Allocate(sizeof(typename std::remove_extent<T>::type) * count, &tmp);
219 jvmtiError res = env->Allocate(len, dest);
H A Djvmti_allocator.h121 jvmtiError alloc_error = env_->Allocate(n * sizeof(T), &result);
H A Dti_class.cc140 // TODO We should everything use the actual jvmtiEnv->Allocate/Deallocate functions once we can
223 // Allocate the byte array to store the dex file bytes in.
566 jvmtiError allocError = env->Allocate(array_size * sizeof(jfieldID), &out_ptr);
611 jvmtiError allocError = env->Allocate(array_size * sizeof(jmethodID), &out_ptr);
661 jvmtiError allocError = env->Allocate(array_size * sizeof(jclass), &out_ptr);
890 res = env->Allocate(sizeof(char*) * descriptors.size(),
1013 jvmtiError data_result = env->Allocate(ctc.count * sizeof(jclass), &data);
H A Dti_stack.cc437 jvmtiError alloc_result = env->Allocate(chunk_size, &chunk_data);
600 jvmtiError alloc_result = env->Allocate(chunk_size, &chunk_data);
969 err = env->Allocate(nbytes, reinterpret_cast<unsigned char**>(info_ptr));
1003 err = env->Allocate(nbytes, reinterpret_cast<unsigned char**>(owned_monitors_ptr));
H A Dti_threadgroup.cc76 jvmtiError result = env->Allocate(sizeof(jthreadGroup), &data);
/art/test/909-attach-agent/
H A Dattach.cc70 CHECK_CALL_SUCCESS(env->Allocate(8, &local_data));
/art/test/1900-track-alloc/
H A Dalloc.cc61 reinterpret_cast<jvmtiEnv*>(jvmti_env_ptr)->Allocate(size, &res));
127 jvmti_env->Allocate(sizeof(AllocTrackingData),
/art/test/ti-agent/
H A Dstack_trace_helper.cc57 env, jvmti_env, jvmti_env->Allocate(depth * sizeof(jvmtiFrameInfo),
H A Dframe_pop_helper.cc66 jvmti_env->Allocate(sizeof(FramePopData),
H A Dbreakpoint_helper.cc154 jvmti_env->Allocate(sizeof(BreakpointData),
H A Dexceptions_helper.cc118 jvmti_env->Allocate(sizeof(ExceptionsData),
H A Dmonitors_helper.cc153 jvmti_env->Allocate(sizeof(MonitorsData),
/art/tools/wrapagentproperties/
H A Dwrapagentproperties.cc145 jvmtiError res = env->Allocate(val.size() + 1, reinterpret_cast<unsigned char**>(out));
175 res = env->Allocate(all_props.size() * sizeof(char*),
183 res = env->Allocate(p.size() + 1, reinterpret_cast<unsigned char**>(&out_prop_ptr[i]));
211 if (JVMTI_ERROR_NONE != real_env->Allocate(sizeof(ExtraJvmtiInterface),
/art/test/1934-jvmti-signal-thread/
H A Dsignal_threads.cc48 jvmti_env->Allocate(sizeof(NativeMonitor),
/art/test/1946-list-descriptors/
H A Ddescriptors.cc108 jvmti_env->Allocate(sizeof(DescriptorData),
/art/compiler/optimizing/
H A Doptimizing_cfi_test.cc138 virtual uint8_t* Allocate(size_t size) { function in class:art::OptimizingCFITest::InternalCodeAllocator
H A Dcodegen_test_utils.h191 virtual uint8_t* Allocate(size_t size) { function in class:art::InternalCodeAllocator
/art/test/1919-vminit-thread-start-timing/
H A Dvminit.cc131 CheckJvmtiError(env, env->Allocate(sizeof(EventList), reinterpret_cast<unsigned char**>(&list)));
/art/test/1940-ddms-ext/
H A Dddm_ext.cc140 jvmti_env->Allocate(sizeof(DdmsTrackingData),
/art/test/901-hello-ti-agent/
H A Dbasics.cc108 CHECK_CALL_SUCCESS(env->Allocate(8, &local_data));
/art/test/924-threads/
H A Dthreads.cc48 jvmti_env->Allocate(sizeof(WaiterStruct),
/art/test/ti-stress/
H A Dstress.cc90 virtual void* Allocate(size_t size) { function in struct:art::Allocator
92 if (JVMTI_ERROR_NONE != jvmti_env_->Allocate(size, &out)) {
780 if (JVMTI_ERROR_NONE != jvmti->Allocate(sizeof(StressData),

Completed in 864 milliseconds

12