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

1 2 3 4 5

  /external/strace/
io.c 50 sys_read(tcp)
51 struct tcb *tcp;
53 if (entering(tcp)) {
54 tprintf("%ld, ", tcp->u_arg[0]);
56 if (syserror(tcp))
57 tprintf("%#lx", tcp->u_arg[1]);
59 printstr(tcp, tcp->u_arg[1], tcp->u_rval);
60 tprintf(", %lu", tcp->u_arg[2])
    [all...]
ipc.c 71 extern void printsigevent(struct tcb *tcp, long arg);
156 int sys_msgget(tcp)
157 struct tcb *tcp;
159 if (entering(tcp)) {
160 if (tcp->u_arg[0])
161 tprintf("%lu", tcp->u_arg[0]);
165 if (printflags(resource_flags, tcp->u_arg[1] & ~0777, NULL) != 0)
167 tprintf("%#lo", tcp->u_arg[1] & 0777);
180 int sys_msgctl(tcp)
181 struct tcb *tcp;
    [all...]
time.c 46 printtv(tcp, addr)
47 struct tcb *tcp;
54 else if (!verbose(tcp))
56 else if (umove(tcp, addr, &tv) < 0)
70 printtv32(tcp, addr)
71 struct tcb *tcp;
78 else if (!verbose(tcp))
80 else if (umove(tcp, addr, &tv) < 0)
89 sys_time(tcp)
90 struct tcb *tcp;
    [all...]
file.c 341 sys_open(tcp)
342 struct tcb *tcp;
344 if (entering(tcp)) {
345 printpath(tcp, tcp->u_arg[0]);
348 printflags(openmodes, tcp->u_arg[1] + 1, "O_???");
349 if (tcp->u_arg[1] & O_CREAT) {
351 tprintf(", %#lo", tcp->u_arg[2]);
377 solaris_open(tcp)
378 struct tcb *tcp;
    [all...]
mem.c 60 sys_brk(tcp)
61 struct tcb *tcp;
63 if (entering(tcp)) {
64 tprintf("%#lx", tcp->u_arg[0]);
74 sys_sbrk(tcp)
75 struct tcb *tcp;
77 if (entering(tcp)) {
78 tprintf("%lu", tcp->u_arg[0]);
189 print_mmap(tcp,u_arg)
190 struct tcb *tcp;
    [all...]
bjm.c 103 sys_query_module(tcp)
104 struct tcb *tcp;
107 if (exiting(tcp)) {
108 printstr(tcp, tcp->u_arg[0], -1);
110 printxval(which, tcp->u_arg[1], "QM_???");
112 if (!verbose(tcp)) {
113 tprintf("%#lx, %lu, %#lx", tcp->u_arg[2], tcp->u_arg[3], tcp->u_arg[4])
    [all...]
net.c 47 #include <netinet/tcp.h>
928 printsock(tcp, addr, addrlen)
929 struct tcb *tcp;
957 if (!verbose(tcp)) {
964 if (umoven(tcp, addr, addrlen, (char*)&addrbuf) < 0) {
1061 printstr(tcp, (long) &((struct sockaddr *) addr)->sa_data,
1080 printcmsghdr(tcp, addr, len)
1081 struct tcb *tcp;
1087 if (cmsg == NULL || umoven(tcp, addr, len, (char *) cmsg) < 0) {
1134 printmsghdr(tcp, addr
    [all...]
signal.c 298 copy_sigset_len(tcp, addr, s, len)
299 struct tcb *tcp;
307 if (umoven(tcp, addr, len, (char *)s) < 0)
314 #define copy_sigset(tcp, addr, s) copy_sigset_len(tcp, addr, s, sizeof(long))
316 #define copy_sigset(tcp, addr, s) copy_sigset_len(tcp, addr, s, sizeof(sigset_t))
818 * Check process TCP for the disposition of signal SIG.
823 sigishandled(tcp, sig)
824 struct tcb *tcp;
    [all...]
resource.c 132 sys_getrlimit(tcp)
133 struct tcb *tcp;
137 if (entering(tcp)) {
138 printxval(resources, tcp->u_arg[0], "RLIMIT_???");
142 if (syserror(tcp) || !verbose(tcp))
143 tprintf("%#lx", tcp->u_arg[1]);
144 else if (umove(tcp, tcp->u_arg[1], &rlim) < 0)
155 sys_setrlimit(tcp)
    [all...]
system.c 111 sys_mount(tcp)
112 struct tcb *tcp;
114 if (entering(tcp)) {
115 printpath(tcp, tcp->u_arg[0]);
117 printpath(tcp, tcp->u_arg[1]);
119 if ((tcp->u_arg[3] & (MS_BIND|MS_MOVE|MS_REMOUNT)) == 0)
120 printpath(tcp, tcp->u_arg[2])
    [all...]
process.c 255 sys_prctl(tcp)
256 struct tcb *tcp;
260 if (entering(tcp)) {
261 printxval(prctl_options, tcp->u_arg[0], "PR_???");
262 switch (tcp->u_arg[0]) {
273 tprintf(", %s", unalignctl_string(tcp->u_arg[1]));
278 tprintf(", %#lx", tcp->u_arg[1]);
282 for (i = 1; i < tcp->u_nargs; i++)
283 tprintf(", %#lx", tcp->u_arg[i]);
287 switch (tcp->u_arg[0])
    [all...]
desc.c 196 printflock(tcp, addr, getlk)
197 struct tcb *tcp;
203 if (umove(tcp, addr, &fl) < 0) {
222 printflock64(tcp, addr, getlk)
223 struct tcb *tcp;
229 if (umove(tcp, addr, &fl) < 0) {
270 sys_fcntl(tcp)
271 struct tcb *tcp;
275 if (entering(tcp)) {
276 tprintf("%ld, ", tcp->u_arg[0])
    [all...]
syscall.c 444 dumpio(tcp)
445 struct tcb *tcp;
447 if (syserror(tcp))
449 if (tcp->u_arg[0] < 0 || tcp->u_arg[0] >= MAX_QUALS)
451 switch (known_scno(tcp)) {
469 if (qual_flags[tcp->u_arg[0]] & QUAL_READ)
470 dumpstr(tcp, tcp->u_arg[1], tcp->u_rval)
    [all...]
strace.c 190 struct tcb *tcp; local
200 for (tcp = tcbtab[0]; tcp < &tcbtab[0][tcbtabsize]; ++tcp)
201 tcbtab[tcp - tcbtab[0]] = &tcbtab[0][tcp - tcbtab[0]];
282 if ((tcp = alloctcb(pid)) == NULL) {
287 tcp->flags |= TCB_ATTACHED;
406 tcp = tcbtab[c];
408 tcp->outf = outf
748 struct tcb *tcp; local
1088 struct tcb *tcp; local
1109 struct tcb *tcp = tcbtab[i]; local
1392 struct tcb *tcp; local
1407 struct tcb *tcp; local
1505 struct tcb *tcp = tcbtab[i]; local
1659 struct tcb *tcp; local
1702 struct tcb *tcp; local
2011 struct tcb *tcp; local
    [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
  /bionic/libc/include/netinet/
tcp.h 31 #include <endian.h> /* Include *before* linux/tcp.h */
32 #include <linux/tcp.h>
  /development/ndk/platforms/android-3/include/netinet/
tcp.h 31 #include <endian.h> /* Include *before* linux/tcp.h */
32 #include <linux/tcp.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/netinet/
tcp.h 31 #include <endian.h> /* Include *before* linux/tcp.h */
32 #include <linux/tcp.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/netinet/
tcp.h 31 #include <endian.h> /* Include *before* linux/tcp.h */
32 #include <linux/tcp.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/netinet/
tcp.h 31 #include <endian.h> /* Include *before* linux/tcp.h */
32 #include <linux/tcp.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/netinet/
tcp.h 31 #include <endian.h> /* Include *before* linux/tcp.h */
32 #include <linux/tcp.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/netinet/
tcp.h 31 #include <endian.h> /* Include *before* linux/tcp.h */
32 #include <linux/tcp.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/netinet/
tcp.h 31 #include <endian.h> /* Include *before* linux/tcp.h */
32 #include <linux/tcp.h>

Completed in 183 milliseconds

1 2 3 4 5