/external/compiler-rt/lib/lsan/ |
lsan_allocator.cc | 58 static void RegisterAllocation(const StackTrace &stack, void *p, uptr size) { 63 m->stack_trace_id = StackDepotPut(stack.trace, stack.size); 75 void *Allocate(const StackTrace &stack, uptr size, uptr alignment, 84 RegisterAllocation(stack, p, size); 93 void *Reallocate(const StackTrace &stack, void *p, uptr new_size, 102 RegisterAllocation(stack, p, new_size);
|
/libcore/luni/src/main/java/java/lang/ |
Throwable.java | 36 * message in most cases), and for saving a stack trace (that is, a record of 37 * the call stack at a particular point in time) which can be printed later. 43 * information. When printing the stack trace, the trace of the cause is 70 * An intermediate representation of the stack trace. This field may 76 * A fully-expanded representation of the stack trace. 81 * Constructs a new {@code Throwable} that includes the current stack trace. 89 * Constructs a new {@code Throwable} with the current stack trace and the 99 * Constructs a new {@code Throwable} with the current stack trace, the 110 * Constructs a new {@code Throwable} with the current stack trace and the 121 * Constructs a new {@code Throwable} with the current stack trace, th 318 StackTraceElement[] stack = getInternalStackTrace(); local [all...] |
/frameworks/base/services/java/com/android/server/wm/ |
StackBox.java | 67 /** Stack of Tasks, this is null exactly when mFirst and mSecond are non-null. */ 117 * Return the stackId of the stack that intersects the passed point. 120 * @return -1 if point is outside of mBounds, otherwise the stackId of the containing stack. 175 TaskStack stack = mFirst.split(stackId, relativeStackBoxId, position, weight); local 176 if (stack != null) { 177 return stack; 183 TaskStack stack = new TaskStack(mService, stackId, mDisplayContent); local 200 firstStack = stack; 205 secondStack = stack; 213 firstStack = stack; [all...] |
/bionic/libc/arch-x86/bionic/ |
clone.S | 12 # 16-byte alignment on child stack 15 # insert arguments onto the child stack 43 # with the appropriate arguments on the child stack 71 # insert arguments onto the child stack 103 # with the appropriate arguments on the child stack
|
/dalvik/vm/compiler/template/armv5te/ |
TEMPLATE_INVOKE_METHOD_CHAIN.S | 14 SAVEAREA_FROM_FP(r1, rFP) @ r1<- stack save area 16 SAVEAREA_FROM_FP(r10, r1) @ r10<- stack save area 20 bxlo r12 @ return to raise stack overflow excep.
|
/external/compiler-rt/lib/asan/ |
asan_linux.cc | 111 void ReadContextStack(void *context, uptr *stack, uptr *ssize) { 113 *stack = (uptr)ucp->uc_stack.ss_sp; 117 void ReadContextStack(void *context, uptr *stack, uptr *ssize) {
|
/external/compiler-rt/lib/msan/ |
msan.cc | 113 // Array of stack origins. 175 void GetStackTrace(StackTrace *stack, uptr max_s, uptr pc, uptr bp, 180 return stack->SlowUnwindStack(pc, max_s); 185 stack->size = 0; 186 stack->trace[0] = pc; 187 stack->max_size = max_s; 188 stack->FastUnwindStack(pc, bp, stack_top, stack_bottom); 209 StackTrace stack; local 210 GetStackTrace(&stack, kStackTraceMax, pc, bp, 215 ReportUMR(&stack, report_origin) 323 StackTrace stack; local [all...] |
/external/icu4c/layout/ |
LigatureSubstProc.cpp | 65 le_int32 stack[nComponents]; local 88 stack[++mm] = componentGlyph; 101 componentStack[m] = stack[mm--];
|
LigatureSubstProc2.cpp | 66 le_int32 stack[nComponents]; local 88 stack[++mm] = componentGlyph; 101 componentStack[m] = stack[mm--];
|
/external/valgrind/main/coregrind/m_syswrap/ |
syscall-mips32-linux.S | 72 Int nsigwords) // stack 163 addu $29, $29, 56 #release the stack frame. 185 addu $29, $29, 56 #release the stack frame. 206 /* Let the linker know we don't need an executable stack */ 207 .section .note.GNU-stack,"",%progbits
|
/libcore/luni/src/test/java/tests/api/java/util/ |
StackTest.java | 21 import java.util.Stack; 25 Stack s; 28 * java.util.Stack#Stack() 31 // Test for method java.util.Stack() 32 assertEquals("Stack creation failed", 0, s.size()); 36 * java.util.Stack#empty() 39 // Test for method boolean java.util.Stack.empty() 40 assertTrue("New stack answers non-empty", s.empty()); 42 assertTrue("Stack should not be empty but answers empty", !s.empty()) 133 Stack<Object> stack = new Stack<Object>(); local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
PyParse.py | 390 stack = [] # stack of open bracket indices 391 push_stack = stack.append 413 bracketing.append((p, len(stack))) 419 if stack: 420 del stack[-1] 423 bracketing.append((p, len(stack))) 434 bracketing.append((p, len(stack)+1)) 437 bracketing.append((p, len(stack))) 442 bracketing.append((p, len(stack)+1) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
shlex.py | 60 "Push a token onto the stack popped by the get_token method" 66 "Push an input source onto the lexer's input source stack." 80 "Pop the input source stack." 89 "Get a token from the input stream (or from stack if it's nonempty)"
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
PyParse.py | 390 stack = [] # stack of open bracket indices 391 push_stack = stack.append 413 bracketing.append((p, len(stack))) 419 if stack: 420 del stack[-1] 423 bracketing.append((p, len(stack))) 434 bracketing.append((p, len(stack)+1)) 437 bracketing.append((p, len(stack))) 442 bracketing.append((p, len(stack)+1) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
shlex.py | 60 "Push a token onto the stack popped by the get_token method" 66 "Push an input source onto the lexer's input source stack." 80 "Pop the input source stack." 89 "Get a token from the input stream (or from stack if it's nonempty)"
|
/external/chromium_org/third_party/freetype/src/cff/ |
cffparse.c | 46 parser->top = parser->stack; 452 FT_Byte** data = parser->stack; 456 if ( parser->top >= parser->stack + 6 ) 518 FT_Byte** data = parser->stack; 524 if ( parser->top >= parser->stack + 4 ) 547 FT_Byte** data = parser->stack; 553 if ( parser->top >= parser->stack + 2 ) 568 FT_Byte** data = parser->stack; 574 if ( parser->top >= parser->stack + 3 ) 749 parser->top = parser->stack; [all...] |
/external/opencv/cvaux/src/ |
cvsegment.cpp | 58 #define PUSH(Y,IL,IR,IPL,IPR,FL) { stack[StIn].y=(ushort)(Y); \ 59 stack[StIn].l=(ushort)(IL); \ 60 stack[StIn].r=(ushort)(IR); \ 61 stack[StIn].Prevl=(ushort)(IPL); \ 62 stack[StIn].Prevr=(ushort)(IPR); \ 63 stack[StIn].fl=(short)(FL); \ 67 Y=stack[StIn].y; \ 68 IL=stack[StIn].l; \ 69 IR=stack[StIn].r;\ 70 IPL=stack[StIn].Prevl; 94 Seg *stack = (Seg*)pStack; local 486 void* stack = 0; local [all...] |
/packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/ |
MimeMessage.java | 45 import java.util.Stack; 545 private final Stack<Object> stack = new Stack<Object>(); field in class:MimeMessage.MimeMessageBuilder 551 if (!c.isInstance(stack.peek())) { 552 throw new IllegalStateException("Internal stack error: " + "Expected '" 553 + c.getName() + "' found '" + stack.peek().getClass().getName() + "'"); 559 if (stack.isEmpty()) { 560 stack.push(MimeMessage.this); 565 ((Part)stack.peek()).setBody(m) [all...] |
/external/speex/libspeex/ |
sb_celp.c | 54 /* Default size for the encoder and decoder stack (can be changed at compile time). 206 st->stack = NULL; 208 /*st->stack = (char*)speex_alloc_scratch(SB_ENC_STACK);*/ 209 speex_encoder_ctl(st->st_low, SPEEX_GET_STACK, &st->stack); 270 VALGRIND_MAKE_READABLE(st, (st->stack-(char*)st)); 281 /*speex_free_scratch(st->stack);*/ 308 char *stack; local 332 stack=st->stack; 339 qmf_decomp(in, h0, low, high, st->full_frame_size, QMF_ORDER, st->h0_mem, stack); 879 char *stack; local [all...] |
/external/valgrind/main/memcheck/tests/x86-linux/ |
scalar.stderr.exp | 32 Address 0x........ is not stack'd, malloc'd or (recently) free'd 52 Address 0x........ is not stack'd, malloc'd or (recently) free'd 68 Address 0x........ is not stack'd, malloc'd or (recently) free'd 102 Address 0x........ is not stack'd, malloc'd or (recently) free'd 118 Address 0x........ is not stack'd, malloc'd or (recently) free'd 134 Address 0x........ is not stack'd, malloc'd or (recently) free'd 139 Address 0x........ is not stack'd, malloc'd or (recently) free'd 151 Address 0x........ is not stack'd, malloc'd or (recently) free'd 171 Address 0x........ is not stack'd, malloc'd or (recently) free'd 183 Address 0x........ is not stack'd, malloc'd or (recently) free' [all...] |
/external/valgrind/main/memcheck/tests/darwin/ |
scalar.stderr.exp | 24 Address 0x........ is not stack'd, malloc'd or (recently) free'd 40 Address 0x........ is not stack'd, malloc'd or (recently) free'd 53 Address 0x........ is not stack'd, malloc'd or (recently) free'd 84 Address 0x........ is not stack'd, malloc'd or (recently) free'd 88 Address 0x........ is not stack'd, malloc'd or (recently) free'd 104 Address 0x........ is not stack'd, malloc'd or (recently) free'd 108 Address 0x........ is not stack'd, malloc'd or (recently) free'd 118 Address 0x........ is not stack'd, malloc'd or (recently) free'd 131 Address 0x........ is not stack'd, malloc'd or (recently) free'd 153 Address 0x........ is not stack'd, malloc'd or (recently) free' [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...] |
/bionic/libc/arch-mips/bionic/ |
clone.S | 49 # set up child stack 115 # set up child stack
|
/external/chromium_org/build/ |
precompile.h | 105 #include <stack>
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
HeapSnapshotWorker.js | 74 this.log(new Error().stack);
|