Home
last modified time | relevance | path

Searched refs:faultloggerdRequest (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/base/hiviewdfx/faultloggerd/test/unittest/services/
H A Dfaultlogger_daemon_test.cpp65 faultloggerdRequest.type = 0;
66 faultloggerdRequest.pid = getpid();
67 faultloggerdRequest.tid = gettid();
68 faultloggerdRequest.uid = getuid();
99 faultloggerdRequest.pid = getpid();
100 faultloggerdRequest.tid = gettid();
101 faultloggerdRequest.uid = getuid();
133 faultloggerdRequest.pid = getpid();
134 faultloggerdRequest.tid = gettid();
135 faultloggerdRequest.uid = getuid();
[all …]
/ohos5.0/base/hiviewdfx/faultloggerd/tools/process_dump/
H A Ddfx_logger.cpp86 struct FaultLoggerdRequest faultloggerdRequest; in InitDebugLog() local
87 …(void)memset_s(&faultloggerdRequest, sizeof(faultloggerdRequest), 0, sizeof(struct FaultLoggerdReq… in InitDebugLog()
88 faultloggerdRequest.type = (int)type; in InitDebugLog()
89 faultloggerdRequest.pid = pid; in InitDebugLog()
90 faultloggerdRequest.tid = tid; in InitDebugLog()
91 faultloggerdRequest.uid = uid; in InitDebugLog()
93 g_DebugLogFd = RequestLogFileDescriptor(&faultloggerdRequest); in InitDebugLog()
H A Dprocess_dumper.cpp773 struct FaultLoggerdRequest faultloggerdRequest; in InitPrintThread() local
774 …(void)memset_s(&faultloggerdRequest, sizeof(faultloggerdRequest), 0, sizeof(struct FaultLoggerdReq… in InitPrintThread()
775 faultloggerdRequest.type = ProcessDumper::GetLogTypeBySignal(request->siginfo.si_signo); in InitPrintThread()
776 faultloggerdRequest.pid = request->pid; in InitPrintThread()
777 faultloggerdRequest.tid = request->tid; in InitPrintThread()
778 faultloggerdRequest.uid = request->uid; in InitPrintThread()
779 faultloggerdRequest.time = request->timeStamp; in InitPrintThread()
782 if (isCrash_ || faultloggerdRequest.type == FaultLoggerType::LEAK_STACKTRACE) { in InitPrintThread()
784 InitDebugLog((int)faultloggerdRequest.type, request->pid, request->tid, request->uid); in InitPrintThread()
786 fd = RequestFileDescriptorEx(&faultloggerdRequest); in InitPrintThread()
/ohos5.0/base/hiviewdfx/faultloggerd/frameworks/localhandler/
H A Ddfx_crash_local_handler.cpp52 struct FaultLoggerdRequest faultloggerdRequest; in RequestOutputLogFile() local
53 …(void)memset_s(&faultloggerdRequest, sizeof(faultloggerdRequest), 0, sizeof(struct FaultLoggerdReq… in RequestOutputLogFile()
55 faultloggerdRequest.type = (int32_t)CPP_CRASH; in RequestOutputLogFile()
56 faultloggerdRequest.pid = request->pid; in RequestOutputLogFile()
57 faultloggerdRequest.tid = request->tid; in RequestOutputLogFile()
58 faultloggerdRequest.uid = request->uid; in RequestOutputLogFile()
59 faultloggerdRequest.time = request->timeStamp; in RequestOutputLogFile()
60 return RequestFileDescriptorEx(&faultloggerdRequest); in RequestOutputLogFile()