Home
last modified time | relevance | path

Searched refs:crashObj (Results 1 - 5 of 5) sorted by relevance

/base/hiviewdfx/faultloggerd/interfaces/innerkits/signal_handler/include/
H A Ddfx_signal_handler.h64 * @param crashObj return of DFX_SetCrashObj
66 void DFX_ResetCrashObj(uintptr_t crashObj);
/base/hiviewdfx/faultloggerd/interfaces/innerkits/signal_handler/
H A Ddfx_signal_handler.c331 g_request.crashObj = (uintptr_t)pthread_getspecific(g_crashObjKey); in FillDumpRequest()
540 uintptr_t crashObj = 0; in DFX_SetCrashObj() local
542 crashObj = ((uintptr_t)type << moveBit) | (addr & 0x00ffffffffffffff); in DFX_SetCrashObj()
543 pthread_setspecific(g_crashObjKey, (void*)(crashObj)); in DFX_SetCrashObj()
550 void DFX_ResetCrashObj(uintptr_t crashObj) in DFX_ResetCrashObj() argument
556 pthread_setspecific(g_crashObjKey, (void*)(crashObj)); in DFX_ResetCrashObj()
/base/hiviewdfx/faultloggerd/interfaces/common/
H A Ddfx_dump_request.h151 uintptr_t crashObj; member
/base/hiviewdfx/faultloggerd/tools/crasher_cpp/
H A Ddfx_crasher.cpp162 extern "C" void DFX_ResetCrashObj(uintptr_t crashObj) __attribute__((weak));
553 uintptr_t crashObj = 0; in TestGetCrashObj() local
557 crashObj = DFX_SetCrashObj(type, reinterpret_cast<uintptr_t>(msg.c_str())); in TestGetCrashObj()
562 DFX_ResetCrashObj(crashObj); in TestGetCrashObj()
/base/hiviewdfx/faultloggerd/tools/process_dump/
H A Dprocess_dumper.cpp480 if (!isCrash_ || request->crashObj == 0) { in GetCrashObj()
483 uintptr_t type = request->crashObj >> 56; // 56 :: Move 56 bit to the right in GetCrashObj()
484 uintptr_t addr = request->crashObj & 0xffffffffffffff; in GetCrashObj()

Completed in 5 milliseconds