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

<<11121314151617181920>>

  /frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/
StateTest.java 57 assertEquals(DIR_2, mState.stack.getFirst());
64 assertEquals(DIR_1, mState.stack.getFirst());
  /frameworks/compile/mclinker/include/mcld/Script/
ScriptScanner.h 30 #include <stack>
56 std::stack<ScriptFile::Kind> m_StateStack;
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiTestUtil.java 28 * Walk up the stack and find the first method annotated with @Test
32 StackTraceElement[] stack = Thread.currentThread().getStackTrace(); local
33 for (StackTraceElement e : stack) {
41 throw new RuntimeException("Could not find class from stack", ex);
55 throw new RuntimeException("Could not find a test method in the stack");
  /packages/services/Car/libvehiclenetwork/native/
HandlerThread.cpp 38 status_t HandlerThread::start(const char* name, int32_t priority, size_t stack) {
39 return run(name, priority, stack);
  /system/bt/utils/
Android.mk 10 $(LOCAL_PATH)/../stack/include \
  /system/media/brillo/audio/audioservice/
audio_daemon.h 22 #include <stack>
64 std::stack<base::File> files_;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
ccs.s 14 stmfd r13!, {r0 - r12, lr}; push registers and link register on to stack
25 ldmfd r13!, {r0 - r12, lr}; pop registers and link register from stack
  /bionic/libc/arch-common/bionic/
crtend.S 44 .section .note.GNU-stack,"",%progbits
  /external/chromium-trace/catapult/third_party/coverage/coverage/
bytecode.py 77 self.stack = [code]
80 while self.stack:
81 # We're going to return the code object on the stack, but first
83 code = self.stack.pop()
86 self.stack.append(c)
  /external/compiler-rt/lib/asan/
asan_new_delete.cc 42 return asan_memalign(0, size, &stack, type);
89 asan_free(ptr, &stack, type);
111 asan_sized_free(ptr, size, &stack, FROM_NEW);
116 asan_sized_free(ptr, size, &stack, FROM_NEW_BR);
asan_suppressions.cc 73 bool IsStackTraceSuppressed(const StackTrace *stack) {
80 for (uptr i = 0; i < stack->size && stack->trace[i]; i++) {
81 uptr addr = stack->trace[i];
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer_libbacktrace.h 36 bool SymbolizePC(uptr addr, SymbolizedStack *stack) override;
  /external/google-breakpad/src/processor/
stackwalker_mips.h 32 // Provides stack frames given MIPS register context and a memory region
54 // included in the stack. The other arguments are passed directly
63 // Implementation of Stackwalker, using mips context and stack conventions.
65 virtual StackFrame* GetCallerFrame(const CallStack* stack,
68 // Use cfi_frame_info (derived from STACK CFI records) to construct
74 // Scan the stack for plausible return address and frame pointer pair.
78 // Stores the CPU context corresponding to the innermost stack frame to
  /external/nist-sip/java/gov/nist/javax/sip/stack/
HandshakeCompletedListenerImpl.java 19 package gov.nist.javax.sip.stack;
  /external/strace/linux/x86_64/
arch_sigreturn.c 14 uint32_t flags, link, stack[3], pad; member in struct:__anon22858
  /external/valgrind/memcheck/tests/linux/
rfcomm.stderr.exp 4 Address 0x........ is on thread 1's stack
12 Address 0x........ is on thread 1's stack
20 Address 0x........ is on thread 1's stack
28 Address 0x........ is on thread 1's stack
36 Address 0x........ is on thread 1's stack
44 Address 0x........ is on thread 1's stack
52 Address 0x........ is on thread 1's stack
60 Address 0x........ is on thread 1's stack
  /external/valgrind/memcheck/tests/solaris/
scalar_frealpathat.stderr.exp 18 Address 0x........ is not stack'd, malloc'd or (recently) free'd
22 Address 0x........ is not stack'd, malloc'd or (recently) free'd
  /ndk/sources/host-tools/ndk-stack/
GNUmakefile 20 BUILD_DIR := /tmp/ndk-$(USER)/build/build-ndk-stack
21 PROGNAME := /tmp/ndk-$(USER)/ndk-stack
48 NDK_STACK_SOURCES := ndk-stack.c \
49 ndk-stack-parser.c
  /packages/services/Car/libvehiclenetwork/include/
HandlerThread.h 34 status_t start(const char* name = 0, int32_t priority = PRIORITY_DEFAULT, size_t stack = 0);
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-m68k/
tls-gd-1.s 16 .section .note.GNU-stack,"",@progbits
tls-gd-3.s 17 .section .note.GNU-stack,"",@progbits
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-sh/
start.s 26 .section .stack
  /bionic/libc/arch-arm/bionic/
__bionic_clone.S 34 # save registers to parent stack
45 # Push 'fn' and 'arg' onto the child stack.
66 # Call __start_thread with the 'fn' and 'arg' we stored on the child stack.
  /external/compiler-rt/lib/msan/
msan_poisoning.cc 44 StackTrace *stack) {
53 if (__msan_get_track_origins() > 1) o = ChainOrigin(o, stack);
67 if (__msan_get_track_origins() > 1) o = ChainOrigin(o, stack);
87 dst_o = ChainOrigin(src_o, stack);
99 StackTrace *stack) {
105 if (__msan_get_track_origins()) CopyOrigin(dst, src, size, stack);
109 StackTrace *stack) {
114 if (__msan_get_track_origins()) CopyOrigin(dst, src, size, stack);
117 void CopyMemory(void *dst, const void *src, uptr size, StackTrace *stack) {
119 CopyShadowAndOrigin(dst, src, size, stack);
    [all...]
  /external/compiler-rt/test/asan/TestCases/Linux/
swapcontext_test.cc 35 char x[32] = {0}; // Stack gets poisoned.
39 // (b) Jump into the original function. Stack remains poisoned unless we do
50 printf("Child stack: %p\n", child_stack);
63 // Touch childs's stack to make sure it's unpoisoned.
71 char stack[kStackSize + 1]; local
74 ret += Run(argc - 1, 0, stack);
77 ret += Run(argc - 1, 1, stack);

Completed in 1241 milliseconds

<<11121314151617181920>>