Searched refs:hook (Results 1 – 8 of 8) sorted by relevance
1 Dex file hook for art/Test983$Transform2 Dex file hook for java/lang/Object
34 explicit IntrusiveForwardListHook(const IntrusiveForwardListHook* hook) : next_hook(hook) { } in IntrusiveForwardListHook()50 template <typename T, IntrusiveForwardListHook T::* NextPtr = &T::hook>97 explicit IntrusiveForwardListIterator(const IntrusiveForwardListHook* hook) : hook_(hook) { } in IntrusiveForwardListIterator() argument392 static IntrusiveForwardListHook* ModifiableHook(const IntrusiveForwardListHook* hook) { in ModifiableHook() argument393 return const_cast<IntrusiveForwardListHook*>(hook); in ModifiableHook()454 static T* GetValue(const IntrusiveForwardListHook* hook) { in GetValue() argument456 reinterpret_cast<uintptr_t>(hook) - OFFSETOF_MEMBERPTR(T, NextPtr)); in GetValue()468 static T* GetValue(const IntrusiveForwardListHook* hook) { in GetValue() argument470 const_cast<IntrusiveForwardListHook*>(hook))); in GetValue()
45 IFLTestValue2(int v) : hook(), value(v) { } // NOLINT(runtime/explicit) in IFLTestValue2()47 IntrusiveForwardListHook hook; member
37 static InstanceMemEater hook; field in Main.InstanceMemEater52 hook = instance; in confuseCompilerOptimization()93 InstanceMemEater.hook = null; in triggerInstanceOOM()
376 const void* hook = options[i].second; in ProcessSpecialOptions() local377 bool (*hook_is_sensitive_thread)() = reinterpret_cast<bool (*)()>(const_cast<void*>(hook)); in ProcessSpecialOptions()383 const void* hook = options[i].second; in ProcessSpecialOptions() local384 if (hook == nullptr) { in ProcessSpecialOptions()389 reinterpret_cast<int (*)(FILE *, const char*, va_list)>(const_cast<void*>(hook)); in ProcessSpecialOptions()396 const void* hook = options[i].second; in ProcessSpecialOptions() local397 if (hook == nullptr) { in ProcessSpecialOptions()401 void(*hook_exit)(jint) = reinterpret_cast<void(*)(jint)>(const_cast<void*>(hook)); in ProcessSpecialOptions()407 const void* hook = options[i].second; in ProcessSpecialOptions() local408 if (hook == nullptr) { in ProcessSpecialOptions()[all …]
73 void SetCheckJniAbortHook(void (*hook)(void*, const std::string&), void* data) { in SetCheckJniAbortHook()74 check_jni_abort_hook_ = hook; in SetCheckJniAbortHook()197 void AddEnvironmentHook(GetEnvHook hook);
492 for (GetEnvHook hook : env_hooks_) { in HandleGetEnv() local493 jint res = hook(this, env, version); in HandleGetEnv()506 void JavaVMExt::AddEnvironmentHook(GetEnvHook hook) { in AddEnvironmentHook() argument507 CHECK(hook != nullptr) << "environment hooks shouldn't be null!"; in AddEnvironmentHook()508 env_hooks_.push_back(hook); in AddEnvironmentHook()
4 Redefining the Object class to add a hook into the <init> method