| /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome/ |
| desktop_browser_backend.py | 456 # ostensibly crashed stack associated with the exception context 457 # record (".ecxr;kb30"). Note that stack dumps, including that 465 # cdb output can start the stack with "ChildEBP", "Child-SP", and possibly 467 # stack, include output from the beginning. 509 """Returns a stack trace if a valid minidump is found, will return a tuple 546 stack = self._GetStackFromMinidump(minidump_path) 547 if not stack: 549 error_message = ('Failed to symbolize minidump. Raw stack is uploaded to' 554 return (True, stack)
|
| /external/chromium-trace/catapult/third_party/closure_linter/closure_linter/ |
| ecmametadatapass.py | 145 stack = [] 148 stack.append(context.type) 150 return 'Context(%s)' % ' > '.join(stack) 255 """Adds a context of the given type to the context stack. 263 """Moves up one level in the context stack. 280 """Pops the context stack until a context of the given type is popped. 535 # In this case the statement ends after the null, when the context stack
|
| /external/elfutils/tests/ |
| Makefile.am | 119 run-backtrace-demangle.sh run-stack-d-test.sh run-stack-i-test.sh \ 120 run-stack-demangled-test.sh run-readelf-zx.sh run-readelf-zp.sh \ 297 run-stack-d-test.sh run-stack-i-test.sh \ 298 run-stack-demangled-test.sh \
|
| /external/libavc/common/arm/ |
| ih264_inter_pred_filters_luma_vert_a9q.s | 105 stmfd sp!, {r4-r12, r14} @store register values to stack 106 vstmdb sp!, {d8-d15} @push neon registers to stack 299 ldmfd sp!, {r4-r12, pc} @Restoring registers from stack
|
| ih264_inter_pred_luma_bilinear_a9q.s | 122 stmfd sp!, {r4-r12, r14} @store register values to stack 123 vstmdb sp!, {d8-d15} @push neon registers to stack 396 ldmfd sp!, {r4-r12, pc} @Restoring registers from stack
|
| /external/libnfc-nci/halimpl/bcm2079x/gki/ulinux/ |
| gki_ulinux.c | 208 ** stack - (input) pointer to the top of the stack (highest memory location) 209 ** stacksize - (input) size of the stack allocated for the task 218 UINT8 GKI_create_task (TASKPTR task_entry, UINT8 task_id, INT8 *taskname, UINT16 *stack, UINT16 stacksize, void* pCondVar, void* pMutex) 229 GKI_TRACE_5 ("GKI_create_task func=0x%x id=%d name=%s stack=0x%x stackSize=%d", task_entry, task_id, taskname, stack, stacksize); 300 stack, 603 ** NOTE This function is NOT called by the Widcomm stack and 857 ** NOTE This function is NOT called by the Widcomm stack and 880 ** NOTE The Widcomm upper stack and profiles may run as a single task [all...] |
| /external/libnfc-nci/src/gki/ulinux/ |
| gki_ulinux.c | 205 ** stack - (input) pointer to the top of the stack (highest memory location) 206 ** stacksize - (input) size of the stack allocated for the task 215 UINT8 GKI_create_task (TASKPTR task_entry, UINT8 task_id, INT8 *taskname, UINT16 *stack, UINT16 stacksize, void* pCondVar, void* pMutex) 226 GKI_TRACE_5 ("GKI_create_task func=0x%x id=%d name=%s stack=0x%x stackSize=%d", task_entry, task_id, taskname, stack, stacksize); 297 stack, 580 ** NOTE This function is NOT called by the Widcomm stack and 834 ** NOTE This function is NOT called by the Widcomm stack and 857 ** NOTE The Widcomm upper stack and profiles may run as a single task [all...] |
| /external/libunwind_llvm/src/ |
| DwarfInstructions.hpp | 198 // By definition, the CFA is the stack pointer at the call site, so 228 pint_t stack[100]; local 229 pint_t *sp = stack; 234 for (pint_t *t = sp; t > stack; --t) { 253 // pop stack, dereference, push result 349 // push top of stack 353 fprintf(stderr, "duplicate top of stack\n"); 360 fprintf(stderr, "pop top of stack\n"); 368 fprintf(stderr, "duplicate second in stack\n"); 378 fprintf(stderr, "duplicate %d in stack\n", reg) [all...] |
| /external/opencv/cv/src/ |
| cvcalibinit.cpp | 544 CvSeq* stack = cvCreateSeq( 0, sizeof(*stack), sizeof(void*), temp_storage ); local 572 cvSeqPush(stack, &start); 580 while( stack->total ) 583 cvSeqPop( stack, &q ); 618 cvSeqPush( stack, &neighbor ); 1142 CvSeq* stack = cvCreateSeq( 0, sizeof(*stack), sizeof(void*), temp_storage ); local [all...] |
| /frameworks/native/opengl/libagl/ |
| context.h | 455 matrixf_t *stack; member in struct:android::gl::matrix_stack_t 469 matrixf_t& top() { return stack[depth]; } 470 const matrixf_t& top() const { return stack[depth]; }
|
| /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/arm/neon/ |
| sixtappredict8x8_neon.asm | 33 ; stack(r4) unsigned char *dst_ptr, 34 ; stack(r5) int dst_pitch 41 ldr r4, [sp, #12] ;load parameters from stack 42 ldr r5, [sp, #16] ;load parameters from stack 55 sub sp, sp, #64 ;reserve space on stack for temporary storage 246 vld1.u8 {q9}, [lr]! ;load intermediate data from stack
|
| /libcore/luni/src/main/java/java/util/concurrent/ |
| CompletableFuture.java | 92 * collected in a linked stack. It atomically completes by CASing 110 * as Treiber stacks headed by field "stack". There are Completion 152 * x's stack (unless done), and started or triggered via 175 * Treiber stack wait-nodes used in FutureTask, Phaser, and 192 volatile Completion stack; // Top of Treiber stack of dependent actions field in class:CompletableFuture 199 return U.compareAndSwapObject(this, STACK, cmp, val); 202 /** Returns true if successfully pushed c onto stack. */ 204 Completion h = stack; 206 return U.compareAndSwapObject(this, STACK, h, c) [all...] |
| /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/ |
| DwarfInstructions.hpp | 198 // By definition, the CFA is the stack pointer at the call site, so 228 pint_t stack[100]; local 229 pint_t *sp = stack; 234 for (pint_t *t = sp; t > stack; --t) { 253 // pop stack, dereference, push result 349 // push top of stack 353 fprintf(stderr, "duplicate top of stack\n"); 360 fprintf(stderr, "pop top of stack\n"); 368 fprintf(stderr, "duplicate second in stack\n"); 378 fprintf(stderr, "duplicate %d in stack\n", reg) [all...] |
| /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/ |
| FusionDictionary.java | 286 ArrayList<PtNode> stack = ptNodeArray.mData; local 288 for (int i = 0; i < stack.size(); ++i) { 289 int currentValue = stack.get(i).mChars[0]; 291 throw new RuntimeException("Invalid stack");
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/ |
| pycodegen.py | 206 self.locals = misc.Stack() 207 self.setups = misc.Stack() 573 stack = [] 581 stack.insert(0, (start, cont, anchor)) 586 for start, cont, anchor in stack: 597 stack = [] 605 stack.insert(0, (start, cont, anchor)) 610 for start, cont, anchor in stack: 621 stack = [] 629 stack.insert(0, (start, cont, anchor) [all...] |
| /prebuilts/gdb/linux-x86/lib/python2.7/compiler/ |
| pycodegen.py | 206 self.locals = misc.Stack() 207 self.setups = misc.Stack() 573 stack = [] 581 stack.insert(0, (start, cont, anchor)) 586 for start, cont, anchor in stack: 597 stack = [] 605 stack.insert(0, (start, cont, anchor)) 610 for start, cont, anchor in stack: 621 stack = [] 629 stack.insert(0, (start, cont, anchor) [all...] |
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/ |
| pycodegen.py | 206 self.locals = misc.Stack() 207 self.setups = misc.Stack() 573 stack = [] 581 stack.insert(0, (start, cont, anchor)) 586 for start, cont, anchor in stack: 597 stack = [] 605 stack.insert(0, (start, cont, anchor)) 610 for start, cont, anchor in stack: 621 stack = [] 629 stack.insert(0, (start, cont, anchor) [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/ |
| pycodegen.py | 206 self.locals = misc.Stack() 207 self.setups = misc.Stack() 573 stack = [] 581 stack.insert(0, (start, cont, anchor)) 586 for start, cont, anchor in stack: 597 stack = [] 605 stack.insert(0, (start, cont, anchor)) 610 for start, cont, anchor in stack: 621 stack = [] 629 stack.insert(0, (start, cont, anchor) [all...] |
| /system/core/libutils/ |
| Threads.cpp | 669 status_t Thread::run(const char* name, int32_t priority, size_t stack) 694 this, name, priority, stack, &mThread); 697 this, name, priority, stack, &mThread);
|
| /system/keymaster/ |
| attestation_record.cpp | 535 // Copy all enumerated values with the specified tag from stack to auth_list. 536 static bool get_repeated_enums(const stack_st_ASN1_INTEGER* stack, keymaster_tag_t tag, 539 for (size_t i = 0; i < sk_ASN1_INTEGER_num(stack); ++i) { 541 keymaster_param_enum(tag, ASN1_INTEGER_get(sk_ASN1_INTEGER_value(stack, i)))))
|
| /external/guice/extensions/persist/lib/ |
| xwork-2.0.4.jar | |
| /build/tools/droiddoc/templates-ndk/assets/js/ |
| prettify.js | 17 j;var u=i.ownerDocument,v=u.createElement("SPAN");v.className=d[a+1];var x=i.parentNode;x.replaceChild(v,i);v.appendChild(i);e<o&&(l[h+1]=i=u.createTextNode(t.substring(b,o)),x.insertBefore(i,v.nextSibling))}e=b;e>=o&&(h+=2);e>=c&&(a+=2)}}catch(w){"console"in window&&console.log(w&&w.stack?w.stack:w)}}var v=["break,continue,do,else,for,if,return,while"],w=[[v,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"], 20 J=[v,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],v=[v,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],K=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/,N=/\S/,O=u({keywords:[F,H,w,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END"+
|
| /build/tools/droiddoc/templates-sac/assets/js/ |
| prettify.js | 17 j;var u=i.ownerDocument,v=u.createElement("SPAN");v.className=d[a+1];var x=i.parentNode;x.replaceChild(v,i);v.appendChild(i);e<o&&(l[h+1]=i=u.createTextNode(t.substring(b,o)),x.insertBefore(i,v.nextSibling))}e=b;e>=o&&(h+=2);e>=c&&(a+=2)}}catch(w){"console"in window&&console.log(w&&w.stack?w.stack:w)}}var v=["break,continue,do,else,for,if,return,while"],w=[[v,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"], 20 J=[v,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],v=[v,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],K=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/,N=/\S/,O=u({keywords:[F,H,w,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END"+
|
| /build/tools/droiddoc/templates-sdk/assets/js/ |
| prettify.js | 17 j;var u=i.ownerDocument,v=u.createElement("SPAN");v.className=d[a+1];var x=i.parentNode;x.replaceChild(v,i);v.appendChild(i);e<o&&(l[h+1]=i=u.createTextNode(t.substring(b,o)),x.insertBefore(i,v.nextSibling))}e=b;e>=o&&(h+=2);e>=c&&(a+=2)}}catch(w){"console"in window&&console.log(w&&w.stack?w.stack:w)}}var v=["break,continue,do,else,for,if,return,while"],w=[[v,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"], 20 J=[v,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],v=[v,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],K=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/,N=/\S/,O=u({keywords:[F,H,w,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END"+
|
| /external/google-breakpad/src/tools/linux/md2core/ |
| minidump-2-core.cc | 219 const uint8_t* stack; member in struct:CrashedProcess::Thread 412 thread.stack_addr = rawthread->stack.start_of_memory_range; 414 full_file.Subrange(rawthread->stack.memory); 415 thread.stack = stack_range.data(); 416 thread.stack_length = rawthread->stack.memory.data_size; [all...] |