Lines Matching refs:orig_dex

153     art::Handle<art::mirror::Object> orig_dex(hs.NewHandle(ext->GetOriginalDexFile()));  in GetDexDataForRetransformation()  local
154 if (!orig_dex.IsNull()) { in GetDexDataForRetransformation()
155 if (orig_dex->IsArrayInstance()) { in GetDexDataForRetransformation()
156 DCHECK(orig_dex->GetClass()->GetComponentType()->IsPrimitiveByte()); in GetDexDataForRetransformation()
157 art::Handle<art::mirror::ByteArray> orig_dex_bytes(hs.NewHandle(orig_dex->AsByteArray())); in GetDexDataForRetransformation()
161 } else if (orig_dex->IsDexCache()) { in GetDexDataForRetransformation()
162 dex_file = orig_dex->AsDexCache()->GetDexFile(); in GetDexDataForRetransformation()
164 DCHECK(orig_dex->GetClass()->DescriptorEquals("Ljava/lang/Long;")) in GetDexDataForRetransformation()
166 << orig_dex->GetClass()->PrettyClass(); in GetDexDataForRetransformation()
170 if (!art::UnboxPrimitiveForResult(orig_dex.Get(), prim_long_class, &val)) { in GetDexDataForRetransformation()
194 art::ObjPtr<art::mirror::Object> orig_dex(ext->GetOriginalDexFile()); in DexNeedsDequickening() local
195 if (orig_dex.IsNull()) { in DexNeedsDequickening()
199 } else if (!orig_dex->IsArrayInstance()) { in DexNeedsDequickening()
202 DCHECK(orig_dex->IsDexCache() || orig_dex->GetClass()->DescriptorEquals("Ljava/lang/Long;")); in DexNeedsDequickening()
208 DCHECK(orig_dex->GetClass()->GetComponentType()->IsPrimitiveByte()); in DexNeedsDequickening()
221 art::ObjPtr<art::mirror::Object> orig_dex(ext->GetOriginalDexFile()); in GetQuickenedDexFile() local
222 DCHECK(!orig_dex->IsArrayInstance()); in GetQuickenedDexFile()
223 if (orig_dex->IsDexCache()) { in GetQuickenedDexFile()
224 return orig_dex->AsDexCache()->GetDexFile(); in GetQuickenedDexFile()
227 DCHECK(orig_dex->GetClass()->DescriptorEquals("Ljava/lang/Long;")) in GetQuickenedDexFile()
229 << orig_dex->GetClass()->PrettyClass(); in GetQuickenedDexFile()
233 if (!art::UnboxPrimitiveForResult(orig_dex.Ptr(), prim_long_class, &val)) { in GetQuickenedDexFile()
317 art::ObjPtr<art::mirror::ByteArray> orig_dex( in Init() local
319 dex_data_memory_.resize(orig_dex->GetLength()); in Init()
320 memcpy(dex_data_memory_.data(), orig_dex->GetData(), dex_data_memory_.size()); in Init()