|   /external/strace/ | 
| sysctl.c  | 52 	if (umove_or_printaddr(tcp, tcp->u_arg[0], &info)) 58 	    umoven(tcp, (unsigned long) info.name, size, name) < 0) { 60 		if (entering(tcp)) 67 	if (entering(tcp)) { 159 		if (abbrev(tcp) && max_cnt > max_strlen) 170 		} else if (umove(tcp, (long)info.oldlenp, &oldlen) >= 0 176 			printpath(tcp, (size_t)info.oldval); 183 		else if (syserror(tcp)) 186 			printpath(tcp, (size_t)info.newval)     [all...] | 
| seccomp.c  | 165 decode_fprog(struct tcb *tcp, unsigned short len, unsigned long addr) 167 	if (!len || abbrev(tcp)) { 178 			if (umove(tcp, addr, &filter) < 0) 196 print_seccomp_filter(struct tcb *tcp, unsigned long addr) 200 	if (fetch_seccomp_fprog(tcp, addr, &fprog)) 201 		decode_fprog(tcp, fprog.len, fprog.filter); 213 	unsigned int op = tcp->u_arg[0]; 219 		printflags(seccomp_filter_flags, tcp->u_arg[1], 222 		print_seccomp_filter(tcp, tcp->u_arg[2])     [all...] | 
| fetch_struct_flock.c  | 54 MPERS_PRINTER_DECL(bool, fetch_struct_flock)(struct tcb *tcp, const long addr, void *p) 60 		return !umove_or_printaddr(tcp, addr, pfl); 62 	if (umove_or_printaddr(tcp, addr, &mfl)) 73 MPERS_PRINTER_DECL(bool, fetch_struct_flock64)(struct tcb *tcp, const long addr, void *p) 79 		return !umove_or_printaddr(tcp, addr, pfl); 81 	if (umove_or_printaddr(tcp, addr, &mfl))
  | 
| printrusage.c  | 40 MPERS_PRINTER_DECL(void, printrusage)(struct tcb *tcp, long addr) 44 	if (umove_or_printaddr(tcp, addr, &ru)) 50 	if (abbrev(tcp)) 72 printrusage32(struct tcb *tcp, long addr) 97 	if (umove_or_printaddr(tcp, addr, &ru)) 103 	if (abbrev(tcp))
  | 
| print_mq_attr.c  | 44 MPERS_PRINTER_DECL(void, printmqattr)(struct tcb *tcp, const long addr) 48 	if (umove_or_printaddr(tcp, addr, &attr))
  | 
| defs.h  | 336  * Use entering(tcp) / exiting(tcp) to check this bit to make code more readable. 352 #define UNDEFINED_SCNO	0x100	/* Used only in tcp->qual_flg */ 356 #define entering(tcp)	(!((tcp)->flags & TCB_INSYSCALL)) 357 #define exiting(tcp)	((tcp)->flags & TCB_INSYSCALL) 358 #define syserror(tcp)	((tcp)->u_error != 0) 359 #define verbose(tcp)	((tcp)->qual_flg & QUAL_VERBOSE     [all...] | 
|   /external/android-clat/ | 
| dump.c  | 27 #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) { 168   temp_checksum = ip_checksum_add(temp_checksum, tcp, sizeof(struct tcphdr)); 175   printf("TCP\n"); 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)     [all...] | 
|   /external/parameter-framework/upstream/remote-process/ | 
| main.cpp  | 43 bool sendAndDisplayCommand(asio::ip::tcp::socket &socket, CRequestMessage &requestMessage) 90     using asio::ip::tcp; 92     tcp::resolver resolver(io_service); 94     tcp::socket connectionSocket(io_service); 99         asio::connect(connectionSocket, resolver.resolve(tcp::resolver::query(host, port)));
  | 
|   /external/iptables/extensions/ | 
| libip6t_MASQUERADE.c  | 53 		r->min_proto.tcp.port 54 			= r->max_proto.tcp.port 64 		r->min_proto.tcp.port = htons(port); 65 		r->max_proto.tcp.port = htons(maxport); 93 				   "Need TCP, UDP, SCTP or DCCP with port specification"); 110 		printf("%hu", ntohs(r->min_proto.tcp.port)); 111 		if (r->max_proto.tcp.port != r->min_proto.tcp.port) 112 			printf("-%hu", ntohs(r->max_proto.tcp.port)); 125 		printf(" --to-ports %hu", ntohs(r->min_proto.tcp.port))     [all...] | 
| libip6t_REDIRECT.c  | 53 		range->min_proto.tcp.port 54 			= range->max_proto.tcp.port 65 		range->min_proto.tcp.port = htons(port); 66 		range->max_proto.tcp.port = htons(maxport); 94 				   "Need TCP, UDP, SCTP or DCCP with port specification"); 113 		printf("%hu", ntohs(range->min_proto.tcp.port)); 114 		if (range->max_proto.tcp.port != range->min_proto.tcp.port) 115 			printf("-%hu", ntohs(range->max_proto.tcp.port)); 127 		printf("%hu", ntohs(range->min_proto.tcp.port))     [all...] | 
| libipt_ECN.c  | 27 "  --ecn-tcp-remove		Remove all ECN bits from TCP header\n"); 33 "  --ecn-tcp-cwr		Set the IPv4 CWR bit (0 or 1)\n" 34 "  --ecn-tcp-ece		Set the IPv4 ECE bit (0 or 1)\n", 38 	{.name = "ecn-tcp-remove", .id = O_ECN_TCP_REMOVE, .type = XTTYPE_NONE, 40 	{.name = "ecn-tcp-cwr", .id = O_ECN_TCP_CWR, .type = XTTYPE_UINT8, 42 	{.name = "ecn-tcp-ece", .id = O_ECN_TCP_ECE, .type = XTTYPE_UINT8, 57 		einfo->proto.tcp.ece = 0; 58 		einfo->proto.tcp.cwr = 0; 62 		einfo->proto.tcp.cwr = cb->val.u8     [all...] | 
| libipt_MASQUERADE.c  | 54 		mr->range[0].min.tcp.port 55 			= mr->range[0].max.tcp.port 65 		mr->range[0].min.tcp.port = htons(port); 66 		mr->range[0].max.tcp.port = htons(maxport); 94 				   "Need TCP, UDP, SCTP or DCCP with port specification"); 112 		printf("%hu", ntohs(r->min.tcp.port)); 113 		if (r->max.tcp.port != r->min.tcp.port) 114 			printf("-%hu", ntohs(r->max.tcp.port)); 128 		printf(" --to-ports %hu", ntohs(r->min.tcp.port))     [all...] | 
| libipt_REDIRECT.c  | 54 		mr->range[0].min.tcp.port 55 			= mr->range[0].max.tcp.port 66 		mr->range[0].min.tcp.port = htons(port); 67 		mr->range[0].max.tcp.port = htons(maxport); 95 				   "Need TCP, UDP, SCTP or DCCP with port specification"); 115 		printf("%hu", ntohs(r->min.tcp.port)); 116 		if (r->max.tcp.port != r->min.tcp.port) 117 			printf("-%hu", ntohs(r->max.tcp.port)); 130 		printf("%hu", ntohs(r->min.tcp.port))     [all...] | 
|   /external/dbus/test/data/invalid-config-files/ | 
| truncated-file.conf  | 6   <listen>tcp:port=1234</listen>
  | 
|   /external/iptables/include/libiptc/ | 
| ipt_kernel_headers.h  | 12 #include <netinet/tcp.h> 22 #include <linux/tcp.h>
  | 
|   /external/parameter-framework/upstream/remote-processor/ | 
| RemoteProcessorServer.h  | 61     asio::ip::tcp::acceptor _acceptor; 62     asio::ip::tcp::socket _socket;
  | 
|   /external/pdfium/third_party/libopenjpeg20/ | 
| pi.c  | 696 	const opj_tcp_t *tcp = 00;  local  715 	tcp = &p_cp->tcps [tileno]; 716 	l_tccp = tcp->tccps; 813 	opj_tcp_t *tcp = 00;  local  825 	tcp = &cp->tcps[tileno]; 826 	l_poc_bound = tcp->numpocs+1; 1083  opj_poc_t *tcp = &tcps->pocs[pino];  local  1567  opj_poc_t *tcp= &tcps->pocs[pino];  local      [all...] | 
|   /bionic/libc/kernel/uapi/linux/netfilter/ | 
| xt_ecn.h  | 39     } tcp;  member in union:xt_ecn_info::__anon744 
  | 
|   /bionic/libc/kernel/uapi/linux/netfilter_ipv4/ | 
| ipt_ECN.h  | 37     } tcp;  member in union:ipt_ECN_info::__anon777 
  | 
