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

<<11121314151617181920>>

  /ndk/sources/host-tools/ndk-stack/
build-ndk-stack.sh 17 # This script is used to rebuild the host 'ndk-stack' tool.
19 # Note: The tool is installed under prebuilt/$HOST_TAG/bin/ndk-stack
27 "This script is used to rebuild the host ndk-stack binary program."
65 BUILD_DIR=$NDK_TMPDIR/build-ndk-stack
108 NAME=$(get_host_exec_name ndk-stack)
109 INSTALL_ROOT=$(mktemp -d $NDK_TMPDIR/ndk-stack-XXXXXX)
133 SRCDIR=$ANDROID_NDK_ROOT/sources/host-tools/ndk-stack
170 ARCHIVE=ndk-stack-$HOST_TAG.tar.bz2
  /system/bt/doc/
directory_layout.md 17 * doc - *Documentation* - Stack documentation.
21 * main - *Main stack entrypoint* - Provides HAL for stack access.
22 * osi - *Operating System Interface* - General resource support for stack.
24 * stack - **Deprecated** - The Stack - Push to proper spot in *./profiles*
25 * test - *Test suite* - Stack level validiation and stress test suite.
29 * vnd - *Vendor* - Vendor specific APIs - *to be integrated into rest of stack ?*.
  /external/compiler-rt/lib/msan/
