Searched refs:ucp (Results 1 - 10 of 10) sorted by relevance

/external/valgrind/main/coregrind/m_sigframe/
H A Dsigframe-ppc32-linux.c713 struct vki_ucontext *ucp = &frame->ucontext; local
722 (Addr)ucp, offsetof(struct vki_ucontext, uc_pad) );
723 ucp->uc_flags = 0;
724 ucp->uc_link = 0;
725 ucp->uc_stack = tst->altstack;
726 VG_TRACK( post_mem_write, Vg_CoreSignal, tid, (Addr)ucp,
730 (Addr)&ucp->uc_regs,
731 sizeof(ucp->uc_regs) + sizeof(ucp->uc_sigmask) );
732 ucp
[all...]
/external/ppp/pppd/
H A Dipxcp.c610 ipxcp_addci(f, ucp, lenp)
612 u_char *ucp;
619 PUTCHAR (IPX_NETWORK_NUMBER, ucp);
620 PUTCHAR (CILEN_NETN, ucp);
621 PUTLONG (go->our_network, ucp);
626 PUTCHAR (IPX_NODE_NUMBER, ucp);
627 PUTCHAR (CILEN_NODEN, ucp);
629 PUTCHAR (go->our_node[indx], ucp);
635 PUTCHAR (IPX_ROUTER_NAME, ucp);
636 PUTCHAR (CILEN_NAME + cilen - 1, ucp);
1003 u_char *ucp = inp; /* Pointer to current output char */ local
[all...]
H A Dipv6cp.c554 ipv6cp_addci(f, ucp, lenp)
556 u_char *ucp;
566 PUTCHAR(opt, ucp); \
567 PUTCHAR(vjlen, ucp); \
568 PUTSHORT(val, ucp); \
578 PUTCHAR(opt, ucp); \
579 PUTCHAR(idlen, ucp); \
580 eui64_put(val1, ucp); \
903 u_char *ucp = inp; /* Pointer to current output char */ local
1024 ucp
[all...]
H A Dipcp.c749 ipcp_addci(f, ucp, lenp)
751 u_char *ucp;
761 PUTCHAR(opt, ucp); \
762 PUTCHAR(CILEN_ADDRS, ucp); \
764 PUTLONG(l, ucp); \
766 PUTLONG(l, ucp); \
776 PUTCHAR(opt, ucp); \
777 PUTCHAR(vjlen, ucp); \
778 PUTSHORT(val, ucp); \
780 PUTCHAR(maxslotindex, ucp); \
1334 u_char *ucp = inp; /* Pointer to current output char */ local
[all...]
H A Dlcp.c684 lcp_addci(f, ucp, lenp)
686 u_char *ucp;
690 u_char *start_ucp = ucp;
694 PUTCHAR(opt, ucp); \
695 PUTCHAR(CILEN_VOID, ucp); \
699 PUTCHAR(opt, ucp); \
700 PUTCHAR(CILEN_SHORT, ucp); \
701 PUTSHORT(val, ucp); \
705 PUTCHAR((opt), ucp); \
706 PUTCHAR(CILEN_CHAP, ucp); \
[all...]
/external/openssh/
H A Dbuffer.c242 u_char *ucp = buffer->buf; local
245 fprintf(stderr, "%02x", ucp[i]);
H A Dchannels.c883 u_char *ucp; local
891 ucp = buffer_ptr(b);
892 if (ucp[0] == 0x42) { /* Byte order MSB first. */
893 proto_len = 256 * ucp[6] + ucp[7];
894 data_len = 256 * ucp[8] + ucp[9];
895 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
896 proto_len = ucp[6] + 256 * ucp[
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Ddirhash.c123 const unsigned char *ucp = (const unsigned char *) name; local
129 c = (int) *ucp++;
146 const unsigned char *ucp = (const unsigned char *) msg; local
159 c = (int) ucp[i];
/external/dnsmasq/src/
H A Drfc2131.c655 unsigned char *ucp = option_ptr(opt, 0); local
657 for (j = 0; j < option_len(opt); j += ucp[j] + 1);
661 tmp = j + ucp[j] + 1;
662 ucp[j] = 0;
1148 unsigned char *ucp = option_ptr(opt, 0); local
1150 if (len != 0 && ucp[0] == 0)
1151 ucp++, len--;
1155 memcpy(lease->userclass, ucp, len);
1163 unsigned char *ucp = option_ptr(opt, 0); local
1167 memcpy(lease->vendorclass, ucp, le
1175 unsigned char *ucp = option_ptr(opt, 0); local
[all...]
/external/strace/
H A Dsignal.c1686 printcontext(tcp, ucp)
1688 ucontext_t *ucp;
1693 printflags(ucontext_flags, ucp->uc_flags, "UC_???");
1694 tprintf(", uc_link=%#lx, ", (unsigned long) ucp->uc_link);
1697 printsigmask(&ucp->uc_sigmask, 0);
1700 (unsigned long) ucp->uc_stack.ss_sp,
1701 ucp->uc_stack.ss_size);
1702 printflags(sigaltstack_flags, ucp->uc_stack.ss_flags, "SS_???");

Completed in 412 milliseconds