HomeSort by relevance Sort by last modified time
    Searched full:callstack (Results 1 - 25 of 211) sorted by null

1 2 3 4 5 6 7 8 9

  /system/core/libutils/
CallStack.cpp 17 #define LOG_TAG "CallStack"
19 #include <utils/CallStack.h>
29 CallStack::CallStack() {
32 CallStack::CallStack(const char* logtag, int32_t ignoreDepth) {
37 CallStack::~CallStack() {
40 void CallStack::update(int32_t ignoreDepth, pid_t tid) {
45 ALOGW("%s: Failed to unwind callstack.", __FUNCTION__)
    [all...]
ProcessCallStack.cpp 183 * Ignore CallStack::update and ProcessCallStack::update for current thread
189 threadInfo.callStack.update(ignoreDepth, tid);
195 __FUNCTION__, tid, threadInfo.callStack.size());
215 * Print the callstack with an additional two spaces as the prefix for legibility.
233 threadInfo.callStack.print(csPrinter);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ScriptAsyncCallStack.cpp 12 PassRefPtrWillBeRawPtr<ScriptAsyncCallStack> ScriptAsyncCallStack::create(const String& description, PassRefPtrWillBeRawPtr<ScriptCallStack> callStack, PassRefPtrWillBeRawPtr<ScriptAsyncCallStack> asyncStackTrace)
14 return adoptRefWillBeNoop(new ScriptAsyncCallStack(description, callStack, asyncStackTrace));
17 ScriptAsyncCallStack::ScriptAsyncCallStack(const String& description, PassRefPtrWillBeRawPtr<ScriptCallStack> callStack, PassRefPtrWillBeRawPtr<ScriptAsyncCallStack> asyncStackTrace)
19 , m_callStack(callStack)
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
ParseTreeBuilder.cs 45 Stack<ParseTree> callStack = new Stack<ParseTree>();
51 callStack.Push(root);
55 var enumerator = callStack.GetEnumerator();
84 ParseTree parentRuleNode = callStack.Peek();
87 callStack.Push(ruleNode);
93 ParseTree ruleNode = callStack.Peek();
97 callStack.Pop();
103 ParseTree ruleNode = callStack.Peek();
119 ParseTree ruleNode = callStack.Peek();
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
ParseTreeBuilder.cs 47 Stack<ParseTree> callStack = new Stack<ParseTree>();
54 callStack.Push( root );
61 return callStack.Peek();
94 ParseTree parentRuleNode = callStack.Peek();
97 callStack.Push( ruleNode );
104 ParseTree ruleNode = callStack.Peek();
109 callStack.Pop();
116 ParseTree ruleNode = callStack.Peek();
134 ParseTree ruleNode = callStack.Peek();
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
ParseTreeBuilder.java 44 Stack callStack = new Stack();
50 callStack.push(root);
54 return (ParseTree)callStack.elementAt(0);
74 ParseTree parentRuleNode = (ParseTree)callStack.peek();
77 callStack.push(ruleNode);
82 ParseTree ruleNode = (ParseTree)callStack.peek();
86 callStack.pop();
91 ParseTree ruleNode = (ParseTree)callStack.peek();
105 ParseTree ruleNode = (ParseTree)callStack.peek();
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketChannel.cpp 56 RefPtrWillBeRawPtr<ScriptCallStack> callStack = createScriptCallStack(1, true);
57 if (callStack && callStack->size()) {
58 sourceURL = callStack->at(0).sourceURL();
59 lineNumber = callStack->at(0).lineNumber();
  /system/core/include/utils/
CallStack.h 33 class CallStack {
36 CallStack();
37 // Create a callstack with the current thread's stack trace.
39 CallStack(const char* logtag, int32_t ignoreDepth=1);
40 ~CallStack();
ProcessCallStack.h 20 #include <utils/CallStack.h>
37 // Copy the existing process callstack (no other side effects).
67 CallStack callStack;
  /external/chromium_org/tools/findit/
component_dictionary.py 24 stack_frame_index: The file's position in the callstack.
63 def __init__(self, callstack, components):
71 # Create file dict from callstack.
72 self.__CreateFileDictFromCallstack(callstack)
99 def __CreateFileDictFromCallstack(self, callstack, top_n_frames=10):
103 callstack: A list containing parsed result from a single stack
118 stack_list = callstack.GetTopNFrames(top_n_frames)
stacktrace.py 39 class CallStack(object):
87 # position of a frame within a callstack. The reason for not extracting
90 current_stack = CallStack(-1)
97 # If this callstack is crash stack, update the boolean.
100 current_stack = CallStack(stack_priority)
102 # If this is from freed or allocation, add the callstack we have
108 current_stack = CallStack(stack_priority)
122 # Add the current callstack only if there are frames in it.
127 """Check if this line is the start of the new callstack.
137 True if the line is the start of new callstack, False otherwise. If True
    [all...]
findit_for_crash.py 223 callstack, components, component_to_changelog_map, results,
231 callstack: A callstack in a stacktrace to find the result for.
238 component_dict = component_dictionary.ComponentDictionary(callstack,
240 callstack_priority = callstack.priority
244 # If the component to consider in this callstack is not in the parsed list
314 for callstack in stacktrace.stack_list:
315 FindMatchForCallstack(callstack, components, component_to_changelog_map,
327 2) The callstack this match is computed (crash stack, freed, allocation).
335 callstack it is from
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
parse-malloc-history 127 # count stack frames backwards from end of callstack
135 # start at beginning of callstack
139 my $callstack = substr($line, $callstackBegin + 2); # + 2 skips "| "
141 if ($callstack =~ $regexp) {
142 $callstack = $regexp . "\n";
147 if (!$callstacks{$callstack}) {
148 $callstacks{$callstack} = {"callCount" => 0, "byteCount" => 0};
151 $callstacks{$callstack}{"callCount"} += $callCount;
152 $callstacks{$callstack}{"byteCount"} += $byteCount;
156 for my $callstack (sort { $callstacks{$b}{"byteCount"} <=> $callstacks{$a}{"byteCount"} } keys %callstacks)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameConsole.cpp 90 if (consoleMessage->callStack() && consoleMessage->callStack()->size()) {
91 lineNumber = consoleMessage->callStack()->at(0).lineNumber();
92 messageURL = consoleMessage->callStack()->at(0).sourceURL();
105 if (consoleMessage->callStack() && frame().chromeClient().shouldReportDetailedMessageForSource(messageURL))
106 reportedCallStack = consoleMessage->callStack();
136 String FrameConsole::formatStackTraceString(const String& originalMessage, PassRefPtrWillBeRawPtr<ScriptCallStack> callStack)
139 for (size_t i = 0; i < callStack->size(); ++i) {
140 const ScriptCallFrame& frame = callStack->at(i);
  /external/chromium_org/third_party/skia/tools/
win_dbghelp.cpp 22 // to mark where the callstack is printed.
23 // For example, each thread's callstack will be marked with "12340000" at
90 * Callstack lines are marked by start and stop markers and they are prefixed
100 // the callstack from a log files, only when the application had failed.
184 printf("\nThread Callstack:\n");
189 printf("\nException Callstack:\n");
233 // collecting the callstack.
235 // cdb.exe is the app used to load the minidump which prints the callstack.
  /external/skia/tools/
win_dbghelp.cpp 22 // to mark where the callstack is printed.
23 // For example, each thread's callstack will be marked with "12340000" at
90 * Callstack lines are marked by start and stop markers and they are prefixed
100 // the callstack from a log files, only when the application had failed.
184 printf("\nThread Callstack:\n");
189 printf("\nException Callstack:\n");
233 // collecting the callstack.
235 // cdb.exe is the app used to load the minidump which prints the callstack.
  /frameworks/rs/
rsDebugHelper.h 29 #include <utils/CallStack.h>
48 CallStack mStack;
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/
rsDebugHelper.h 29 #include <utils/CallStack.h>
48 CallStack mStack;
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/
rsDebugHelper.h 29 #include <utils/CallStack.h>
48 CallStack mStack;
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/
rsDebugHelper.h 29 #include <utils/CallStack.h>
48 CallStack mStack;
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerConsole.cpp 54 if (RefPtrWillBeRawPtr<ScriptCallStack> callStack = consoleMessage->callStack()) {
55 const ScriptCallFrame& lastCaller = callStack->at(0);
  /external/ltrace/sysdeps/linux-gnu/m68k/
trace.c 62 proc->callstack[depth - 1].is_syscall &&
63 proc->callstack[depth - 1].c_un.syscall == *sysnum) {
  /dalvik/tools/dmtracedump/
CreateTestTrace.c 126 stack *callStack;
163 callStack = (stack *) malloc(sizeof(stack) * numThreads);
166 callStack[ii].frames = NULL;
167 callStack[ii].indentLevel = 0;
199 if (callStack[threadId].frames == NULL) {
202 callStack[threadId].frames = stk;
204 indentLevel = callStack[threadId].indentLevel;
261 callStack[threadId].frames[indentLevel] = &records[nextRecord];
264 if (callStack[threadId].frames[indentLevel - 1] == NULL) {
267 callStack[threadId].frames[indentLevel - 1] = &records[nextRecord]
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ExecutionContext.cpp 48 PendingException(const String& errorMessage, int lineNumber, int columnNumber, int scriptId, const String& sourceURL, PassRefPtrWillBeRawPtr<ScriptCallStack> callStack)
54 , m_callStack(callStack)
135 void ExecutionContext::reportException(PassRefPtrWillBeRawPtr<ErrorEvent> event, int scriptId, PassRefPtrWillBeRawPtr<ScriptCallStack> callStack, AccessControlStatus corsStatus)
141 m_pendingExceptions->append(adoptPtrWillBeNoop(new PendingException(errorEvent->messageForConsole(), errorEvent->lineno(), errorEvent->colno(), scriptId, errorEvent->filename(), callStack)));
147 logExceptionToConsole(errorEvent->messageForConsole(), scriptId, errorEvent->filename(), errorEvent->lineno(), errorEvent->colno(), callStack);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
Console.java 125 StackTraceElement[] callStack = Thread.currentThread().getStackTrace();
128 for (int i = 0; i < callStack.length; i++) {
129 StackTraceElement el = callStack[i];
140 int start = Math.min(offset + depth, callStack.length);
144 StackTraceElement el = callStack[i];

Completed in 678 milliseconds

1 2 3 4 5 6 7 8 9