/frameworks/base/services/java/com/android/server/am/ |
ActivityStackSupervisor.java | 137 /** The stack containing the launcher app */ 140 /** The non-home stack currently receiving input or launching the next activity. If home is 206 /** Stack id of the front stack when user switched, indexed by userId. */ 266 boolean isFrontStack(ActivityStack stack) { 267 return !(stack.isHomeStack() ^ getFocusedStack().isHomeStack()); 305 ActivityStack stack = mStacks.get(stackNdx); local 306 TaskRecord task = stack.taskForIdLocked(id); 336 final ActivityStack stack = task.stack; local 355 ActivityStack stack = getFocusedStack(); local 373 final ActivityStack stack = mStacks.get(stackNdx); local 404 final ActivityStack stack = mStacks.get(stackNdx); local 418 final ActivityStack stack = mStacks.get(stackNdx); local 446 final ActivityStack stack = mStacks.get(stackNdx); local 463 final ActivityStack stack = mStacks.get(stackNdx); local 477 final ActivityStack stack = mStacks.get(stackNdx); local 529 final ActivityStack stack = mStacks.get(stackNdx); local 548 final ActivityStack stack = mStacks.get(stackNdx); local 665 final ActivityStack stack = getFocusedStack(); local 911 final ActivityStack stack = r.task.stack; local 1236 final ActivityStack stack = getFocusedStack(); local 1297 ActivityStack stack = mStacks.get(stackNdx); local 1919 final ActivityStack stack = r.task.stack; local 1968 final ActivityStack stack = mStacks.get(stackNdx); local 1984 final ActivityStack stack = mStacks.get(stackNdx); local 2002 final ActivityStack stack = mStacks.get(stackNdx); local 2034 final ActivityStack stack = mStacks.get(stackNdx); local 2049 final ActivityStack stack = mStacks.get(stackNdx); local 2066 final ActivityStack stack = mStacks.get(stackNdx); local 2096 final ActivityStack stack = getStack(stackId); local 2110 final ActivityStack stack = mStacks.get(stackNdx); local 2189 final ActivityStack stack = mStacks.get(stackNdx); local 2250 final ActivityStack stack = r.task.stack; local 2265 final ActivityStack stack = mStacks.get(stackNdx); local 2274 final ActivityStack stack = mStacks.get(stackNdx); local 2282 final ActivityStack stack = mStacks.get(stackNdx); local 2292 final ActivityStack stack = mStacks.get(stackNdx); local 2307 ActivityStack stack = getStack(restoreStackId); local 2359 final ActivityStack stack = mStacks.get(stackNdx); local 2436 final ActivityStack stack = mStacks.get(stackNdx); local [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
ASN1OutputStream.java | 90 byte[] stack = new byte[5]; 91 int pos = stack.length; 93 stack[--pos] = (byte)(tagNo & 0x7F); 98 stack[--pos] = (byte)(tagNo & 0x7F | 0x80); 102 write(stack, pos, stack.length - pos);
|
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/ |
stack_trace_table_test.cc | 46 t1.stack[0] = reinterpret_cast<void*>(1); 47 t1.stack[1] = reinterpret_cast<void*>(2); 53 t2.stack[0] = reinterpret_cast<void*>(2); 54 t2.stack[1] = reinterpret_cast<void*>(1); 80 // Same stack as t1, but w/ different size 84 t3.stack[0] = reinterpret_cast<void*>(1); 85 t3.stack[1] = reinterpret_cast<void*>(2);
|
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/ |
stack_trace_table_test.cc | 46 t1.stack[0] = reinterpret_cast<void*>(1); 47 t1.stack[1] = reinterpret_cast<void*>(2); 53 t2.stack[0] = reinterpret_cast<void*>(2); 54 t2.stack[1] = reinterpret_cast<void*>(1); 80 // Same stack as t1, but w/ different size 84 t3.stack[0] = reinterpret_cast<void*>(1); 85 t3.stack[1] = reinterpret_cast<void*>(2);
|
/external/valgrind/main/memcheck/tests/ |
writev1.stderr.exp | 5 Address 0x........ is not stack'd, malloc'd or (recently) free'd 11 Address 0x........ is not stack'd, malloc'd or (recently) free'd 17 Address 0x........ is not stack'd, malloc'd or (recently) free'd
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/ |
misc.py | 31 class Stack: 33 self.stack = [] 34 self.pop = self.stack.pop 36 return len(self.stack) 38 self.stack.append(elt) 40 return self.stack[-1] 42 return self.stack[index]
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/ |
misc.py | 31 class Stack: 33 self.stack = [] 34 self.pop = self.stack.pop 36 return len(self.stack) 38 self.stack.append(elt) 40 return self.stack[-1] 42 return self.stack[index]
|
/external/compiler-rt/lib/asan/ |
asan_allocator2.cc | 199 // If we don't use stack depot, we store the alloc/free stack traces 227 static void GetStackTraceFromId(u32 id, StackTrace *stack) { 232 internal_memcpy(stack->trace, trace, sizeof(uptr) * size); 233 stack->size = size; 236 void AsanChunkView::GetAllocStack(StackTrace *stack) { 238 GetStackTraceFromId(chunk_->alloc_context_id, stack); 240 StackTrace::UncompressStack(stack, chunk_->AllocStackBeg(), 244 void AsanChunkView::GetFreeStack(StackTrace *stack) { 246 GetStackTraceFromId(chunk_->free_context_id, stack); [all...] |
asan_report.cc | 134 PrintShadowByte(" Stack left redzone: ", kAsanStackLeftRedzoneMagic); 135 PrintShadowByte(" Stack mid redzone: ", kAsanStackMidRedzoneMagic); 136 PrintShadowByte(" Stack right redzone: ", kAsanStackRightRedzoneMagic); 137 PrintShadowByte(" Stack partial redzone: ", kAsanStackPartialRedzoneMagic); 138 PrintShadowByte(" Stack after return: ", kAsanStackAfterReturnMagic); 139 PrintShadowByte(" Stack use after scope: ", kAsanStackUseAfterScopeMagic); 290 Printf("Address %p is located in stack of thread T%d%s " 296 // We print this frame as a stack trace with one element. 298 // The frame numbers may be different than those in the stack trace printed 301 // (e.g. use-after-scope, or different thread's stack) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
pickle.py | 102 MARK = '(' # push special markobject on stack 104 POP = '0' # discard topmost stack item 105 POP_MARK = '1' # discard stack top through topmost markobject 106 DUP = '2' # duplicate top stack item 115 BINPERSID = 'Q' # " " " ; " " " " stack 116 REDUCE = 'R' # apply callable to argtuple, both on stack 122 APPEND = 'a' # append stack top to list below it 125 DICT = 'd' # build a dict from stack items 127 APPENDS = 'e' # extend list on stack by topmost stack slic [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
pickle.py | 102 MARK = '(' # push special markobject on stack 104 POP = '0' # discard topmost stack item 105 POP_MARK = '1' # discard stack top through topmost markobject 106 DUP = '2' # duplicate top stack item 115 BINPERSID = 'Q' # " " " ; " " " " stack 116 REDUCE = 'R' # apply callable to argtuple, both on stack 122 APPEND = 'a' # append stack top to list below it 125 DICT = 'd' # build a dict from stack items 127 APPENDS = 'e' # extend list on stack by topmost stack slic [all...] |
/frameworks/base/core/java/android/util/ |
JsonWriter.java | 125 private final List<JsonScope> stack = new ArrayList<JsonScope>(); field in class:JsonWriter 127 stack.add(JsonScope.EMPTY_DOCUMENT); 240 stack.add(empty); 253 throw new IllegalStateException("Nesting problem: " + stack); 256 stack.remove(stack.size() - 1); 265 * Returns the value on the top of the stack. 268 return stack.get(stack.size() - 1); 272 * Replace the value on the top of the stack with the given value [all...] |
/art/runtime/arch/arm/ |
jni_entrypoints_arm.S | 28 sub sp, #12 @ pad stack pointer to align frame 33 add sp, #12 @ restore stack pointer 62 add sp, #12 @ rewind stack
|
/dalvik/vm/mterp/x86/ |
binflop.S | 9 $load (rFP,%eax,4) # vCC to fp stack
|
binflop2addr.S | 10 $load (rFP,%ecx,4) # vAA to fp stack
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
IncomingMessageInterstitial.java | 50 * Perform a switch to the app. A new activity stack is started, replacing 58 // Build the new activity stack, launch it, and finish this UI. 59 Intent[] stack = IncomingMessage.makeMessageIntentStack(this, from, msg); local 60 startActivities(stack);
|
/external/chromium_org/media/webm/chromeos/ |
webm_encoder.h | 9 #include <stack> 90 // Stack with start offsets of currently open sub-elements. 91 std::stack<long int> ebml_sub_elements_;
|
/external/chromium_org/third_party/bintrees/bintrees/ |
cwalker.pyx | 11 from stack cimport * 18 self.stack = stack_init(MAXSTACK) 21 stack_delete(self.stack) 28 stack_reset(self.stack) 61 stack_push(self.stack, self.node) 64 if stack_is_empty(self.stack) != 0: 65 raise IndexError('pop(): stack is empty') 66 self.node = stack_pop(self.stack) 69 return <bint> stack_is_empty(self.stack)
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
profiledata.h | 50 // Each sample contains a stack trace and a count. Memory usage is 51 // reduced by combining profile samples that have the same stack trace 103 static const int kMaxStackDepth = 64; // Max stack depth stored in profile 126 // entries from 'stack'. (depth must be > 0.) At most 127 // kMaxStackDepth stack entries will be recorded, starting with 128 // stack[0]. 132 void Add(int depth, const void* const* stack); 155 Slot depth; // Stack depth 156 Slot stack[kMaxStackDepth]; // Stack content member in struct:ProfileData::Entry [all...] |
stacktrace_config.h | 58 # error Cannnot calculate stack trace: need either libunwind or frame-pointers (see INSTALL file) 60 # error Cannnot calculate stack trace: need libunwind (see INSTALL file)
|
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
profiledata.h | 50 // Each sample contains a stack trace and a count. Memory usage is 51 // reduced by combining profile samples that have the same stack trace 103 static const int kMaxStackDepth = 64; // Max stack depth stored in profile 126 // entries from 'stack'. (depth must be > 0.) At most 127 // kMaxStackDepth stack entries will be recorded, starting with 128 // stack[0]. 132 void Add(int depth, const void* const* stack); 155 Slot depth; // Stack depth 156 Slot stack[kMaxStackDepth]; // Stack content member in struct:ProfileData::Entry [all...] |
stacktrace_config.h | 58 # error Cannnot calculate stack trace: need either libunwind or frame-pointers (see INSTALL file) 60 # error Cannnot calculate stack trace: need libunwind (see INSTALL file)
|
/external/chromium_org/tools/deep_memory_profiler/visualizer/ |
run.sh | 10 cp ../../../third_party/flot/jquery.flot.stack.min.js static/third_party/flot
|
/external/valgrind/main/drd/tests/ |
annotate_barrier_xml.stderr.exp | 39 <stack> 64 </stack> 72 <stack> 97 </stack> 105 <stack> 130 </stack> 138 <stack> 163 </stack> 171 <stack> 193 </stack> [all...] |
fp_race.stderr.exp | 7 (thread finished, call stack no longer available) 9 (thread finished, call stack no longer available) 16 (thread finished, call stack no longer available) 18 (thread finished, call stack no longer available)
|