Home
last modified time | relevance | path

Searched refs:stack (Results 1 – 25 of 33) sorted by relevance

12

/base/hiviewdfx/hiview/utility/common_utils/include/
Dlog_parse.h35 …void SetFrame(std::stack<std::string>& stack, std::map<std::string, std::string>& eventInfo) const;
38 …std::stack<std::string> GetStackTop(const std::vector<std::string>& validStack, const size_t num) …
45 std::vector<std::string> GetValidStack(size_t num, std::stack<std::string>& inStack) const;
46 …std::list<std::vector<std::string>> StackToMultipart(std::stack<std::string>& inStack, size_t num)…
47 …bool GetValidStack(int num, std::stack<std::string>& inStack, std::stack<std::string>& outStack) c…
48 …void MatchIgnoreLibrary(std::stack<std::string> inStack, std::stack<std::string>& outStack, size_t…
49 …std::string GetValidBlock(std::stack<std::string> inStack, std::vector<std::string>& lastPart) con…
/base/hiviewdfx/hiview/utility/common_utils/
Dlog_parse.cpp94 bool LogParse::GetValidStack(int num, stack<string>& inStack, stack<string>& outStack) const in GetValidStack()
112 stack<string> LogParse::GetStackTop(const vector<string>& validStack, const size_t num) const in GetStackTop()
115 stack<string> stackTop; in GetStackTop()
124 list<vector<string>> LogParse::StackToMultipart(stack<string>& inStack, size_t num) const in StackToMultipart()
126 stack<string> partStack; in StackToMultipart()
139 partStack = stack<string>(); in StackToMultipart()
154 string LogParse::GetValidBlock(stack<string> inStack, vector<string>& lastPart) const in GetValidBlock()
201 vector<string> LogParse::GetValidStack(size_t num, stack<string>& inStack) const in GetValidStack()
203 stack<string> src = inStack; in GetValidStack()
205 stack<string> outStatck; in GetValidStack()
[all …]
Dtbox.cpp147 … std::stack<std::string> stackTop = logparse.GetStackTop(trace, 3); // 3 : first/second/last frame in FilterTrace()
/base/hiviewdfx/hiview/interfaces/innerkits/xpower_event/src/
Dxpower_event_js.cpp40 std::string stack = ""; in ReportXPowerJsStackSysEvent() local
41 bool succ = engine->BuildJsStackTrace(stack); in ReportXPowerJsStackSysEvent()
46 HiSysEvent::EventType::STATISTIC, "TAGNAME", tagName, "INFO", info, "STACKTRACE", stack); in ReportXPowerJsStackSysEvent()
58 std::string stack = ""; in ReportXPowerJsStackSysEvent() local
59 bool succ = panda::DFXJSNApi::BuildJsStackTrace(vm, stack); in ReportXPowerJsStackSysEvent()
64 HiSysEvent::EventType::STATISTIC, "TAGNAME", tagName, "INFO", info, "STACKTRACE", stack); in ReportXPowerJsStackSysEvent()
Dxpower_event.cpp30 std::string stack = ""; in ReportXPowerStackSysEvent() local
31 bool succ = GetBacktrace(stack, true); // true means fp stack in ReportXPowerStackSysEvent()
36 HiSysEvent::EventType::STATISTIC, "TAGNAME", tagName, "INFO", info, "STACKTRACE", stack); in ReportXPowerStackSysEvent()
/base/update/updater/services/log/
Ddump.cpp25 thread_local std::stack<std::string> g_stageStack;
44 std::stack<std::string> &DumpStageHelper::GetDumpStack() in GetDumpStack()
/base/hiviewdfx/faultloggerd/
DREADME.md24 * DumpCatcher: stack information capture tool, which provides the function of capturing stack infor…
25 …rary crash log management client, which receives requests for file descriptors and stack exporting.
26 …r capturing process information, which provides the function of capturing stack information of the…
36 …tempts to execute a data segment. This signal may also be generated in the case of stack overflow.|
42 | 16 | SIGSTKFLT | Stack overflow | The stack overflows. …
84 …mpCatcher allows an application to capture call stack information. It provides the API for printin…
93 …* `true`: Dumping of stack information is successful. Related information is stored in the `msg` s…
94 * `false`: Dumping of stack information has failed.
96 …* `pid`: ID of the process for dumping stack information. If all threads in the process need to be…
97 * `tid`: ID of the thread for dumping stack information.
[all …]
/base/update/packaging_tools/
Dgigraph_process.py49 action_stack = topo_logical.stack()
156 self.stack = []
167 self.stack.insert(0, index)
172 return self.stack
186 def stack(self): member in TopoLogical
/base/hiviewdfx/hiview/plugins/reliability/bbox_detectors/test/unittest/
Dbbox_detector_unit_test.cpp75 string stack = R"("dump_backtrace+0x0/0x184" variable
94 eventInfos.insert(std::pair("END_STACK", stack));
/base/hiviewdfx/faultloggerd/test/unittest/process_dump/
Dfault_stack_test.cpp166 std::unique_ptr<FaultStack> stack = std::make_unique<FaultStack>(childPid); variable
167 stack->CollectStackInfo(DfxFrameFormat::ConvertFrames(frames));
168 stack->CollectRegistersBlock(reg, maps);
169 stack->Print();
/base/update/updater/services/include/log/
Ddump.h81 static std::stack<std::string> &GetDumpStack();
/base/hiviewdfx/hiview/utility/common_utils/test/unittest/common/
Dutility_common_utils_test.cpp209 std::string stack = R"("#00 pc 00000000000cfaac /system/lib/ld-musl-aarch64.so.1 variable
236 eventInfos.insert(std::pair("END_STACK", stack));
253 std::string stack = R"("#00 pc 000000000006ca40 /system/lib64/libc.so(syscall+32) variable
274 eventInfos.insert(std::pair("END_STACK", stack));
/base/hiviewdfx/faultloggerd/interfaces/innerkits/callstack/include/
Dcallstack.h100 const u8 *stack, u64 stackSize, std::vector<CallFrame> &callStack,
118 const u8 *stack, u64 stackSize, std::vector<CallFrame> &callStack,
/base/sensors/sensor/interfaces/plugin/include/
Dasync_callback_info.h96 string stack; member
/base/sensors/miscdevice/interfaces/plugin/vibrator/include/
Dvibrator_napi_utils.h47 string stack; member
/base/notification/common_event_service/frameworks/core/src/
Dcommon_event_stub.cpp152 for (auto stack : result) { in OnRemoteRequest() local
153 reply.WriteString16(Str8ToStr16(stack)); in OnRemoteRequest()
Dcommon_event_proxy.cpp304 std::string stack = Str16ToStr8(reply.ReadString16()); in DumpState() local
305 state.emplace_back(stack); in DumpState()
/base/hiviewdfx/hichecker/
DREADME.md28 …met, unwinding of Native stacks to the key trigger point is supported. JS stack unwinding is not s…
69 | | GetStackTrace() : String | Obtains stack information. …
/base/hiviewdfx/faultloggerd/docs/
Dusage.md44 7febc70000-7febc91000 rw-p 00000000 [stack] <- 栈
69 首先根据 寄存器的SP和MAPS中的stack查看是否发生了栈溢出。如果SP不在栈范围内或者靠近栈的下界,应当考虑发生了栈溢出。 \
/base/security/code_signature/services/key_enable/src/
Dcert_chain_utils.rs19 use openssl::stack::Stack;
/base/security/selinux_adapter/sepolicy/ohos_policy/hiviewdfx/faultloggerd/system/
Dfaultloggerd.te69 # allow hap apply pipe fd for mix stack
/base/startup/appspawn/test/unittest/
Dapp_spawn_stub.cpp219 int CloneStub(int (*fn)(void *), void *stack, int flags, void *arg, ...) in CloneStub() argument
/base/hiviewdfx/faultloggerd/interfaces/innerkits/callstack/src/
Dcallstack.cpp616 const u8 *stack, u64 stackSize, std::vector<CallFrame> &callStack, argument
621 stack_ = stack;
658 const u8 *stack, u64 stackSize, std::vector<CallFrame> &callStack, argument
663 stack_ = stack;
/base/hiviewdfx/hiview/plugins/eventlogger/
Devent_logger.cpp338 std::string stack = event->GetEventValue("STACK"); in WriteCommonHead() local
339 if (!stack.empty()) { in WriteCommonHead()
340 headerStream << StringUtil::UnescapeJsonStringValue(stack) << std::endl; in WriteCommonHead()
/base/update/updateservice/services/core/ability/utils/src/
Dfile_utils.cpp121 std::stack<std::string> dirStack; in CreateMultiDirWithPermission()

12