Searched refs:func (Results 1 - 25 of 26) sorted by relevance

12

/art/test/065-mismatched-implements/src/
H A DDefs.java18 public void func(); method in interface:Defs
H A DBase.java18 public void func() { method in class:Base
/art/test/066-mismatched-super/src2/
H A DDefs.java18 public void func(); method in interface:Defs
/art/test/065-mismatched-implements/src2/
H A DDefs.java18 public void func() { method in class:Defs
/art/test/066-mismatched-super/src/
H A DDefs.java18 public void func() { method in class:Defs
/art/runtime/interpreter/mterp/arm64/
H A Dop_packed_switch.S1 %default { "func":"MterpDoPackedSwitch" }
18 bl $func // w0<- code-unit branch offset
/art/runtime/interpreter/mterp/x86_64/
H A Dop_packed_switch.S1 %default { "func":"MterpDoPackedSwitch" }
15 call SYMBOL($func)
/art/runtime/interpreter/mterp/mips64/
H A Dop_packed_switch.S1 %default { "func":"MterpDoPackedSwitch" }
12 .extern $func
19 jal $func # v0 <- code-unit branch offset
/art/runtime/interpreter/mterp/arm/
H A Dop_packed_switch.S1 %default { "func":"MterpDoPackedSwitch" }
18 bl $func @ r0<- code-unit branch offset
/art/runtime/interpreter/mterp/mips/
H A Dop_packed_switch.S1 %default { "func":"MterpDoPackedSwitch" }
18 JAL($func) # a0 <- code-unit branch offset
/art/runtime/interpreter/mterp/x86/
H A Dop_packed_switch.S1 %default { "func":"MterpDoPackedSwitch" }
17 call SYMBOL($func)
/art/test/utils/python/
H A Dgenerate_java_main.py159 for f in sorted(self.funcs, key=lambda a: (a.func, a.farg)):
187 def __init__(self, func, farg, invoke):
191 self.func = func
199 return "Test_Func_{}_{}_{}".format(self.func, self.farg, self.invoke)
208 callfunc=self.func)
/art/openjdkjvmti/
H A Dti_extension.cc76 auto add_extension = [&](jvmtiExtensionFunction func,
84 func_info.func = func;
H A Devents-inl.h298 impl::EventHandlerFunc<kEvent> func(env);
299 ExecuteCallback<kEvent>(func, jnienv, args...);
313 impl::EventHandlerFunc<kEvent> func(env);
314 ExecuteCallback<kEvent>(func, args...);
/art/test/1900-track-alloc/
H A Dalloc.cc141 data->get_global_state = reinterpret_cast<GetGlobalState>(cur_info->func);
/art/test/1946-list-descriptors/
H A Ddescriptors.cc122 data->get_descriptor_list = reinterpret_cast<GetDescriptorList>(cur_info->func);
/art/test/1940-ddms-ext/
H A Dddm_ext.cc159 data->send_ddm_chunk = reinterpret_cast<DdmHandleChunk>(cur_info->func);
/art/runtime/interpreter/mterp/
H A Dmterp.cc767 return_type (ArtField::*func)(ObjPtr<mirror::Object>))
777 res = (f->*func)(obj);
856 void (ArtField::*func)(ObjPtr<mirror::Object>, field_type val))
863 (f->*func)(obj, new_value);
/art/test/913-heaps/
H A Dheaps.cc895 gGetObjectHeapIdFn = reinterpret_cast<GetObjectHeapId>(extensions[i].func);
917 gGetHeapNameFn = reinterpret_cast<GetHeapName>(extensions[i].func);
937 gIterateThroughHeapExt = reinterpret_cast<IterateThroughHeapExt>(extensions[i].func);
/art/test/971-iface-super/util-src/
H A Dgenerate_smali.py446 {func}
619 func = funcs,
/art/compiler/jni/
H A Djni_compiler_test.cc618 #define JNI_CRITICAL_WRAPPER(func) jni_remove_extra_parameters<decltype(func), (func)>::apply
621 // -- This also has the benefit of genering a compile time error if the 'func' doesn't properly
623 #define CURRENT_JNI_WRAPPER(func) \
625 ? reinterpret_cast<void*>(&JNI_CRITICAL_WRAPPER(MAKE_JNI_TEST_DECORATOR(func))) \
626 : reinterpret_cast<void*>(&MAKE_JNI_TEST_DECORATOR(func)))
630 #define NORMAL_JNI_ONLY_NOWRAP(func) \
631 ({ ASSERT_TRUE(IsCurrentJniNormal()); reinterpret_cast<void*>(&(func)); })
/art/test/912-classes/
H A Dclasses.cc386 void (*func)(jvmtiEnv*, JNIEnv*, T*),
408 reinterpret_cast<jvmtiStartFunction>(func),
383 RunEventThread(const std::string& name, jvmtiEnv* jvmti, JNIEnv* env, void (*func)(jvmtiEnv*, JNIEnv*, T*), T* data) argument
/art/runtime/
H A Delf_file.cc1784 #define DELEGATE_TO_IMPL(func, ...) \
1786 return elf64_->func(__VA_ARGS__); \
1789 return elf32_->func(__VA_ARGS__); \
H A Dthread.cc1563 Closure* func; local
1565 func = atomic_func->LoadRelaxed();
1566 if (func == nullptr) {
1569 } while (!atomic_func->CompareAndSetWeakSequentiallyConsistent(func, nullptr));
1570 DCHECK(func != nullptr);
1571 return func;
/art/runtime/jdwp/
H A Djdwp_handler.cc1440 JdwpRequestHandler func; member in struct:art::JDWP::JdwpHandlerMap
1656 gHandlers[i].func != nullptr) {
1658 result = (*gHandlers[i].func)(this, request, pReply);

Completed in 757 milliseconds

12