|   /development/ndk/platforms/android-21/include/linux/netfilter/ | 
| xt_ecn.h  | 39  } tcp;  member in union:xt_ecn_info::__anon1851 
  | 
|   /development/ndk/platforms/android-21/include/linux/netfilter_ipv4/ | 
| ipt_ECN.h  | 37  } tcp;  member in union:ipt_ECN_info::__anon1884 
  | 
|   /development/ndk/platforms/android-3/include/linux/netfilter_ipv4/ | 
| ipt_ECN.h  | 30  } tcp;  member in union:ipt_ECN_info::__anon2347 
  | 
|   /external/iproute2/include/libiptc/ | 
| ipt_kernel_headers.h  | 11 #include <netinet/tcp.h>
  | 
|   /external/iptables/include/linux/netfilter/ | 
| xt_ecn.h  | 1 /* iptables module for matching the ECN header in IPv4 and TCP header 29 		} tcp;  member in union:xt_ecn_info::__anon12740 
  | 
|   /external/iptables/include/linux/netfilter_ipv4/ | 
| ipt_ECN.h  | 18 #define IPT_ECN_OP_SET_ECE	0x10	/* set ECE bit of TCP header */ 19 #define IPT_ECN_OP_SET_CWR	0x20	/* set CWR bit of TCP header */ 28 			__u8 ece:1, cwr:1; /* TCP ECT bits */ 29 		} tcp;  member in union:ipt_ECN_info::__anon12765 
  |