Searched defs:uc (Results 1 - 25 of 240) sorted by relevance

12345678910

/external/libunwind/src/aarch64/
H A DGinit_local.c32 unw_init_local (unw_cursor_t *cursor, unw_context_t *uc) argument
40 unw_init_local (unw_cursor_t *cursor, unw_context_t *uc) argument
50 c->dwarf.as_arg = uc;
/external/libunwind/src/arm/
H A DGinit_local.c32 unw_init_local (unw_cursor_t *cursor, unw_context_t *uc) argument
40 unw_init_local (unw_cursor_t *cursor, unw_context_t *uc) argument
50 c->dwarf.as_arg = uc;
/external/libunwind/src/hppa/
H A DGinit_local.c32 unw_init_local (unw_cursor_t *cursor, ucontext_t *uc) argument
40 unw_init_local (unw_cursor_t *cursor, ucontext_t *uc) argument
50 c->dwarf.as_arg = uc;
/external/libunwind/src/mips/
H A DGinit_local.c31 unw_init_local (unw_cursor_t *cursor, ucontext_t *uc) argument
39 unw_init_local (unw_cursor_t *cursor, ucontext_t *uc) argument
49 c->dwarf.as_arg = uc;
/external/libunwind/src/ppc/
H A DGinit_local.c38 unw_init_local (unw_cursor_t *cursor, ucontext_t *uc) argument
47 unw_init_local (unw_cursor_t *cursor, ucontext_t *uc) argument
57 c->dwarf.as_arg = uc;
/external/libunwind/src/sh/
H A DGinit_local.c32 unw_init_local (unw_cursor_t *cursor, unw_context_t *uc) argument
40 unw_init_local (unw_cursor_t *cursor, unw_context_t *uc) argument
50 c->dwarf.as_arg = uc;
/external/libunwind/src/x86/
H A DGinit_local.c32 unw_init_local (unw_cursor_t *cursor, ucontext_t *uc) argument
40 unw_init_local (unw_cursor_t *cursor, ucontext_t *uc) argument
51 c->uc = uc;
/external/libunwind/src/x86_64/
H A DGinit_local.c34 unw_init_local (unw_cursor_t *cursor, ucontext_t *uc) argument
42 unw_init_local (unw_cursor_t *cursor, ucontext_t *uc) argument
53 c->uc = uc;
H A DGstash_frame.c85 const unw_word_t uc = c->sigcontext_addr; local
87 assert (DWARF_GET_LOC(d->loc[RIP]) - uc == UC_MCONTEXT_GREGS_RIP);
88 assert (DWARF_GET_LOC(d->loc[RBP]) - uc == UC_MCONTEXT_GREGS_RBP);
89 assert (DWARF_GET_LOC(d->loc[RSP]) - uc == UC_MCONTEXT_GREGS_RSP);
/external/libunwind/tests/
H A Dtest-static-link-gen.c61 unw_context_t uc; local
64 unw_getcontext (&uc);
65 unw_init_local (&c, &uc);
66 unw_init_remote (&c, unw_local_addr_space, &uc);
H A Dtest-static-link-loc.c76 unw_context_t uc; local
82 unw_getcontext (&uc);
83 unw_init_local (&c, &uc);
84 unw_init_remote (&c, unw_local_addr_space, &uc);
/external/libunwind/src/unwind/
H A DResume.c32 unw_context_t uc; local
38 if (_Unwind_InitContext (&context, &uc) < 0)
H A DBacktrace.c33 unw_context_t uc; local
38 if (_Unwind_InitContext (&context, &uc) < 0)
H A DResume_or_Rethrow.c32 unw_context_t uc; local
42 if (_Unwind_InitContext (&context, &uc) < 0)
H A DForcedUnwind.c34 unw_context_t uc; local
46 if (_Unwind_InitContext (&context, &uc) < 0)
/external/bison/lib/uniwidth/
H A Dwidth.c315 uc_width (ucs4_t uc, const char *encoding) argument
318 if ((uc >> 9) < 240)
320 int ind = nonspacing_table_ind[uc >> 9];
322 if ((nonspacing_table_data[64*ind + ((uc >> 3) & 63)] >> (uc & 7)) & 1)
324 if (uc > 0 && uc < 0xa0)
330 else if ((uc >> 9) == (0xe0000 >> 9))
332 if (uc >= 0xe0100)
334 if (uc <
[all...]
/external/valgrind/none/tests/solaris/
H A Dcontext_link.c1 /* Test of correct simulation for uc->uc_link. */
14 ucontext_t uc; local
19 getcontext(&uc);
27 uc.uc_stack.ss_sp = stack;
28 uc.uc_stack.ss_size = sizeof(stack);
31 makecontext(&uc, print_value, 1, 42);
32 setcontext(&uc);
H A Dcontext_link2.c1 /* Test of correct simulation for uc->uc_link in a signal handler. */
19 ucontext_t uc; local
23 if (getcontext(&uc)) {
27 assert(!uc.uc_link);
43 getcontext(&uc);
44 assert(!uc.uc_link);
/external/Microsoft-GSL/tests/
H A Dbyte_tests.cpp52 unsigned char uc = 12; local
53 byte b = to_byte(uc);
/external/google-breakpad/src/client/linux/dump_writer_common/
H A Ducontext_reader.cc43 uintptr_t UContextReader::GetStackPointer(const struct ucontext* uc) { argument
44 return uc->uc_mcontext.gregs[REG_ESP];
47 uintptr_t UContextReader::GetInstructionPointer(const struct ucontext* uc) { argument
48 return uc->uc_mcontext.gregs[REG_EIP];
51 void UContextReader::FillCPUContext(RawContextCPU *out, const ucontext *uc, argument
53 const greg_t* regs = uc->uc_mcontext.gregs;
91 uintptr_t UContextReader::GetStackPointer(const struct ucontext* uc) {
92 return uc->uc_mcontext.gregs[REG_RSP];
95 uintptr_t UContextReader::GetInstructionPointer(const struct ucontext* uc) {
96 return uc
[all...]
/external/google-breakpad/src/common/mac/
H A Dmacho_utilities.cc37 void breakpad_swap_uuid_command(struct breakpad_uuid_command *uc, argument
40 uc->cmd = ByteSwap(uc->cmd);
41 uc->cmdsize = ByteSwap(uc->cmdsize);
/external/libunwind/src/mi/
H A Dbacktrace.c36 slow_backtrace (void **buffer, int size, unw_context_t *uc) argument
42 if (unlikely (unw_init_local (&cursor, uc) < 0))
61 unw_context_t uc; local
64 (void) tdep_getcontext_trace (&uc);
66 if (unlikely (unw_init_local (&cursor, &uc) < 0))
71 (void) unw_getcontext (&uc);
72 return slow_backtrace (buffer, size, &uc);
/external/libunwind/src/setjmp/
H A Dsiglongjmp.c62 unw_context_t uc; local
67 if (unw_getcontext (&uc) < 0 || unw_init_local (&c, &uc) < 0)
/external/linux-kselftest/tools/testing/selftests/powerpc/tm/
H A Dtm-signal-msr-resv.c33 void signal_usr1(int signum, siginfo_t *info, void *uc) argument
35 ucontext_t *ucp = uc;
/external/vogar/test/vogar/
H A DScriptBuilderEscapingTest.java41 private final String uc; field in class:ScriptBuilderEscapingTest.SingleCharacterEscapeTest
45 this.uc = Character.toString(c);
47 setName("Escape '" + uc + "' as '" + qc + "'");
52 assertEquals(qc, ScriptBuilder.escape(uc));
53 assertEquals("a" + qc, ScriptBuilder.escape("a" + uc));
54 assertEquals(qc + "b", ScriptBuilder.escape(uc + "b"));
55 assertEquals("a" + qc + "b", ScriptBuilder.escape("a" + uc + "b"));
57 ScriptBuilder.escape(uc + "a" + uc + uc
[all...]

Completed in 619 milliseconds

12345678910