Home
last modified time | relevance | path

Searched refs:crashObj (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/base/hiviewdfx/faultloggerd/interfaces/innerkits/signal_handler/
H A Ddfx_signal_handler.c291 g_request.crashObj = (uintptr_t)pthread_getspecific(g_crashObjKey); in FillDumpRequest()
1003 uintptr_t crashObj = 0; in DFX_SetCrashObj() local
1005 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() argument
1018 pthread_setspecific(g_crashObjKey, (void*)(crashObj)); in DFX_ResetCrashObj()
/ohos5.0/base/hiviewdfx/faultloggerd/interfaces/innerkits/signal_handler/include/
H A Ddfx_signal_handler.h66 void DFX_ResetCrashObj(uintptr_t crashObj);
/ohos5.0/base/hiviewdfx/faultloggerd/tools/crasher_cpp/
H A Ddfx_crasher.cpp162 extern "C" void DFX_ResetCrashObj(uintptr_t crashObj) __attribute__((weak));
554 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()
/ohos5.0/base/hiviewdfx/faultloggerd/interfaces/common/
H A Ddfx_dump_request.h138 uintptr_t crashObj; member
/ohos5.0/base/hiviewdfx/faultloggerd/tools/process_dump/
H A Dprocess_dumper.cpp465 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()
/ohos5.0/foundation/communication/ipc/ipc/native/src/mock/include/
H A Dbinder_invoker.h36 extern "C" void DFX_ResetCrashObj(uintptr_t crashObj);