Searched refs:crashObj (Results 1 – 6 of 6) sorted by relevance
291 g_request.crashObj = (uintptr_t)pthread_getspecific(g_crashObjKey); in FillDumpRequest()1003 uintptr_t crashObj = 0; in DFX_SetCrashObj() local1005 crashObj = ((uintptr_t)type << moveBit) | (addr & 0x00ffffffffffffff); in DFX_SetCrashObj()1006 pthread_setspecific(g_crashObjKey, (void*)(crashObj)); in DFX_SetCrashObj()1012 void DFX_ResetCrashObj(uintptr_t crashObj) in DFX_ResetCrashObj() argument1018 pthread_setspecific(g_crashObjKey, (void*)(crashObj)); in DFX_ResetCrashObj()
66 void DFX_ResetCrashObj(uintptr_t crashObj);
162 extern "C" void DFX_ResetCrashObj(uintptr_t crashObj) __attribute__((weak));554 uintptr_t crashObj = 0; in TestGetCrashObj() local557 crashObj = DFX_SetCrashObj(type, reinterpret_cast<uintptr_t>(msg.c_str())); in TestGetCrashObj()562 DFX_ResetCrashObj(crashObj); in TestGetCrashObj()
138 uintptr_t crashObj; member
465 if (!isCrash_ || request->crashObj == 0) { in GetCrashObj()468 uintptr_t type = request->crashObj >> 56; // 56 :: Move 56 bit to the right in GetCrashObj()469 uintptr_t addr = request->crashObj & 0xffffffffffffff; in GetCrashObj()
36 extern "C" void DFX_ResetCrashObj(uintptr_t crashObj);