HomeSort by relevance Sort by last modified time
    Searched refs:dex_data (Results 1 - 8 of 8) sorted by null

  /art/libprofile/profile/
profile_compilation_info.cc 398 const DexFileData& dex_data = *dex_data_ptr;
399 uint32_t methods_region_size = GetMethodsRegionSize(dex_data);
401 dex_data.profile_key.size() +
402 sizeof(uint16_t) * dex_data.class_set.size() +
404 dex_data.bitmap_storage.size();
407 sizeof(uint16_t) * dex_data.class_set.size() +
437 const DexFileData& dex_data = *dex_data_ptr;
439 if (dex_data.profile_key.size() >= kMaxDexFileKeyLength) {
444 uint32_t methods_region_size = GetMethodsRegionSize(dex_data);
446 DCHECK_LE(dex_data.profile_key.size(), std::numeric_limits<uint16_t>::max())
    [all...]
profile_compilation_info.h     [all...]
  /cts/hostsidetests/jvmti/base/jni/
redefine.cpp 118 std::vector<unsigned char> dex_data; local
119 if (data.RetrieveRedefinition(name_str, &dex_data)) {
121 if (JVMTI_ERROR_NONE == local_jvmti_env->Allocate(dex_data.size(), &jvmti_dex_data)) {
122 memcpy(jvmti_dex_data, dex_data.data(), dex_data.size());
123 *new_class_data_len = dex_data.size();
168 std::vector<unsigned char> dex_data; local
169 dex_data.resize(env->GetArrayLength(dex_bytes));
171 memcpy(dex_data.data(), redef_bytes, env->GetArrayLength(dex_bytes));
172 data.PushRedefinition(std::move(name_str), std::move(dex_data));
    [all...]
  /art/openjdkjvmti/
ti_class_definition.cc 137 /*out*/std::vector<unsigned char>* dex_data)
141 dex_data->resize(fixed_dex_file->Size());
142 memcpy(dex_data->data(), fixed_dex_file->Begin(), fixed_dex_file->Size());
147 /*out*/std::vector<unsigned char>* dex_data)
158 dex_data->resize(orig_dex_bytes->GetLength());
159 memcpy(dex_data->data(), orig_dex_bytes->GetData(), dex_data->size());
182 DequickenDexFile(dex_file, klass->GetDescriptor(&storage), dex_data);
298 // initial dex_data. We need to copy it into another buffer to keep it around if we have a
333 auto get_original = [&](/*out*/std::vector<unsigned char>* dex_data)
    [all...]
transform.cc 262 // determining if an access to the dex_data is from generated code or not.
267 art::ArrayRef<const unsigned char> dex_data = def->GetDexData();
275 static_cast<jint>(dex_data.size()),
276 dex_data.data(),
  /art/compiler/optimizing/
optimizing_unit_test.h 128 const uint8_t* dex_data = reinterpret_cast<uint8_t*>(allocator->Alloc(kDexDataSize)); local
133 dex_data,
  /art/runtime/native/
dalvik_system_DexFile.cc 265 MemMap dex_data = AllocateDexMemoryMap(env, start, end); local
266 if (!dex_data.IsValid()) {
280 memcpy(dex_data.Begin(), base_address + start, length);
283 jbyte* destination = reinterpret_cast<jbyte*>(dex_data.Begin());
287 dex_mem_maps.push_back(std::move(dex_data));
    [all...]
  /art/runtime/
oat_file.cc 1892 const uint8_t* dex_data = dex_file_pointer_; local
    [all...]

Completed in 256 milliseconds