HomeSort by relevance Sort by last modified time
    Searched defs:stack (Results 351 - 375 of 1394) sorted by null

<<11121314151617181920>>

  /system/core/libutils/
RefBase.cpp 38 // folder where stack traces are saved when DEBUG_REFS is enabled
187 refs->stack.log(LOG_TAG);
201 refs->stack.log(LOG_TAG);
208 CallStack stack(LOG_TAG);
278 snprintf(name, sizeof(name), DEBUG_REFS_CALLSTACK_PATH "/%p.stack",
284 ALOGD("STACK TRACE for %p saved in %s", this, name);
286 else ALOGE("FAILED TO PRINT STACK TRACE for %p in %s: %s", this,
297 CallStack stack; member in struct:android::RefBase::weakref_impl::ref_entry
314 ref->stack.update(2);
349 CallStack stack(LOG_TAG)
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
Parser.java 22 private final ListIterator stack = new LinkedList().listIterator(); field in class:Parser
44 if(!this.stack.hasNext())
46 this.stack.add(new State(numstate, this.nodeList));
50 State s = (State) this.stack.next();
86 State s = (State) this.stack.previous();
87 this.stack.next();
93 return ((State) this.stack.previous()).nodes;
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
ActivityRecord.java 183 * An entry in the history stack, representing an activity.
309 private boolean inHistory; // are we in the history stack?
731 final ActivityStack stack = getStack(); local
1349 final ActivityStack stack = getStack(); local
1538 final ActivityStack stack = getStack(); local
1661 final ActivityStack stack = getStack(); local
1736 final ActivityStack stack = getStack(); local
1759 final ActivityStack stack = getStack(); local
1818 final ActivityStack stack = getStack(); local
1831 final ActivityStack stack = getStack(); local
1865 final ActivityStack stack = getStack(); local
1897 final ActivityStack stack = getStack(); local
2021 final ActivityStack stack = mStackSupervisor.getFocusedStack(); local
2101 final ActivityStack stack = getStack(); local
2114 final ActivityStack stack = getStack(); local
2267 final ActivityStack stack = getStack(); local
2321 final ActivityStack stack = getStack(); local
2370 final ActivityStack stack = getStack(); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
AppWindowToken.java 559 final TaskStack stack = getStack(); local
564 if (stack != null) {
565 stack.mExitingAppTokens.add(this);
573 if (stack != null) {
574 stack.mExitingAppTokens.remove(this);
    [all...]
  /libcore/ojluni/src/main/java/java/io/
ObjectOutputStream.java 2517 private final List<String> stack; field in class:ObjectOutputStream.DebugTraceInfoStack
    [all...]
  /art/runtime/
instrumentation.cc 213 // need to push a DEX pc into the dex_pcs_ list to match size of instrumentation stack.
253 // Insert frame at the right position so we do not corrupt the instrumentation stack.
254 // Instrumentation stack frames are in descending frame id order.
294 // Create method enter events for all methods currently on the thread's stack. We only do this
394 std::deque<instrumentation::InstrumentationStackFrame>* stack = thread->GetInstrumentationStack(); local
395 if (stack->size() > 0) {
401 CHECK_EQ(visitor.frames_removed_, stack->size());
402 while (stack->size() > 0) {
403 stack->pop_front();
621 // Restore stack only if there is no method currently deoptimized
1054 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack(); local
1072 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack(); local
1141 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack(); local
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
SsaMethod.java 35 import java.util.Stack;
757 // We push the parent first, then the child on the stack.
758 Stack<SsaBasicBlock> stack = new Stack<SsaBasicBlock>(); local
767 stack.add(null); // Start with null parent.
768 stack.add(rootBlock);
770 while (stack.size() > 0) {
771 SsaBasicBlock cur = stack.pop();
772 SsaBasicBlock parent = stack.pop()
797 Stack<SsaBasicBlock> stack = new Stack<SsaBasicBlock>(); local
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3collections.c 79 // Interface functions for Stack
81 static void antlr3StackFree (pANTLR3_STACK stack);
82 static void * antlr3StackPop (pANTLR3_STACK stack);
83 static void * antlr3StackGet (pANTLR3_STACK stack, ANTLR3_INTKEY key);
84 static ANTLR3_BOOLEAN antlr3StackPush (pANTLR3_STACK stack, void * element, void (ANTLR3_CDECL *freeptr)(void *));
85 static ANTLR3_UINT32 antlr3StackSize (pANTLR3_STACK stack);
86 static void * antlr3StackPeek (pANTLR3_STACK stack);
966 pANTLR3_STACK stack; local
970 stack = (pANTLR3_STACK)ANTLR3_MALLOC((size_t)sizeof(ANTLR3_STACK));
972 if (stack == NULL
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BaseRecognizer.java 212 * more information such as the stack frame with
379 * follow that rule reference on the stack; this amounts to
406 * that rule is pushed on a stack. Here are the various "local"
417 * and, hence, the follow context stack is:
528 // what is exact? it seems to only add sets from above on stack
695 /** Push a rule's follow set using our own hardcoded stack */
720 * stack trace. This routine is shared with all recognizers, hence,
729 StackTraceElement[] stack = e.getStackTrace(); local
731 for (i=stack.length-1; i>=0; i--) {
732 StackTraceElement t = stack[i]
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBaseIterators.java 1325 final int[] stack = new int[index + 4]; local
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl_report.cc 91 // Ensure that we recovered stack completely. Trimmed stack
95 DPrintf("Bottom stack frame is missed\n");
107 StackTrace stack = StackDepotGet(stack_id);
108 if (stack.trace == nullptr)
110 return SymbolizeStack(stack);
137 ReportStack *stack = ReportStack::New(); local
138 stack->frames = top;
139 return stack;
157 void ScopedReport::AddStack(StackTrace stack, bool suppressable)
    [all...]
  /external/icu/icu4c/source/test/intltest/
measfmttest.cpp 918 MeasureUnit stack; local
    [all...]
  /external/mesa3d/src/glx/
indirect_vertex_array.c 118 if (arrays->stack) {
119 free(arrays->stack);
120 arrays->stack = NULL;
293 arrays->stack = malloc(sizeof(struct array_stack_state)
1910 struct array_stack_state *stack = local
1936 struct array_stack_state *stack; local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
TCPMessageChannel.java 29 package gov.nist.javax.sip.stack;
51 * This is a stack abstraction for TCP connections. This abstracts a stream of parsed messages.
116 * @param sipStack Ptr to SIP Stack
198 * Get my SIP Stack.
200 * @return The SIP Stack for this message channel.
UDPMessageChannel.java 30 package gov.nist.javax.sip.stack;
66 * stack (later removed). Lamine Brahimi suggested a single threaded behavior
74 * fixed a performance issue where the stack was doing DNS lookups (potentially
76 * the stack from exitting when an exception is encountered.
84 * is handed off via a SIP stack request for further processing. This stack
100 * SIP Stack structure for this channel.
163 * Constructor - takes a datagram packet and a stack structure Extracts the
165 * pointer to the passed stack structure.
167 * @param stack
    [all...]
  /external/opencv/cv/src/
cvconvhull.cpp 45 icvSklansky_32s( CvPoint** array, int start, int end, int* stack, int nsign, int sign2 )
56 stack[0] = start;
60 stack[0] = pprev;
61 stack[1] = pcur;
62 stack[2] = pnext;
85 stack[stacksize] = pnext;
93 stack[1] = pcur;
95 stack[2] = pnext;
99 stack[stacksize-2] = pnext;
101 pprev = stack[stacksize-4]
234 int* stack = 0; local
    [all...]
  /external/proguard/src/proguard/optimize/evaluation/
PartialEvaluator.java 78 private final java.util.Stack callingInstructionBlockStack;
79 private final java.util.Stack instructionBlockStack = new java.util.Stack();
150 * @param callingInstructionBlockStack the stack of instruction blocks to
158 java.util.Stack callingInstructionBlockStack)
211 System.out.println(" Stack: "+stacksBefore[offset]);
234 System.out.println(" Stack: "+stacksAfter[offset]);
255 System.out.println(" Max stack = "+codeAttribute.u2maxStack);
258 // Reuse the existing variables and stack objects, ensuring the right size.
260 TracedStack stack = new TracedStack(codeAttribute.u2maxStack) local
1046 TracedStack stack = new TracedStack(codeAttribute.u2maxStack); local
    [all...]
  /external/regex-re2/re2/
regexp.cc 127 // Handle recursive Destroy with explicit stack
128 // to avoid arbitrarily deep recursion on process stack [sigh].
130 Regexp* stack = this; local
131 while (stack != NULL) {
132 Regexp* re = stack;
133 stack = re->down_;
147 sub->down_ = stack;
148 stack = sub;
405 // The stack (vector) has pairs of regexps waiting to
  /external/speex/libspeex/
nb_celp.c 67 /* Default size for the encoder and decoder stack (can be changed at compile time).
125 st->stack = NULL;
127 st->stack = (char*)speex_alloc_scratch(NB_ENC_STACK);
219 speex_free_scratch(st->stack);
273 char *stack; local
282 stack=st->stack;
322 roots=lpc_to_lsp (lpc, st->lpcSize, lsp, 10, LSP_DELTA1, stack);
349 lsp_to_lpc(interp_lsp, interp_lpc, st->lpcSize,stack);
367 filter_mem16(st->sw, bw_lpc1, bw_lpc2, st->sw, st->frameSize, st->lpcSize, st->mem_sw_whole, stack);
1096 char *stack; local
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/PBQP/
HeuristicSolver.h 107 std::vector<Graph::NodeItr> stack; member in class:PBQP::HeuristicSolverImpl
190 /// \brief Add to the end of the stack.
191 /// @param nItr Node iterator to add to the reduction stack.
194 stack.push_back(nItr);
222 /// Node will be automatically pushed to the solver stack.
227 // Nothing to do. Just push the node onto the reduction stack.
236 /// Node will be automatically pushed to the solver stack.
285 /// Node will be automatically pushed to the solver stack.
551 while (!stack.empty()) {
552 computeSolution(stack.back())
    [all...]
  /external/syslinux/com32/include/syslinux/
config.h 127 const void *stack; member in struct:syslinux_derivative_info::__anon31919
  /external/syslinux/memdisk/
memdisk16.asm 36 section .stack align=16 nobits
37 stack resb 512 label
597 ; Set up a temporary stack in the bounce buffer;
599 ; high-memory stack.
658 mov sp,[SavedSP] ; Restore stack
675 pushf ; Flags on stack
715 ; When this gets invoked, the registers are saved on the stack and
730 ; Syscall invocation. We manifest a structure on the real-mode stack,
761 stosd ; Save in stack frame
763 stosw ; Save in stack fram
    [all...]
  /external/v8/include/
v8-profiler.h 38 std::vector<CpuProfileDeoptFrame> stack; member in struct:v8::CpuProfileDeoptInfo
94 * Get a call stack sample from the isolate.
98 * \param frames Caller allocated buffer to store stack frames.
102 * provides number of actual captured stack frames and
121 void* tos; // Top stack value (*sp).
126 void* stack[kMaxFramesCount]; // Call stack. member in struct:v8::TickSample
610 * empty JS call-stack. The lifetime of the returned Node* is scoped to the
701 * |track_allocations| parameter controls whether stack trace of each
735 * currently live in the system. Each sampled allocation includes the stack
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
AmbientState.java 17 package com.android.systemui.statusbar.stack;
ExpandableViewState.java 17 package com.android.systemui.statusbar.stack;
69 * The location is in the bottom stack and it's peeking
74 * The location is in the bottom stack and it's hidden.

Completed in 1230 milliseconds

<<11121314151617181920>>