Home
last modified time | relevance | path

Searched refs:handle (Results 51 – 75 of 79) sorted by relevance

1234

/art/test/980-redefine-object/
Dinfo.txt6 This also (indirectly) tests that we correctly handle reading annotations on
/art/test/dexdump/
Dconst-method-handle.txt1 Processing 'const-method-handle.dex'...
2 Opened 'const-method-handle.dex', DEX version '039'
247 000518: fe00 0000 |0000: const-method-handle v0, method_handle@0000
272 Method handle #0:
Dinvoke-polymorphic.txt101 0x0007 - 0x001e reg=0 handle Ljava/lang/invoke/MethodHandle;
Dinvoke-custom.txt5344 Method handle #0:
5348 Method handle #1:
5352 Method handle #2:
5356 Method handle #3:
5360 Method handle #4:
5364 Method handle #5:
5368 Method handle #6:
5372 Method handle #7:
5376 Method handle #8:
5380 Method handle #9:
[all …]
/art/compiler/optimizing/
Dreference_type_propagation.cc537 ReferenceTypeInfo::TypeHandle handle = GetHandleCache()->NewHandle(klass); in SetClassAsTypeInfo() local
538 is_exact = is_exact || handle->CannotBeAssignedFromOtherTypes(); in SetClassAsTypeInfo()
539 instr->SetReferenceTypeInfo(ReferenceTypeInfo::Create(handle, is_exact)); in SetClassAsTypeInfo()
832 Handle<mirror::Class> handle = parent_rti.GetTypeHandle(); in UpdateArrayGet() local
833 if (handle->IsObjectArrayClass() && IsAdmissible(handle->GetComponentType())) { in UpdateArrayGet()
835 GetHandleCache()->NewHandle(handle->GetComponentType()); in UpdateArrayGet()
Dcode_generator_x86.h478 Handle<mirror::String> handle);
481 Handle<mirror::Class> handle);
Dcode_generator_x86_64.h470 Handle<mirror::String> handle);
473 Handle<mirror::Class> handle);
Dinliner.cc1030 Handle<mirror::Class> handle = graph_->GetHandleCache()->NewHandle(classes->Get(i)); in TryInlinePolymorphicCall() local
1032 handle, resolved_method, invoke_instruction, pointer_size); in TryInlinePolymorphicCall()
1045 dex::TypeIndex class_index = FindClassIndexIn(handle.Get(), caller_compilation_unit_); in TryInlinePolymorphicCall()
1051 ReferenceTypeInfo::Create(handle, /* is_exact= */ true), in TryInlinePolymorphicCall()
1071 handle, in TryInlinePolymorphicCall()
Dcode_generator_arm_vixl.h633 Handle<mirror::String> handle);
636 Handle<mirror::Class> handle);
Dcode_generator_arm64.h768 Handle<mirror::String> handle);
771 Handle<mirror::Class> handle);
Dcode_generator_arm64.cc4733 const DexFile& dex_file, dex::StringIndex string_index, Handle<mirror::String> handle) { in DeduplicateJitStringLiteral() argument
4734 ReserveJitStringRoot(StringReference(&dex_file, string_index), handle); in DeduplicateJitStringLiteral()
4741 const DexFile& dex_file, dex::TypeIndex type_index, Handle<mirror::Class> handle) { in DeduplicateJitClassLiteral() argument
4742 ReserveJitClassRoot(TypeReference(&dex_file, type_index), handle); in DeduplicateJitClassLiteral()
/art/test/955-methodhandles-smali/smali/
DMain.smali20 # Returns a handle to a virtual method on |defc| named name with type |type| using
37 # Returns a handle to a static method on |defc| named name with type |type| using
52 # Returns a method handle to String java.lang.String.concat(String);
69 # Returns a method handle to boolean java.lang.Long.compareTo(java.lang.Long other).
92 # Returns a method handle to static String java.lang.String.valueOf(Object);
116 # Returns a method handle to static String java.lang.String.valueOf(String);
/art/test/957-methodhandle-transforms/src/
DMain.java48 MethodHandle handle = MethodHandles.throwException(String.class, in testThrowException() local
51 if (handle.type().returnType() != String.class) { in testThrowException()
52 fail("Unexpected return type for handle: " + handle + in testThrowException()
53 " [ " + handle.type() + "]"); in testThrowException()
58 handle.invoke(iae); in testThrowException()
1235 MethodHandle handle = MethodHandles.lookup().findStatic( in testInvokeWithArguments() local
1238 Object ret = handle.invokeWithArguments(new Object[] { "a", "b", "c"}); in testInvokeWithArguments()
1240 handle.invokeWithArguments(new String[] { "a", "b", "c" }); in testInvokeWithArguments()
1245 handle.invokeWithArguments(new Object[] { "a", "b" }); in testInvokeWithArguments()
/art/tools/ahat/src/main/com/android/ahat/
DSiteHandler.java41 public void handle(Doc doc, Query query) throws IOException { in handle() method in SiteHandler
DObjectsHandler.java63 public void handle(Doc doc, Query query) throws IOException { in handle() method in ObjectsHandler
DObjectHandler.java56 public void handle(Doc doc, Query query) throws IOException { in handle() method in ObjectHandler
/art/dt_fd_forward/
DREADME.md6 It allows one to handle and proxy JDWP traffic by supplying the implementation
/art/runtime/jni/
Djava_vm_ext.cc75 SharedLibrary(JNIEnv* env, Thread* self, const std::string& path, void* handle, in SharedLibrary() argument
78 handle_(handle), in SharedLibrary()
1014 void* handle = android::OpenNativeLibrary( in LoadNativeLibrary() local
1023 VLOG(jni) << "[Call to dlopen(\"" << path << "\", RTLD_NOW) returned " << handle << "]"; in LoadNativeLibrary()
1025 if (handle == nullptr) { in LoadNativeLibrary()
1046 handle, in LoadNativeLibrary()
/art/tools/checker/match/
Dfile.py277 def handle(self, statement): member in ExecutionState
325 state.handle(statement)
/art/libnativeloader/
Dnative_loader_test.cpp58 virtual int dlclose(void* handle) = 0;
159 int dlclose(void* handle) { in dlclose() argument
160 return mock->dlclose(handle); in dlclose()
/art/openjdkjvm/
DOpenjdkJvm.cc200 JNIEXPORT void* JVM_FindLibraryEntry(void* handle, const char* name) { in JVM_FindLibraryEntry() argument
201 return dlsym(handle, name); in JVM_FindLibraryEntry()
/art/test/1975-hello-structural-transformation/
Dexpected.txt96 Writing (ID: 22) class art.Test1975 to CUR_CLASS with old method handle
/art/runtime/
Dthread.cc3110 MutableHandle<mirror::Object> handle(hs.NewHandle<mirror::Object>(nullptr)); in CreateAnnotatedStackTrace() local
3114 handle.Assign(h_aste_class->AllocObject(soa.Self())); in CreateAnnotatedStackTrace()
3115 if (handle == nullptr) { in CreateAnnotatedStackTrace()
3122 handle.Get(), soa.Decode<mirror::Object>(dumper.stack_trace_elements_[i].get())); in CreateAnnotatedStackTrace()
3142 held_locks_field->SetObject<false>(handle.Get(), handle2.Get()); in CreateAnnotatedStackTrace()
3149 handle.Get(), soa.Decode<mirror::Object>(dumper.block_jobject_.get())); in CreateAnnotatedStackTrace()
3153 ScopedLocalRef<jobject> elem(soa.Env(), soa.AddLocalReference<jobject>(handle.Get())); in CreateAnnotatedStackTrace()
DAndroid.bp129 "handle.cc",
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc1521 uintptr_t handle = PushHandle(ptr); in AdvanceHandleScope() local
1524 PushGpr(handle); in AdvanceHandleScope()
1527 PushStack(handle); in AdvanceHandleScope()

1234