msan.h 132 // High memory: heap, modules and main thread stack
154 // Main thread stack and DSOs at 0x7f0000000000 (sometimes 0x7e0000000000).
231 void *MsanCalloc(StackTrace *stack, uptr nmemb, uptr size);
232 void *MsanReallocate(StackTrace *stack, void *oldp, uptr size,
234 void MsanDeallocate(StackTrace *stack, void *ptr);
252 void GetStackTrace(BufferedStackTrace *stack, uptr max_s, uptr pc, uptr bp,
255 void ReportUMR(StackTrace *stack, u32 origin);
256 void ReportExpectedUMRNotFound(StackTrace *stack);
267 // Returns a "chained" origin id, pointing to the given stack trace followed by
269 u32 ChainOrigin(u32 id, StackTrace *stack);
    [all...]
  /external/valgrind/memcheck/tests/solaris/
scalar_ioctl.stderr.exp 15 Address 0x........ is not stack'd, malloc'd or (recently) free'd
31 Address 0x........ is not stack'd, malloc'd or (recently) free'd
47 Address 0x........ is on thread 1's stack
51 Address 0x........ is not stack'd, malloc'd or (recently) free'd
55 Address 0x........ is not stack'd, malloc'd or (recently) free'd
71 Address 0x........ is on thread 1's stack
75 Address 0x........ is on thread 1's stack
79 Address 0x........ is not stack'd, malloc'd or (recently) free'd
83 Address 0x........ is not stack'd, malloc'd or (recently) free'd
87 Address 0x........ is not stack'd, malloc'd or (recently) free'
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
DockedStackDividerController.java 62 * Keeps information about the docked stack divider.
285 TaskStack stack = mDisplayContent.mService.mStackIdToStack.get(DOCKED_STACK_ID); local
287 // If the stack is invisible, we policy force hide it in WindowAnimator.shouldForceHide
288 final boolean visible = stack != null;
325 TaskStack stack = mDisplayContent.getDockedStackLocked(); local
326 if (stack == null) {
328 // stack was already removed. This is because we are on AM thread and the removal of the
330 // keep putting it in the same place it was before the stack was removed to have
335 stack.getDimBounds(mTmpRect);
337 int side = stack.getDockSide()
470 final TaskStack stack = mDisplayContent.mService.mStackIdToStack.get(targetStackId); local
600 final TaskStack stack = stacks.get(i); local
639 final TaskStack stack = stacks.get(i); local
689 final TaskStack stack = mDisplayContent.getDockedStackVisibleForUserLocked(); local
727 final TaskStack stack = stacks.get(i); local
759 final TaskStack stack = mService.mStackIdToStack.get(DOCKED_STACK_ID); local
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_suppressions.cc 111 uptr IsSuppressed(ReportType typ, const ReportStack *stack, Suppression **sp) {
113 if (!suppression_ctx->SuppressionCount() || stack == 0 ||
114 !stack->suppressable)
119 for (const SymbolizedStack *frame = stack->frames; frame;
125 if (0 == internal_strcmp(stype, kSuppressionRace) && stack->frames != nullptr)
126 return IsSuppressed(kSuppressionRaceTop, stack->frames->info, sp);
  /external/v8/test/mjsunit/regress/
regress-4815.js 8 // stack trace.
15 assertTrue(e.stack.indexOf(nativeFuncName) >= 0, nativeFuncName);
27 assertTrue(e.stack.indexOf(nativeFuncName) >= 0, nativeFuncName);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/tv/views/
RecentsTvTransitionHelper.java 49 public void launchTaskFromRecents(final TaskStack stack, @Nullable final Task task,
82 startTaskActivity(stack, task, taskView, opts, animStartedListener);
86 startTaskActivity(stack, task, taskView, opts, animStartedListener);
90 private void startTaskActivity(TaskStack stack, Task task, @Nullable TaskCardView taskView,
96 int taskIndex = stack.indexOfStackTask(task);
98 taskIndexFromFront = stack.getTaskCount() - taskIndex - 1;
  /prebuilts/gdb/darwin-x86/lib/python2.7/
multifile.py 45 self.stack = []
81 self.level = len(self.stack)
95 for i, sep in enumerate(reversed(self.stack)):
136 self.stack.append(sep)
142 if self.stack == []:
149 self.stack.pop()
  /prebuilts/gdb/linux-x86/lib/python2.7/
multifile.py 45 self.stack = []
81 self.level = len(self.stack)
95 for i, sep in enumerate(reversed(self.stack)):
136 self.stack.append(sep)
142 if self.stack == []:
149 self.stack.pop()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
multifile.py 45 self.stack = []
81 self.level = len(self.stack)
95 for i, sep in enumerate(reversed(self.stack)):
136 self.stack.append(sep)
142 if self.stack == []:
149 self.stack.pop()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
multifile.py 45 self.stack = []
81 self.level = len(self.stack)
95 for i, sep in enumerate(reversed(self.stack)):
136 self.stack.append(sep)
142 if self.stack == []:
149 self.stack.pop()
  /bionic/libc/arch-mips64/bionic/
__bionic_clone.S 46 PTR_SUBU sp, FRAMESZ # allocate stack frame
50 # set up child stack
58 PTR_L t0,FRAME_GP(sp) # copy gp to child stack
87 * For O32 etc the child stack must have space for a0..a3 to be stored
88 * For N64 etc, the child stack can be restored to the original value
  /external/bison/examples/calc++/
calc++-parser.hh 57 #include "stack.hh"
161 /// State stack type.
162 typedef stack<state_type> state_stack_type;
163 /// Semantic value stack type.
164 typedef stack<semantic_type> semantic_stack_type;
165 /// location stack type.
166 typedef stack<location_type> location_stack_type;
168 /// The state stack.
170 /// The semantic value stack.
172 /// The location stack
    [all...]
  /external/bison/lib/
timevar.c 146 /* If this variable is timed independently of the timing stack,
158 the timing stack. */
162 /* An element on the timing stack. Elapsed time is attributed to the
163 topmost timing variable on the stack. */
167 /* The timing variable at this stack level. */
170 /* The next lower timing variable context in the stack. */
178 /* The top of the timing stack. */
179 static struct timevar_stack_def *stack; variable in typeref:struct:timevar_stack_def
185 /* The time at which the topmost element on the timing stack was
276 /* Push TIMEVAR onto the timing stack. No further elapsed time i
    [all...]
  /external/chromium-trace/catapult/third_party/coverage/coverage/
debug.py 84 """Return a string summarizing the call stack.
86 The string is multi-line, with one line per stack frame. Each line shows
96 stack = inspect.stack()[:0:-1]
97 return "\n".join("%30s : %s @%d" % (t[3], t[1], t[2]) for t in stack)
101 """Print a summary of the stack to stdout, or some place else."""
  /external/compiler-rt/lib/asan/
asan_linux.cc 154 void ReadContextStack(void *context, uptr *stack, uptr *ssize) {
156 *stack = (uptr)ucp->uc_stack.ss_sp;
160 void ReadContextStack(void *context, uptr *stack, uptr *ssize) {
  /external/compiler-rt/lib/tsan/tests/unit/
tsan_shadow_test.cc 51 int stack; local
56 CHECK(IsAppMem((uptr)&stack));
60 CHECK(IsShadowMem(MemToShadow((uptr)&stack)));
  /external/google-breakpad/src/processor/
stackwalker_ppc.cc 55 // supplied stack are invalid. Mark memory_ = NULL, which will cause
84 StackFrame* StackwalkerPPC::GetCallerFrame(const CallStack* stack,
86 if (!memory_ || !stack) {
87 BPLOG(ERROR) << "Can't get caller frame without memory or stack";
91 // The instruction pointers for previous frames are saved on the stack.
93 // its return address in the calling procedure's stack frame at 8(%r1),
94 // and to allocate its own stack frame by decrementing %r1 (the stack
96 // no hardware stack, there is no distinction between the stack pointer an
    [all...]
  /external/libunwind/doc/
unw_step.tex 8 \begin{Name}{3}{unw\_step}{David Mosberger-Tang}{Programming Library}{unw\_step}unw\_step -- advance to next stack frame
20 the next older, less deeply nested stack frame.
25 if the updated cursor refers to a valid stack frame, or 0 if the
26 previous stack frame was the last frame in the chain. On error, the
44 (``program-counter'') of the next stack frame is invalid (e.g., not
46 \item[\Const{UNW\_EBADFRAME}] The next stack frame is invalid.
  /external/v8/test/mjsunit/compiler/
regress-stacktrace.js 28 // Test correctness of stack traces with global functions.
42 var stack = e.stack.toString();
43 var p3 = stack.indexOf("at three");
44 var p2 = stack.indexOf("at two");
45 var p1 = stack.indexOf("at one");
  /external/v8/test/webkit/
stack-unwinding.js 26 "This test checks that JavaScriptCore does not crash when uwinding the stack that includes a host function."
31 var stack = [];
32 stack.push({ "args": twoHostFunctions.arguments });
33 stack.push({ "args": twoHostFunctions.arguments });
51 var stack = [];
52 stack.push({ "args": hostAndException.arguments });
  /external/valgrind/memcheck/tests/
origin1-yes.stderr.exp 2 Undef 1 of 8 (stack, 32 bit)
5 Uninitialised value was created by a stack allocation
9 Undef 2 of 8 (stack, 32 bit)
12 Uninitialised value was created by a stack allocation
16 Undef 3 of 8 (stack, 64 bit)
19 Uninitialised value was created by a stack allocation
  /external/valgrind/none/tests/linux/
pthread-stack.c 3 ==8336== Can't extend stack to 0x4033f98 during signal delivery for thread 2:
4 ==8336== no stack segment
6 The reason was that only AnonC segments were considered as stack
72 /* Create a file that will be used as stack for a pthread. */
85 /* Create a file-based stack for the child */
91 void *stack = mmap(NULL, stack_size, PROT_READ|PROT_WRITE, local
93 assert(stack != (void *)-1);
96 r = pthread_attr_setstack(&attr, stack, stack_size);
  /external/valgrind/none/tests/solaris/
pthread-stack.c 3 ==8336== Can't extend stack to 0x4033f98 during signal delivery for thread 2:
4 ==8336== no stack segment
6 The reason was that only AnonC segments were considered as stack
67 /* Create a file that will be used as stack for a pthread. */
79 /* Create a file-based stack for the child. */
85 void *stack = mmap(NULL, stack_size, PROT_READ|PROT_WRITE, local
87 assert(stack != (void *)-1);
90 int r = pthread_attr_setstack(&attr, stack, stack_size);

Completed in 1628 milliseconds

<<11121314151617181920>>