/art/test/utils/python/ |
D | generate_java_main.py | 159 for f in sorted(self.funcs, key=lambda a: (a.func, a.farg)): 187 def __init__(self, func, farg, invoke): argument 191 self.func = func 199 return "Test_Func_{}_{}_{}".format(self.func, self.farg, self.invoke) 208 callfunc=self.func)
|
/art/test/065-mismatched-implements/src/ |
D | Defs.java | 18 public void func(); in func() method
|
D | Base.java | 18 public void func() { in func() method in Base
|
/art/test/066-mismatched-super/src2/ |
D | Defs.java | 18 public void func(); in func() method
|
/art/test/065-mismatched-implements/src2/ |
D | Defs.java | 18 public void func() { in func() method in Defs
|
/art/test/066-mismatched-super/src/ |
D | Defs.java | 18 public void func() { in func() method in Defs
|
/art/runtime/interpreter/mterp/mips64/ |
D | control_flow.S | 116 %def op_packed_switch(func="MterpDoPackedSwitch"): 127 .extern $func 134 jal $func # v0 <- code-unit branch offset 205 % op_packed_switch(func="MterpDoSparseSwitch")
|
/art/runtime/interpreter/mterp/x86_64/ |
D | control_flow.S | 118 %def op_packed_switch(func="MterpDoPackedSwitch"): 132 call SYMBOL($func) 193 % op_packed_switch(func="MterpDoSparseSwitch")
|
/art/runtime/interpreter/mterp/arm64/ |
D | control_flow.S | 119 %def op_packed_switch(func="MterpDoPackedSwitch"): 136 bl $func // w0<- code-unit branch offset 211 % op_packed_switch(func="MterpDoSparseSwitch")
|
/art/runtime/interpreter/mterp/x86/ |
D | control_flow.S | 120 %def op_packed_switch(func="MterpDoPackedSwitch"): 136 call SYMBOL($func) 206 % op_packed_switch(func="MterpDoSparseSwitch")
|
/art/runtime/interpreter/mterp/arm/ |
D | control_flow.S | 117 %def op_packed_switch(func="MterpDoPackedSwitch"): 134 bl $func @ r0<- code-unit branch offset 196 % op_packed_switch(func="MterpDoSparseSwitch")
|
/art/runtime/interpreter/mterp/mips/ |
D | control_flow.S | 114 %def op_packed_switch(func="MterpDoPackedSwitch"): 131 JAL($func) # a0 <- code-unit branch offset 201 % op_packed_switch(func="MterpDoSparseSwitch")
|
/art/runtime/ |
D | thread_pool.h | 65 explicit FunctionTask(std::function<void(Thread*)>&& func) : func_(std::move(func)) {} in FunctionTask() argument
|
/art/runtime/gc/space/ |
D | large_object_space.h | 113 virtual void ForEachMemMap(std::function<void(const MemMap&)> func) const = 0; 164 void ForEachMemMap(std::function<void(const MemMap&)> func) const override REQUIRES(!lock_); 197 void ForEachMemMap(std::function<void(const MemMap&)> func) const override REQUIRES(!lock_);
|
D | large_object_space.cc | 234 void LargeObjectMapSpace::ForEachMemMap(std::function<void(const MemMap&)> func) const { in ForEachMemMap() 237 func(pair.second.mem_map); in ForEachMemMap() 408 void FreeListSpace::ForEachMemMap(std::function<void(const MemMap&)> func) const { in ForEachMemMap() 410 func(allocation_info_map_); in ForEachMemMap() 411 func(mem_map_); in ForEachMemMap()
|
/art/openjdkjvmti/ |
D | ti_extension.cc | 80 auto add_extension = [&](jvmtiExtensionFunction func, in GetExtensionFunctions() 88 func_info.func = func; in GetExtensionFunctions()
|
D | events-inl.h | 301 impl::EventHandlerFunc<kEvent> func(env); in DispatchEventOnEnv() 302 ExecuteCallback<kEvent>(func, jnienv, args...); in DispatchEventOnEnv() 316 impl::EventHandlerFunc<kEvent> func(env); in DispatchEventOnEnv() 317 ExecuteCallback<kEvent>(func, args...); in DispatchEventOnEnv()
|
D | deopt_manager.cc | 158 auto func = [](art::Thread* thread, void* ctx) { in DumpDeoptInfo() local 161 art::Runtime::Current()->GetThreadList()->ForEach(func, &dtdc); in DumpDeoptInfo()
|
/art/test/1957-error-ext/ |
D | lasterror.cc | 70 res = cur_info->func; in FindExtensionMethod()
|
/art/test/1951-monitor-enter-no-suspend/ |
D | raw_monitor.cc | 58 result = reinterpret_cast<RawMonitorEnterNoSuspend>(cur_info->func); in GetNoSuspendFunction()
|
/art/tools/jvmti-agents/dump-jvmti-state/ |
D | dump-jvmti.cc | 70 GetInternalData = reinterpret_cast<decltype(GetInternalData)>(cur_info->func); in SetupJvmtiEnv()
|
/art/test/1946-list-descriptors/ |
D | descriptors.cc | 122 data->get_descriptor_list = reinterpret_cast<GetDescriptorList>(cur_info->func); in Java_art_Test1946_initializeTest()
|
/art/test/1900-track-alloc/ |
D | alloc.cc | 141 data->get_global_state = reinterpret_cast<GetGlobalState>(cur_info->func); in Java_art_Test1900_initializeTest()
|
/art/test/1940-ddms-ext/ |
D | ddm_ext.cc | 159 data->send_ddm_chunk = reinterpret_cast<DdmHandleChunk>(cur_info->func); in Java_art_Test1940_initializeTest()
|
/art/test/912-classes/ |
D | classes.cc | 386 void (*func)(jvmtiEnv*, JNIEnv*, T*), in RunEventThread() 408 reinterpret_cast<jvmtiStartFunction>(func), in RunEventThread()
|