HomeSort by relevance Sort by last modified time
    Searched refs:stack (Results 501 - 525 of 3511) sorted by null

<<21222324252627282930>>

  /system/core/libbacktrace/
BacktraceOffline.h 62 BacktraceOffline(pid_t pid, pid_t tid, BacktraceMap* map, const backtrace_stackinfo_t& stack,
68 stack_space_.start = stack.start;
69 stack_space_.end = stack.end;
70 stack_space_.data = stack.data;
  /system/core/libmemunreachable/
ThreadCapture.h 27 std::pair<uintptr_t, uintptr_t> stack; member in struct:ThreadInfo
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68k/
tls-gd-3.s 20 .section .note.GNU-stack,"",@progbits
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-m68k/
got-1.s 18 .section .note.GNU-stack,"",@progbits
tls-ie-1.s 20 .section .note.GNU-stack,"",@progbits
tls-ld-1.s 21 .section .note.GNU-stack,"",@progbits
tls-ld-2.s 19 .section .note.GNU-stack,"",@progbits
tls-le-1.s 20 .section .note.GNU-stack,"",@progbits
tls-main-1.s 19 .section .note.GNU-stack,"",@progbits
tls-no-1.s 18 .section .note.GNU-stack,"",@progbits
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-sh/
fdpic-stack-set.d 1 #source: fdpic-stack.s
3 #ld: -EB -mshelf_fd -z stack-size=0x40000
  /external/boringssl/src/crypto/perlasm/
x86asm.pl 23 if ($opcode =~ /^push/) { $stack+=4; }
24 elsif ($opcode =~ /^pop/) { $stack-=4; }
44 sub ::stack_push{ my $num=$_[0]*4; $stack+=$num; &sub("esp",$num); }
45 sub ::stack_pop { my $num=$_[0]*4; $stack-=$num; &add("esp",$num); }
46 sub ::blindpop { &pop($_[0]); $stack+=4; }
47 sub ::wparam { &DWP($stack+4*$_[0],"esp"); }
199 $stack=4;
213 $stack=0;
223 $stack+=16; # readjust esp as if we didn't pop anything
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/cloudformation/
test_stack.py 24 <StackId>arn:aws:cloudformation:ap-southeast-1:100:stack/Name/id</StackId>
59 <StackId>arn:aws:cloudformation:us-east-1:123456789:stack/MyStack/aaf549a0-a413-11df-adb3-5081b3858e83</StackId>
68 <StackId>arn:aws:cloudformation:us-east-1:123456789:stack/MyStack/aaf549a0-a413-11df-adb3-5081b3858e83</StackId>
86 arn:aws:cloudformation:us-east-1:1234567:stack/TestCreate1/aaaaa
97 arn:aws:cloudformation:us-east-1:1234567:stack/TestDelete2/bbbbb
141 ('member', boto.cloudformation.stack.Stack)
155 ('member', boto.cloudformation.stack.Stack)
167 ('member', boto.cloudformation.stack.StackResource
    [all...]
test_connection.py 44 self.stack_id = u'arn:aws:cloudformation:us-east-1:18:stack/Name/id'
269 <StackId>arn:aws:cfn:us-east-1:1:stack</StackId>
273 <ResourceType>AWS::CloudFormation::Stack</ResourceType>
280 <StackId>arn:aws:cfn:us-east-1:1:stack</StackId>
301 self.assertEqual(first.resource_type, 'AWS::CloudFormation::Stack')
302 self.assertEqual(first.stack_id, 'arn:aws:cfn:us-east-1:1:stack')
313 self.assertEqual(second.stack_id, 'arn:aws:cfn:us-east-1:1:stack')
331 <StackId>arn:aws:cfn:us-east-1:1:stack</StackId>
340 <StackId>arn:aws:cfn:us-east-1:1:stack</StackId>
362 self.assertEqual(first.stack_id, 'arn:aws:cfn:us-east-1:1:stack')
    [all...]
  /external/compiler-rt/lib/lsan/
lsan_interceptors.cc 54 return Allocate(stack, size, 1, kAlwaysClearMemory);
78 return Allocate(stack, size, 1, true);
84 return Reallocate(stack, q, size, 1);
90 return Allocate(stack, size, alignment, kAlwaysClearMemory);
96 return Allocate(stack, size, alignment, kAlwaysClearMemory);
102 *memptr = Allocate(stack, size, alignment, kAlwaysClearMemory);
112 return Allocate(stack, size, GetPageSizeCached(), kAlwaysClearMemory);
143 return Allocate(stack, size, GetPageSizeCached(), kAlwaysClearMemory);
151 return Allocate(stack, size, 1, kAlwaysClearMemory);
  /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/v8/test/cctest/wasm/
test-wasm-stack.cc 34 void PrintStackTrace(v8::Local<v8::StackTrace> stack) {
35 printf("Stack Trace (length %d):\n", stack->GetFrameCount());
36 for (int i = 0, e = stack->GetFrameCount(); i != e; ++i) {
37 v8::Local<v8::StackFrame> frame = stack->GetFrame(i);
59 // Extract stack frame from the exception.
61 v8::Local<v8::StackTrace> stack = v8::Exception::GetStackTrace(localExc); local
62 PrintStackTrace(stack);
63 CHECK(!stack.IsEmpty());
64 CHECK_EQ(N, stack->GetFrameCount())
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl_report.cc 86 // Ensure that we recovered stack completely. Trimmed stack
90 DPrintf("Bottom stack frame is missed\n");
102 StackTrace stack = StackDepotGet(stack_id);
103 if (stack.trace == nullptr)
105 return SymbolizeStack(stack);
132 ReportStack *stack = ReportStack::New(); local
133 stack->frames = top;
134 return stack;
152 void ScopedReport::AddStack(StackTrace stack, bool suppressable)
    [all...]
  /external/valgrind/memcheck/tests/
xml1.stderr.exp 36 <stack>
69 </stack>
71 <stack>
112 </stack>
120 <stack>
153 </stack>
161 <stack>
194 </stack>
202 <stack>
243 </stack>
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
RecentsCreateFragment.java 145 final DocumentStack stack = mAdapter.getItem(event.getItemPosition());
146 ((BaseActivity) getActivity()).onStackPicked(stack);
179 cursor.getColumnIndex(RecentColumns.STACK));
181 final DocumentStack stack = new DocumentStack(); local
182 DurableUtils.readFromArray(rawStack, stack);
185 // providers; we update the stack during the actual
188 stack.updateRoot(matchingRoots);
189 result.add(stack);
191 Log.w(TAG, "Failed to resolve stack: " + e);
256 final DocumentStack stack = getItem(position) local
    [all...]
  /cts/hostsidetests/services/activitymanager/src/android/server/cts/
ActivityManagerState.java 47 private final Pattern mStackIdPattern = Pattern.compile("Stack #(\\d+)\\:");
103 logE("No focused stack found...");
120 final ActivityStack stack = ActivityStack.create(mSysDump, mStackIdPattern, local
123 if (stack != null) {
124 mStacks.add(stack);
125 if (stack.mResumedActivity != null) {
126 mResumedActivities.add(stack.mResumedActivity);
193 for (ActivityStack stack : mStacks) {
194 if (stackId == stack.mStackId) {
195 return stack;
291 final ActivityStack stack = new ActivityStack(); local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/opsworks/
layer1.py 75 You can still specify Chef 0.9 for your stack, but new features
116 have a Manage permissions level for the stack or an attached
138 Assigns one of the stack's registered Amazon EBS volumes to a
140 the stack by calling RegisterVolume. For more information, see
144 have a Manage permissions level for the stack, or an attached
164 Associates one of the stack's registered Elastic IP addresses
166 registered with the stack by calling RegisterElasticIp. For
170 have a Manage permissions level for the stack, or an attached
203 have a Manage permissions level for the stack, or an attached
236 Creates a clone of a specified stack. For more information
    [all...]
  /art/runtime/arch/mips/
jni_entrypoints_mips.S 44 lw $a0, 0($sp) # restore registers from stack
52 addiu $sp, $sp, 48 # restore the stack
  /build/kati/
thread_pool.cc 19 #include <stack>
84 stack<function<void(void)>> tasks_;
  /external/bison/data/
Makefile.am 19 c++-skel.m4 c++.m4 location.cc lalr1.cc glr.cc stack.hh \

Completed in 1517 milliseconds

<<21222324252627282930>>