HomeSort by relevance Sort by last modified time
    Searched refs:tcp (Results 1 - 25 of 421) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/strace/
inotify.c 9 sys_inotify_add_watch(struct tcb *tcp)
11 if (entering(tcp)) {
13 printfd(tcp, tcp->u_arg[0]);
16 printpath(tcp, tcp->u_arg[1]);
19 printflags(inotify_flags, tcp->u_arg[2], "IN_???");
25 sys_inotify_rm_watch(struct tcb *tcp)
27 if (entering(tcp)) {
29 printfd(tcp, tcp->u_arg[0])
    [all...]
ipc.c 64 extern void printsigevent(struct tcb *tcp, long arg);
75 int sys_msgget(struct tcb *tcp)
77 if (entering(tcp)) {
78 if (tcp->u_arg[0])
79 tprintf("%#lx, ", tcp->u_arg[0]);
82 if (printflags(resource_flags, tcp->u_arg[1] & ~0777, NULL) != 0)
84 tprintf("%#lo", tcp->u_arg[1] & 0777);
98 indirect_ipccall(struct tcb *tcp)
104 return tcp->scno < 1024; /* ia32 emulation syscalls are low */
112 int sys_msgctl(struct tcb *tcp)
    [all...]
reboot.c 9 sys_reboot(struct tcb *tcp)
11 if (exiting(tcp))
14 printflags(bootflags1, tcp->u_arg[0], "LINUX_REBOOT_MAGIC_???");
16 printflags(bootflags2, tcp->u_arg[1], "LINUX_REBOOT_MAGIC_???");
18 printflags(bootflags3, tcp->u_arg[2], "LINUX_REBOOT_CMD_???");
19 if (tcp->u_arg[2] == LINUX_REBOOT_CMD_RESTART2) {
21 printstr(tcp, tcp->u_arg[3], -1);
ldt.c 8 print_user_desc(struct tcb *tcp, long addr)
12 if (umove(tcp, addr, &desc) < 0) {
17 if (!verbose(tcp)) {
43 sys_modify_ldt(struct tcb *tcp)
45 if (entering(tcp)) {
46 tprintf("%ld, ", tcp->u_arg[0]);
47 if (tcp->u_arg[1] == 0
48 || tcp->u_arg[2] != sizeof(struct user_desc)) {
49 tprintf("%lx", tcp->u_arg[1]);
51 print_user_desc(tcp, tcp->u_arg[1])
    [all...]
io.c 38 sys_read(struct tcb *tcp)
40 if (entering(tcp)) {
41 printfd(tcp, tcp->u_arg[0]);
44 if (syserror(tcp))
45 tprintf("%#lx", tcp->u_arg[1]);
47 printstr(tcp, tcp->u_arg[1], tcp->u_rval);
48 tprintf(", %lu", tcp->u_arg[2])
    [all...]
file.c 236 print_dirfd(struct tcb *tcp, int fd)
241 printfd(tcp, fd);
294 decode_open(struct tcb *tcp, int offset)
296 if (entering(tcp)) {
297 printpath(tcp, tcp->u_arg[offset]);
300 tprint_open_modes(tcp->u_arg[offset + 1]);
301 if (tcp->u_arg[offset + 1] & O_CREAT) {
303 tprintf(", %#lo", tcp->u_arg[offset + 2]);
310 sys_open(struct tcb *tcp)
    [all...]
keyctl.c 20 sys_add_key(struct tcb *tcp)
22 if (entering(tcp)) {
24 printstr(tcp, tcp->u_arg[0], -1);
27 printstr(tcp, tcp->u_arg[1], -1);
30 printstr(tcp, tcp->u_arg[2], tcp->u_arg[3]);
32 tprintf(", %lu, ", tcp->u_arg[3])
    [all...]
fanotify.c 8 sys_fanotify_init(struct tcb *tcp)
12 if (exiting(tcp))
15 flags = tcp->u_arg[0];
23 tprint_open_modes((unsigned) tcp->u_arg[1]);
32 sys_fanotify_mark(struct tcb *tcp)
34 if (exiting(tcp))
37 printfd(tcp, tcp->u_arg[0]);
39 printflags(fan_mark_flags, (unsigned) tcp->u_arg[1], "FAN_MARK_???");
41 printflags(fan_event_flags, tcp->u_arg[2], "FAN_???")
    [all...]
time.c 49 tprint_timeval32(struct tcb *tcp, const struct timeval32 *tv)
55 tprint_timeval(struct tcb *tcp, const struct timeval *tv)
62 printtv_bitness(struct tcb *tcp, long addr, enum bitness_t bitness, int special)
65 sprinttv(buf, tcp, addr, bitness, special);
70 sprinttv(char *buf, struct tcb *tcp, long addr, enum bitness_t bitness, int special)
77 if (!verbose(tcp))
88 rc = umove(tcp, addr, &tv);
102 rc = umove(tcp, addr, &tv);
120 print_timespec(struct tcb *tcp, long addr)
123 sprint_timespec(buf, tcp, addr)
    [all...]
mem.c 48 sys_brk(struct tcb *tcp)
50 if (entering(tcp)) {
51 tprintf("%#lx", tcp->u_arg[0]);
60 print_mmap(struct tcb *tcp, long *u_arg, unsigned long long offset)
62 if (entering(tcp)) {
82 printfd(tcp, u_arg[4]);
99 sys_old_mmap(struct tcb *tcp)
109 if (umoven(tcp, tcp->u_arg[0], sizeof(narrow_arg), (char *) narrow_arg) == -1)
117 if (umoven(tcp, tcp->u_arg[0], sizeof(narrow_arg), (char *) narrow_arg) == -1
    [all...]
bjm.c 77 sys_query_module(struct tcb *tcp)
79 if (entering(tcp)) {
80 printstr(tcp, tcp->u_arg[0], -1);
82 printxval(qm_which, tcp->u_arg[1], "QM_???");
87 if (!verbose(tcp) || syserror(tcp) ||
88 umove(tcp, tcp->u_arg[4], &ret) < 0) {
89 tprintf("%#lx, %lu, %#lx", tcp->u_arg[2]
    [all...]
stream.c 61 printstrbuf(struct tcb *tcp, struct strbuf *sbp, int getting)
70 printstr(tcp, (unsigned long) sbp->buf, sbp->len);
76 printstrbufarg(struct tcb *tcp, long arg, int getting)
82 else if (umove(tcp, arg, &buf) < 0)
85 printstrbuf(tcp, &buf, getting);
90 sys_putmsg(struct tcb *tcp)
94 if (entering(tcp)) {
96 tprintf("%ld, ", tcp->u_arg[0]);
99 printstrbufarg(tcp, tcp->u_arg[i], 0)
    [all...]
desc.c 69 printflock64(struct tcb *tcp, long addr, int getlk)
73 if (umove(tcp, addr, &fl) < 0) {
90 printflock(struct tcb *tcp, long addr, int getlk)
110 r = umove(tcp, addr, &fl32);
127 r = umove(tcp, addr, &fl);
149 sys_fcntl(struct tcb *tcp)
151 if (entering(tcp)) {
152 printfd(tcp, tcp->u_arg[0]);
154 printxval(fcntlcmds, tcp->u_arg[1], "F_???")
    [all...]
resource.c 54 print_rlimit64(struct tcb *tcp, unsigned long addr)
61 if (umove(tcp, addr, &rlim) < 0)
70 decode_rlimit64(struct tcb *tcp, unsigned long addr)
74 else if (!verbose(tcp) ||
75 (exiting(tcp) && syserror(tcp)))
78 print_rlimit64(tcp, addr);
99 print_rlimit32(struct tcb *tcp, unsigned long addr)
106 if (umove(tcp, addr, &rlim) < 0)
115 decode_rlimit(struct tcb *tcp, unsigned long addr
    [all...]
ioprio.c 46 sys_ioprio_get(struct tcb *tcp)
48 if (entering(tcp)) {
50 printxval(ioprio_who, tcp->u_arg[0], "IOPRIO_WHO_???");
52 tprintf(", %d", (int) tcp->u_arg[1]);
55 if (syserror(tcp))
58 tcp->auxstr = sprint_ioprio(tcp->u_rval);
64 sys_ioprio_set(struct tcb *tcp)
66 if (entering(tcp)) {
68 printxval(ioprio_who, tcp->u_arg[0], "IOPRIO_WHO_???")
    [all...]
system.c 87 sys_mount(struct tcb *tcp)
89 if (entering(tcp)) {
91 unsigned long flags = tcp->u_arg[3];
102 printpath(tcp, tcp->u_arg[0]);
105 printpath(tcp, tcp->u_arg[1]);
108 if (ignore_type && tcp->u_arg[2])
109 tprintf("%#lx", tcp->u_arg[2]);
111 printstr(tcp, tcp->u_arg[2], -1)
    [all...]
net.c 42 # include <netinet/tcp.h>
161 printsock(struct tcb *tcp, long addr, int addrlen)
187 if (!verbose(tcp)) {
196 if (umoven(tcp, addr, addrlen, addrbuf.pad) < 0) {
212 printpathn(tcp, addr + 2, strlen(addrbuf.sau.sun_path));
215 printpathn(tcp, addr + 3, strlen(addrbuf.sau.sun_path + 1));
296 printstr(tcp, (long) &((struct sockaddr *) addr)->sa_data,
307 printcmsghdr(struct tcb *tcp, unsigned long addr, unsigned long len)
311 if (cmsg == NULL || umoven(tcp, addr, len, (char *) cmsg) < 0) {
336 printfd(tcp, *fds++)
    [all...]
  /external/srec/config/en.us/
run-liveaudio.sh 1 /system/bin/SRecTestAudio -parfile baseline11k.par -tcp tcp/recognize_10_live.tcp
run-change-sample-rate2.sh 1 /system/bin/SRecTest -parfile baseline11k.par -tcp tcp/change_sample_rate2.tcp -datapath wave/ >out_SHIP_change_sample_rate2.txt 2>&1
run-set-get-param.sh 1 /system/bin/SRecTest -parfile baseline11k.par -tcp tcp/set_get_param.tcp -datapath wave/ >out_SHIP_set_get_param.txt 2>&1
  /external/libnl/etc/
pktloc 22 # Transmission Control Protocol (TCP)
25 tcp.sport u16 tcp+0
26 tcp.dport u16 tcp+2
27 tcp.seq u32 tcp+4
28 tcp.ack u32 tcp+8
29 tcp.off u8 tcp+12 0xF
    [all...]
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/netinet/
tcp.h 31 #include <endian.h> /* Include *before* linux/tcp.h */
32 #include <linux/tcp.h>
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/netinet/
tcp.h 31 #include <endian.h> /* Include *before* linux/tcp.h */
32 #include <linux/tcp.h>
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/netinet/
tcp.h 31 #include <endian.h> /* Include *before* linux/tcp.h */
32 #include <linux/tcp.h>
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/netinet/
tcp.h 31 #include <endian.h> /* Include *before* linux/tcp.h */
32 #include <linux/tcp.h>

Completed in 210 milliseconds

1 2 3 4 5 6 7 8 91011>>