Searched defs:tcp (Results 1 - 25 of 79) sorted by relevance

1234

/external/strace/
H A Dreboot.c9 sys_reboot(struct tcb *tcp) argument
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);
H A Dfanotify.c8 sys_fanotify_init(struct tcb *tcp) argument
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) argument
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
[all...]
H A Dinotify.c9 sys_inotify_add_watch(struct tcb *tcp) argument
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) argument
27 if (entering(tcp)) {
29 printfd(tcp, tc
37 sys_inotify_init1(struct tcb *tcp) argument
[all...]
H A Dloop.c37 int loop_ioctl(struct tcb *tcp, long code, long arg) argument
43 if (entering(tcp))
50 if (!verbose(tcp) || umove(tcp, arg, &info) < 0)
55 if (!abbrev(tcp)) {
64 if (!abbrev(tcp) || info.lo_encrypt_type != LO_CRYPT_NONE) {
77 if (!abbrev(tcp) || info.lo_encrypt_type != LO_CRYPT_NONE) {
82 if (!abbrev(tcp))
95 if (!verbose(tcp) || umove(tcp, ar
[all...]
H A Dldt.c8 print_user_desc(struct tcb *tcp, long addr) argument
12 if (umove(tcp, addr, &desc) < 0) {
17 if (!verbose(tcp)) {
43 sys_modify_ldt(struct tcb *tcp) argument
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, tc
59 sys_set_thread_area(struct tcb *tcp) argument
80 sys_get_thread_area(struct tcb *tcp) argument
95 sys_set_thread_area(struct tcb *tcp) argument
106 sys_get_thread_area(struct tcb *tcp) argument
[all...]
H A Dptp.c7 int ptp_ioctl(struct tcb *tcp, long code, long arg) argument
9 if (!verbose(tcp))
17 if (entering(tcp) || syserror(tcp) ||
18 umove(tcp, arg, &caps) < 0)
31 if (exiting(tcp))
33 if (umove(tcp, arg, &extts) < 0) {
47 if (exiting(tcp))
49 if (umove(tcp, arg, &perout) < 0) {
66 if (entering(tcp))
[all...]
H A Dterm.c47 int term_ioctl(struct tcb *tcp, long code, long arg) argument
57 if (entering(tcp))
66 if (syserror(tcp))
71 if (!verbose(tcp) || umove(tcp, arg, &tios) < 0)
73 if (abbrev(tcp)) {
100 if (syserror(tcp))
105 if (!verbose(tcp) || umove(tcp, arg, &tio) < 0)
107 if (abbrev(tcp)) {
[all...]
H A Dioctl.c73 ioctl_decode(struct tcb *tcp, long code, long arg) argument
81 return term_ioctl(tcp, code, arg);
83 return sock_ioctl(tcp, code, arg);
85 return rtc_ioctl(tcp, code, arg);
88 return block_ioctl(tcp, code, arg);
91 return scsi_ioctl(tcp, code, arg);
94 return loop_ioctl(tcp, code, arg);
96 return mtd_ioctl(tcp, code, arg);
99 return ubi_ioctl(tcp, code, arg);
101 return ptp_ioctl(tcp, cod
[all...]
H A Dscsi.c39 print_sg_io_buffer(struct tcb *tcp, unsigned char *addr, int len) argument
49 umoven(tcp, (unsigned long) addr, allocated, (char *) buf) < 0) {
63 print_sg_io_req(struct tcb *tcp, struct sg_io_hdr *sg_io) argument
69 print_sg_io_buffer(tcp, sg_io->cmdp, sg_io->cmd_len);
79 printstr(tcp, (unsigned long) sg_io->dxferp,
86 print_sg_io_res(struct tcb *tcp, struct sg_io_hdr *sg_io) argument
91 printstr(tcp, (unsigned long) sg_io->dxferp,
98 print_sg_io_buffer(tcp, sg_io->sbp, sg_io->sb_len_wr);
107 scsi_ioctl(struct tcb *tcp, long code, long arg) argument
111 if (entering(tcp)) {
[all...]
H A Dsock.c44 print_addr(struct tcb *tcp, long addr, struct ifreq *ifr) argument
51 printstr(tcp, addr, sizeof(ifr->ifr_addr.sa_data));
55 sock_ioctl(struct tcb *tcp, long code, long arg) argument
62 if (entering(tcp)) {
64 if (umove(tcp, tcp->u_arg[2], &ifc) >= 0
101 printnum(tcp, arg, ", %#d");
128 if (umove(tcp, tcp->u_arg[2], &ifr) < 0)
129 tprintf(", %#lx", tcp
267 sys_socketcall(struct tcb *tcp) argument
[all...]
H A Dioprio.c46 sys_ioprio_get(struct tcb *tcp) argument
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) argument
66 if (entering(tcp)) {
68 printxval(ioprio_who, tcp
[all...]
H A Dkexec.c8 print_kexec_segments(struct tcb *tcp, unsigned long addr, unsigned long len) argument
50 if (umoven(tcp, addr + i * sizeof_seg, sizeof_seg,
66 sys_kexec_load(struct tcb *tcp) argument
70 if (exiting(tcp))
74 tprintf("%#lx, %lu, ", tcp->u_arg[0], tcp->u_arg[1]);
77 print_kexec_segments(tcp, tcp->u_arg[2], tcp->u_arg[1]);
81 n = tcp
[all...]
H A Dmtd.c50 int mtd_ioctl(struct tcb *tcp, long code, long arg) argument
65 if (entering(tcp))
71 if (!verbose(tcp) || umove(tcp, arg, &minfo) < 0)
90 if (!verbose(tcp) || umove(tcp, arg, &einfo) < 0)
98 if (!verbose(tcp) || umove(tcp, arg, &einfo64) < 0)
107 if (!verbose(tcp) || umove(tcp, ar
255 ubi_ioctl(struct tcb *tcp, long code, long arg) argument
[all...]
H A Dbjm.c77 sys_query_module(struct tcb *tcp) argument
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
168 sys_create_module(struct tcb *tcp) argument
178 sys_delete_module(struct tcb *tcp) argument
189 sys_init_module(struct tcb *tcp) argument
204 sys_finit_module(struct tcb *tcp) argument
[all...]
H A Dblock.c85 print_blkpg_req(struct tcb *tcp, struct blkpg_ioctl_arg *blkpg) argument
95 if (umove(tcp, (long) blkpg->data, &p) < 0)
106 block_ioctl(struct tcb *tcp, long code, long arg) argument
112 if (entering(tcp))
119 if (entering(tcp)) {
121 if (umove(tcp, arg, &val) < 0)
130 if (exiting(tcp)) {
132 if (syserror(tcp) || umove(tcp, arg, &val) < 0)
144 if (exiting(tcp)) {
[all...]
H A Dio.c38 sys_read(struct tcb *tcp) argument
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
54 sys_write(struct tcb *tcp) argument
71 tprint_iov_upto(struct tcb *tcp, unsigned long len, unsigned long addr, int decode_iov, unsigned long data_size) argument
143 tprint_iov(struct tcb *tcp, unsigned long len, unsigned long addr, int decode_iov) argument
149 sys_readv(struct tcb *tcp) argument
167 sys_writev(struct tcb *tcp) argument
191 sys_pread(struct tcb *tcp) argument
208 sys_pwrite(struct tcb *tcp) argument
222 sys_preadv(struct tcb *tcp) argument
240 sys_pwritev(struct tcb *tcp) argument
254 print_off_t(struct tcb *tcp, long addr) argument
280 sys_sendfile(struct tcb *tcp) argument
294 print_loff_t(struct tcb *tcp, long addr) argument
307 sys_sendfile64(struct tcb *tcp) argument
323 sys_tee(struct tcb *tcp) argument
341 sys_splice(struct tcb *tcp) argument
365 sys_vmsplice(struct tcb *tcp) argument
381 sys_ioctl(struct tcb *tcp) argument
[all...]
/external/srec/srec/include/
H A Dann_util.h37 annotate *tcp; member in struct:__anon31092
/external/iptables/include/linux/netfilter/
H A Dxt_ecn.h29 } tcp; member in union:xt_ecn_info::__anon22594
H A Dnf_conntrack_tuple_common.h19 } tcp; member in union:nf_conntrack_man_proto
/external/iptables/include/linux/netfilter_ipv4/
H A Dipt_ECN.h29 } tcp; member in union:ipt_ECN_info::__anon22619
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_ecn.h31 } tcp; member in union:xt_ecn_info::__anon23220
H A Dnf_conntrack_tuple_common.h19 } tcp; member in union:nf_conntrack_man_proto
/external/kernel-headers/original/uapi/linux/netfilter_ipv4/
H A Dipt_ECN.h29 } tcp; member in union:ipt_ECN_info::__anon23253
/external/chromium_org/remoting/webapp/js_proto/
H A Dchrome_proto.js532 chrome.sockets.tcp = {};
535 chrome.sockets.tcp.CreateInfo = function() {
542 * @param {function(chrome.sockets.tcp.CreateInfo):void} callback
544 chrome.sockets.tcp.create = function(properties, callback) {};
548 chrome.sockets.tcp.ConnectInfo = function() {
557 * @param {function(chrome.sockets.tcp.ConnectInfo):void} callback
559 chrome.sockets.tcp.connect =
564 chrome.sockets.tcp.SendInfo = function() {
575 * @param {function(chrome.sockets.tcp.SendInfo):void} callback
577 chrome.sockets.tcp
[all...]
/external/android-clat/
H A Ddump.c27 #include <netinet/tcp.h>
164 /* print tcp header */
165 void dump_tcp_generic(const struct tcphdr *tcp, const uint8_t *options, size_t options_size, uint32_t temp_checksum, const uint8_t *payload, size_t payload_size) { argument
168 temp_checksum = ip_checksum_add(temp_checksum, tcp, sizeof(struct tcphdr));
176 printf("source = %x\n",ntohs(tcp->source));
177 printf("dest = %x\n",ntohs(tcp->dest));
178 printf("seq = %x\n",ntohl(tcp->seq));
179 printf("ack = %x\n",ntohl(tcp->ack_seq));
180 printf("d_off = %x\n",tcp->doff);
181 printf("res1 = %x\n",tcp
206 dump_tcp(const struct tcphdr *tcp, const struct iphdr *ip, const uint8_t *payload, size_t payload_size, const uint8_t *options, size_t options_size) argument
216 dump_tcp6(const struct tcphdr *tcp, const struct ip6_hdr *ip6, const uint8_t *payload, size_t payload_size, const uint8_t *options, size_t options_size) argument
[all...]

Completed in 336 milliseconds

1234