HomeSort by relevance Sort by last modified time
    Searched defs:ip (Results 101 - 125 of 676) sorted by null

1 2 3 45 6 7 8 91011>>

  /bionic/libc/kernel/uapi/asm-x86/asm/
mce.h 28 __u64 ip; member in struct:mce
  /bionic/libc/malloc_debug/
backtrace.cpp 59 uintptr_t ip = _Unwind_GetIP(context); local
61 if (ip == 0) {
64 g_current_code_map = g_map_data.find(ip);
86 uintptr_t ip = _Unwind_GetIP(context); local
91 if (ip != 0) {
93 // If the ip is suspiciously low, do nothing to avoid a segfault trying
95 if (ip >= 4096) {
103 uint16_t value = (*reinterpret_cast<uint16_t*>(ip - 2)) >> 11;
105 ip -= 4;
107 ip -= 2
    [all...]
  /bionic/tests/
stack_unwinding_test.cpp 41 void* ip = reinterpret_cast<void*>(_Unwind_GetIP(ctx)); local
48 if (dladdr(ip, &info) != 0) {
51 offset = static_cast<int>(reinterpret_cast<char*>(ip) - reinterpret_cast<char*>(info.dli_saddr));
55 fprintf(stderr, " #%02d %p %s%+d (%s)\n", *count_ptr, ip, symbol, offset, info.dli_fname ? info.dli_fname : "??");
  /external/boringssl/src/crypto/bio/
fd.c 189 int *ip; local
216 ip = (int *)ptr;
217 if (ip != NULL) {
218 *ip = b->num;
  /external/clang/test/CXX/expr/expr.unary/expr.new/
p20.cpp 10 int *ip = I; // expected-error{{cannot initialize}} local
25 int *ip = I; // expected-error{{cannot initialize}} local
42 int *ip = I; // expected-error{{cannot initialize}} local
61 int *ip = &x; // expected-error{{cannot initialize}} local
78 int *ip = &x; // expected-error{{cannot initialize}} local
106 int *ip = I; // expected-error{{cannot initialize}} local
119 int *ip = &x; // expected-error{{cannot initialize}} local
133 int *ip = I; // okay, since it isn't instantiated.
  /external/clang/test/CXX/temp/temp.decls/temp.mem/
p5.cpp 12 int *ip; local
13 ip = a.operator int*();
  /external/clang/test/Modules/
macros.c 100 TOP_RIGHT_REDEF *ip = &i; local
129 LEFT_RIGHT_IDENTICAL *ip = &i; local
module-private.cpp 18 int *ip = 0; local
19 f1(ip); // expected-error{{use of undeclared identifier 'f1'}}
  /external/clang/test/Sema/
overloadable.c 13 int *ip = f(iv); local
35 int *ip = accept_struct(x); local
  /external/clang/test/SemaTemplate/
instantiate-template-template-parm.cpp 18 apply<add_pointer, int>::type ip = &i; variable
  /external/guice/core/src/com/google/inject/util/
Providers.java 103 for(InjectionPoint ip : injectionPoints) {
104 mutableDeps.addAll(ip.getDependencies());
  /external/kernel-headers/original/uapi/asm-x86/asm/
mce.h 14 __u64 ip; member in struct:mce
  /external/libmojo/base/debug/
stack_trace_android.cc 41 uintptr_t ip = _Unwind_GetIP(context); local
44 if (ip != 0 && !state->have_skipped_self) {
49 state->frames[state->frame_count++] = ip;
  /external/libunwind/src/arm/
Gstep.c 44 if ((ret = tdep_find_proc_info (&c->dwarf, c->dwarf.ip, 1)) < 0)
62 return (c->dwarf.ip == 0) ? 0 : 1;
73 unw_word_t ip, value; local
74 ip = c->dwarf.ip;
76 if (ip)
79 if (ip & 1)
92 if (ip < 5 || (*a->access_mem) (as, ip-5, &value, 0, arg) < 0 ||
96 c->dwarf.ip -= adjust
    [all...]
  /external/libunwind/src/ptrace/
_UPT_access_reg.c 98 unsigned long ip, psr; local
111 ip = *val & ~0xfUL;
117 ptrace (PTRACE_POKEUSER, pid, PT_CR_IIP, ip);
129 ip = ptrace (PTRACE_PEEKUSER, pid, PT_CR_IIP, 0);
133 *val = ip + ((psr >> 41) & 0x3);
  /external/libunwind/src/x86/
Gos-linux.c 33 unw_word_t w0, w1, ip; local
59 ip = c->dwarf.ip;
61 /* Need to adjust the ip because we adjusted it down in the step call. */
62 ip++;
64 if ((*a->access_mem) (as, ip, &w0, 0, arg) < 0
65 || (*a->access_mem) (as, ip + 4, &w1, 0, arg) < 0)
305 Debug (8, "resuming at ip=%x via sigreturn(%p)\n", c->dwarf.ip, sc);
313 Debug (8, "resuming at ip=%x via setcontext()\n", c->dwarf.ip)
    [all...]
  /external/libunwind/tests/
Gia64-test-rbs.c 97 unw_word_t ip; local
112 if (unw_get_reg (&c, UNW_REG_IP, &ip) < 0
115 || unw_set_reg (&c, UNW_REG_EH + 1, ip))
123 printf (" bsp=%lx, old ip=%lx, new ip=%p\n", bsp,
124 ip, &resumption_point_label);
Gia64-test-stack.c 58 unw_word_t ip, sp, bsp, v0, v1, v2, v3, n0, n1, n2, n3, cfm, sof, sol, r32; local
74 if ((ret = unw_get_reg (&c, UNW_IA64_IP, &ip)) < 0
78 printf ("ip=0x%16lx sp=0x%16lx bsp=0x%16lx\n", ip, sp, bsp);
Gtest-bt.c 60 unw_word_t ip, sp, off; local
73 unw_get_reg (&cursor, UNW_REG_IP, &ip);
85 printf ("%016lx %-32s (sp=%016lx)\n", (long) ip, buf, (long) sp);
108 unw_get_reg (&cursor, UNW_REG_IP, &ip);
109 printf ("FAILURE: unw_step() returned %d for ip=%lx\n",
110 ret, (long) ip);
125 printf ("[%d] ip=%p\n", i, buffer[i]);
183 uint64_t ip; local
186 __uc_get_ip (uc, &ip);
187 printf (" @ %lx (reason=%d)", ip, reason)
    [all...]
Gtest-dyn1.c 107 unw_word_t ip, offset; local
134 unw_get_reg (&cursor, UNW_REG_IP, &ip);
141 printf ("ip = %lx <%s%s>\n", (long) ip, name, off);
Gtest-resume-sig.c 76 unw_word_t ip; local
118 if ((ret = unw_get_reg (&c, UNW_REG_IP, &ip)) < 0)
119 panic ("unw_get_reg(IP) failed: ret=%d\n", ret);
122 (unsigned long) ip);
Gtest-trace.c 60 unw_word_t ip; local
74 unw_get_reg (&cursor, UNW_REG_IP, &ip);
75 addresses[0][depth] = (void *) ip;
81 unw_get_reg (&cursor, UNW_REG_IP, &ip);
82 printf ("FAILURE: unw_step() returned %d for ip=%lx\n", ret, (long) ip);
88 printf ("\t #%-3d ip=%p\n", i, addresses[0][i]);
97 printf ("\t #%-3d ip=%p\n", i, addresses[1][i]);
106 printf ("\t #%-3d ip=%p\n", i, addresses[2][i]);
195 uint64_t ip; local
    [all...]
ppc64-test-altivec.c 44 unw_word_t ip, sp; local
62 if ((ret = unw_get_reg (&cursor, UNW_REG_IP, &ip)) < 0)
88 printf ("ip = %016lx, sp=%016lx\n", (long) ip, (long) sp);
112 unw_get_reg (&cursor, UNW_REG_IP, &ip);
113 panic ("FAILURE: unw_step() returned %d for ip=%lx\n", ret,
114 (long) ip);
test-async-sig.c 71 unw_word_t ip, sp, off; local
88 unw_get_reg (&cursor, UNW_REG_IP, &ip);
111 printf ("%016lx %-32s (sp=%016lx)\n", (long) ip, buf, (long) sp);
116 unw_get_reg (&cursor, UNW_REG_IP, &ip);
117 panic ("FAILURE: unw_step() returned %d for ip=%lx\n",
118 ret, (long) ip);
  /external/libvncserver/examples/
vncev.c 103 unsigned int ip; local
106 ip=ntohl(addr.sin_addr.s_addr);
107 sprintf(buffer,"Client connected from ip %d.%d.%d.%d",
108 (ip>>24)&0xff,(ip>>16)&0xff,(ip>>8)&0xff,ip&0xff);

Completed in 678 milliseconds

1 2 3 45 6 7 8 91011>>