HomeSort by relevance Sort by last modified time
    Searched refs:tcp (Results 201 - 225 of 628) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/strace/
ipc_shmctl.c 54 print_shmid_ds(struct tcb *tcp, const long addr, int cmd)
63 if (umove_or_printaddr(tcp, addr, &shmid_ds))
99 if (entering(tcp)) {
100 tprintf("%lu, ", tcp->u_arg[0]);
101 PRINTCTL(shmctl_flags, tcp->u_arg[1], "SHM_???");
104 const long addr = tcp->u_arg[indirect_ipccall(tcp) ? 3 : 2];
105 print_shmid_ds(tcp, addr, tcp->u_arg[1]);
print_time.c 76 MPERS_PRINTER_DECL(void, print_timespec)(struct tcb *tcp, const long addr)
80 if (umove_or_printaddr(tcp, addr, &t))
86 MPERS_PRINTER_DECL(const char *, sprint_timespec)(struct tcb *tcp, const long addr)
93 } else if (!verbose(tcp) || (exiting(tcp) && syserror(tcp)) ||
94 umove(tcp, addr, &t)) {
104 MPERS_PRINTER_DECL(void, print_timespec_utime_pair)(struct tcb *tcp, const long addr)
108 if (umove_or_printaddr(tcp, addr, &t))
118 MPERS_PRINTER_DECL(void, print_itimerspec)(struct tcb *tcp, const long addr
    [all...]
uname.c 40 if (entering(tcp))
43 if (!umove_or_printaddr(tcp, tcp->u_arg[0], &uname)) {
51 if (abbrev(tcp)) {
v4l2.c 192 v4l2_ioctl(struct tcb *tcp, const unsigned int code, long arg)
194 if (!verbose(tcp))
201 if (entering(tcp) || syserror(tcp) || umove(tcp, arg, &caps) < 0)
231 if (entering(tcp) || umove(tcp, arg, &s) < 0)
236 if (!syserror(tcp)) {
264 if (umove(tcp, arg, &f) < 0)
266 if (entering(tcp)) {
    [all...]
mtd.c 52 mtd_ioctl(struct tcb *tcp, const unsigned int code, const long arg)
54 if (!verbose(tcp))
65 if (umove_or_printaddr(tcp, arg, &einfo))
77 if (umove_or_printaddr(tcp, arg, &einfo64))
90 if (umove_or_printaddr(tcp, arg, &mbuf))
103 if (umove_or_printaddr(tcp, arg, &mbuf64))
114 if (entering(tcp)) {
116 if (umove_or_printaddr(tcp, arg, &rinfo))
121 if (syserror(tcp)) {
125 if (umove(tcp, arg, &rinfo) < 0)
    [all...]
loop.c 36 decode_loop_info(struct tcb *tcp, const long addr)
41 if (umove_or_printaddr(tcp, addr, &info))
46 if (!abbrev(tcp)) {
55 if (!abbrev(tcp) || info.lo_encrypt_type != LO_CRYPT_NONE) {
69 if (!abbrev(tcp) || info.lo_encrypt_type != LO_CRYPT_NONE) {
75 if (!abbrev(tcp))
86 decode_loop_info64(struct tcb *tcp, const long addr)
91 if (umove_or_printaddr(tcp, addr, &info64))
94 if (!abbrev(tcp)) {
110 if (!abbrev(tcp) || info64.lo_encrypt_type != LO_CRYPT_NONE)
    [all...]
personality.c 38 if (entering(tcp)) {
39 pers = tcp->u_arg[0];
53 if (syserror(tcp))
56 pers = tcp->u_rval;
67 tcp->auxstr = outstr;
ptp.c 36 ptp_ioctl(struct tcb *tcp, const unsigned int code, const long arg)
38 if (!verbose(tcp))
46 if (umove_or_printaddr(tcp, arg, &extts))
59 if (umove_or_printaddr(tcp, arg, &perout))
80 if (entering(tcp)) {
82 if (umove_or_printaddr(tcp, arg, &sysoff))
90 if (syserror(tcp)) {
96 if (umove(tcp, arg, &sysoff) < 0) {
120 if (entering(tcp))
124 if (umove_or_printaddr(tcp, arg, &caps)
    [all...]
strace.c 166 static void detach(struct tcb *tcp);
388 ptrace_restart(int op, struct tcb *tcp, int sig)
394 ptrace(op, tcp->pid, (void *) 0, (long) sig);
424 perror_msg("ptrace(PTRACE_%s,pid:%d,sig:%d)", msg, tcp->pid, sig);
607 printleader(struct tcb *tcp)
613 printing_tcp = tcp;
617 if (printing_tcp->curcol != 0 && (followfork < 2 || printing_tcp == tcp)) {
629 printing_tcp = tcp;
630 current_tcp = tcp;
634 tprintf("%-5d ", tcp->pid)
713 struct tcb *tcp; local
977 struct tcb *tcp; local
1187 struct tcb *tcp; local
1450 struct tcb *tcp; local
1795 struct tcb *tcp = tcbtab[i]; local
1807 struct tcb *tcp; local
1902 struct tcb *tcp = alloctcb(pid); local
2056 struct tcb *tcp; local
    [all...]
sock.c 44 print_ifreq_addr(struct tcb *tcp, const struct ifreq *ifr, const long addr)
54 printstr(tcp, addr + offsetof(struct ifreq, ifr_addr.sa_data),
66 print_ifreq(struct tcb *tcp, const unsigned int code, const long arg,
73 print_ifreq_addr(tcp, ifr, arg);
78 print_ifreq_addr(tcp, ifr, arg);
83 print_ifreq_addr(tcp, ifr, arg);
88 print_ifreq_addr(tcp, ifr, arg);
152 decode_ifconf(struct tcb *tcp, const long addr)
156 if (entering(tcp)) {
158 if (umove_or_printaddr(tcp, addr, &ifc)
    [all...]
sysinfo.c 45 if (entering(tcp))
48 if (!umove_or_printaddr(tcp, tcp->u_arg[0], &si)) {
ioctl.c 185 ioctl_decode_command_number(struct tcb *tcp)
187 const unsigned int code = tcp->u_arg[1];
227 ioctl_decode(struct tcb *tcp)
229 const unsigned int code = tcp->u_arg[1];
230 const long arg = tcp->u_arg[2];
238 return term_ioctl(tcp, code, arg);
240 return sock_ioctl(tcp, code, arg);
242 return rtc_ioctl(tcp, code, arg);
246 return block_ioctl(tcp, code, arg);
249 return scsi_ioctl(tcp, code, arg)
    [all...]
  /external/strace/linux/
arch_sigreturn.c 4 arch_sigreturn(struct tcb *tcp)
  /external/strace/linux/i386/
arch_sigreturn.c 2 arch_sigreturn(struct tcb *tcp)
17 if (umove(tcp, *i386_esp_ptr, &frame) < 0) {
  /external/strace/linux/s390/
arch_sigreturn.c 2 arch_sigreturn(struct tcb *tcp)
7 if (umove(tcp, addr, &mask) < 0) {
  /external/strace/linux/x86_64/
get_scno.c 35 arch_get_scno(struct tcb *tcp)
100 (int)x86_64_regs.cs, tcp->pid);
114 call = ptrace(PTRACE_PEEKTEXT, tcp->pid, (char *)rip, (char *)0);
126 (int)call, tcp->pid);
139 "64-bit mode of process PID=%d", scno, tcp->pid);
145 update_personality(tcp, currpers);
146 tcp->scno = scno;
  /development/ndk/platforms/android-3/include/netinet/
tcp.h 31 #include <endian.h> /* Include *before* linux/tcp.h */
32 #include <linux/tcp.h>
  /prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/netinet/
tcp.h 31 #include <endian.h> /* Include *before* linux/tcp.h */
32 #include <linux/tcp.h>
  /prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/netinet/
tcp.h 31 #include <endian.h> /* Include *before* linux/tcp.h */
32 #include <linux/tcp.h>
  /prebuilts/ndk/current/platforms/android-12/arch-x86/usr/include/netinet/
tcp.h 31 #include <endian.h> /* Include *before* linux/tcp.h */
32 #include <linux/tcp.h>
  /prebuilts/ndk/current/platforms/android-13/arch-arm/usr/include/netinet/
tcp.h 31 #include <endian.h> /* Include *before* linux/tcp.h */
32 #include <linux/tcp.h>
  /prebuilts/ndk/current/platforms/android-13/arch-mips/usr/include/netinet/
tcp.h 31 #include <endian.h> /* Include *before* linux/tcp.h */
32 #include <linux/tcp.h>
  /prebuilts/ndk/current/platforms/android-13/arch-x86/usr/include/netinet/
tcp.h 31 #include <endian.h> /* Include *before* linux/tcp.h */
32 #include <linux/tcp.h>
  /prebuilts/ndk/current/platforms/android-14/arch-arm/usr/include/netinet/
tcp.h 31 #include <endian.h> /* Include *before* linux/tcp.h */
32 #include <linux/tcp.h>
  /prebuilts/ndk/current/platforms/android-14/arch-mips/usr/include/netinet/
tcp.h 31 #include <endian.h> /* Include *before* linux/tcp.h */
32 #include <linux/tcp.h>

Completed in 692 milliseconds

1 2 3 4 5 6 7 891011>>