Home
last modified time | relevance | path

Searched refs:hook (Results 1 – 8 of 8) sorted by relevance

/art/test/983-source-transform-verify/
Dexpected.txt1 Dex file hook for art/Test983$Transform
2 Dex file hook for java/lang/Object
3 Dex file hook for java/lang/ClassLoader
/art/compiler/utils/
Dintrusive_forward_list.h35 explicit IntrusiveForwardListHook(const IntrusiveForwardListHook* hook) : next_hook(hook) { } in IntrusiveForwardListHook()
51 template <typename T, IntrusiveForwardListHook T::* NextPtr = &T::hook>
98 explicit IntrusiveForwardListIterator(const IntrusiveForwardListHook* hook) : hook_(hook) { } in IntrusiveForwardListIterator() argument
393 static IntrusiveForwardListHook* ModifiableHook(const IntrusiveForwardListHook* hook) { in ModifiableHook() argument
394 return const_cast<IntrusiveForwardListHook*>(hook); in ModifiableHook()
455 static T* GetValue(const IntrusiveForwardListHook* hook) { in GetValue() argument
457 reinterpret_cast<uintptr_t>(hook) - OFFSETOF_MEMBERPTR(T, NextPtr)); in GetValue()
469 static T* GetValue(const IntrusiveForwardListHook* hook) { in GetValue() argument
471 const_cast<IntrusiveForwardListHook*>(hook))); in GetValue()
Dintrusive_forward_list_test.cc45 IFLTestValue2(int v) : hook(), value(v) { } // NOLINT(runtime/explicit) in IFLTestValue2()
47 IntrusiveForwardListHook hook; member
/art/test/080-oom-throw/src/
DMain.java37 static InstanceMemEater hook; field in Main.InstanceMemEater
52 hook = instance; in confuseCompilerOptimization()
93 InstanceMemEater.hook = null; in triggerInstanceOOM()
/art/runtime/
Dparsed_options.cc420 const void* hook = options[i].second; in ProcessSpecialOptions() local
421 bool (*hook_is_sensitive_thread)() = reinterpret_cast<bool (*)()>(const_cast<void*>(hook)); in ProcessSpecialOptions()
427 const void* hook = options[i].second; in ProcessSpecialOptions() local
428 if (hook == nullptr) { in ProcessSpecialOptions()
433 reinterpret_cast<int (*)(FILE *, const char*, va_list)>(const_cast<void*>(hook)); in ProcessSpecialOptions()
440 const void* hook = options[i].second; in ProcessSpecialOptions() local
441 if (hook == nullptr) { in ProcessSpecialOptions()
445 void(*hook_exit)(jint) = reinterpret_cast<void(*)(jint)>(const_cast<void*>(hook)); in ProcessSpecialOptions()
451 const void* hook = options[i].second; in ProcessSpecialOptions() local
452 if (hook == nullptr) { in ProcessSpecialOptions()
[all …]
/art/runtime/jni/
Djava_vm_ext.h73 void SetCheckJniAbortHook(void (*hook)(void*, const std::string&), void* data) { in SetCheckJniAbortHook()
74 check_jni_abort_hook_ = hook; in SetCheckJniAbortHook()
204 void AddEnvironmentHook(GetEnvHook hook);
Djava_vm_ext.cc530 for (GetEnvHook hook : env_hooks_) { in HandleGetEnv() local
531 jint res = hook(this, env, version); in HandleGetEnv()
544 void JavaVMExt::AddEnvironmentHook(GetEnvHook hook) { in AddEnvironmentHook() argument
545 CHECK(hook != nullptr) << "environment hooks shouldn't be null!"; in AddEnvironmentHook()
546 env_hooks_.push_back(hook); in AddEnvironmentHook()
/art/test/980-redefine-object/
Dexpected.txt4 Redefining the Object class to add a hook into the <init> method