HomeSort by relevance Sort by last modified time
    Searched refs:tcp (Results 151 - 175 of 260) sorted by null

1 2 3 4 5 67 8 91011

  /external/strace/
defs.h 446 #define entering(tcp) (!((tcp)->flags & TCB_INSYSCALL))
447 #define exiting(tcp) ((tcp)->flags & TCB_INSYSCALL)
448 #define syserror(tcp) ((tcp)->u_error != 0)
449 #define verbose(tcp) (qual_flags[(tcp)->scno] & QUAL_VERBOSE)
450 #define abbrev(tcp) (qual_flags[(tcp)->scno] & QUAL_ABBREV
    [all...]
  /external/libsepol/tests/policies/test-cond/
refpolicy-base.conf     [all...]
  /external/libppp/src/
ncp.c 101 ncp->cfg.urgent.tcp.port = (u_short *)malloc(NDEFTCPPORTS * sizeof(u_short));
102 if (ncp->cfg.urgent.tcp.port == NULL) {
104 ncp->cfg.urgent.tcp.nports = ncp->cfg.urgent.tcp.maxports = 0;
106 ncp->cfg.urgent.tcp.nports = ncp->cfg.urgent.tcp.maxports = NDEFTCPPORTS;
107 memcpy(ncp->cfg.urgent.tcp.port, default_urgent_tcp_ports,
134 if (ncp->cfg.urgent.tcp.maxports) {
135 ncp->cfg.urgent.tcp.nports = ncp->cfg.urgent.tcp.maxports = 0
    [all...]
  /external/android-clat/
translate.c 24 #include <netinet/tcp.h>
128 * protocol - protocol number (tcp, udp, etc)
162 * protocol - protocol number (tcp, udp, etc)
212 // alternative, which is to always update the pseudo-header checksum in all UDP/TCP/ICMP
306 * takes a tcp packet and sets it up for translation
308 * tcp - pointer to tcp header in packet
313 int tcp_packet(clat_packet out, int pos, const struct tcphdr *tcp, uint32_t checksum, size_t len) {
322 if(tcp->doff < 5) {
323 logmsg_dbg(ANDROID_LOG_ERROR,"tcp_packet/tcp header length set to less than 5: %x", tcp->doff)
    [all...]
translate.h 56 // Translate TCP and UDP packets.
57 int tcp_packet(clat_packet out, int pos, const struct tcphdr *tcp, uint32_t checksum, size_t len);
60 int tcp_translate(clat_packet out, int pos, const struct tcphdr *tcp, size_t header_size,
checksum.c 22 #include <netinet/tcp.h>
78 * calculate the pseudo header checksum for use in tcp/udp/icmp headers
98 * calculate the pseudo header checksum for use in tcp/udp headers
  /external/iptables/extensions/
libipt_DNAT.c 84 "Need TCP, UDP, SCTP or DCCP with port specification");
100 range.min.tcp.port
101 = range.max.tcp.port
114 range.min.tcp.port = htons(port);
115 range.max.tcp.port = htons(maxport);
206 printf("%hu", ntohs(r->min.tcp.port));
207 if (r->max.tcp.port != r->min.tcp.port)
208 printf("-%hu", ntohs(r->max.tcp.port));
libipt_SNAT.c 84 "Need TCP, UDP, SCTP or DCCP with port specification");
100 range.min.tcp.port
101 = range.max.tcp.port
114 range.min.tcp.port = htons(port);
115 range.max.tcp.port = htons(maxport);
206 printf("%hu", ntohs(r->min.tcp.port));
207 if (r->max.tcp.port != r->min.tcp.port)
208 printf("-%hu", ntohs(r->max.tcp.port));
libxt_osf.c 27 #include <netinet/tcp.h>
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
pseudotcp.h 46 // Notification of tcp events
47 virtual void OnTcpOpen(PseudoTcp* tcp) = 0;
48 virtual void OnTcpReadable(PseudoTcp* tcp) = 0;
49 virtual void OnTcpWriteable(PseudoTcp* tcp) = 0;
50 virtual void OnTcpClosed(PseudoTcp* tcp, uint32 error) = 0;
54 virtual WriteResult TcpWritePacket(PseudoTcp* tcp,
  /external/smack/src/org/xbill/DNS/
SimpleResolver.java 11 * SimpleResolver handles TCP retries, transaction security (TSIG), and
246 boolean tcp = false;
252 tcp = true;
253 if (tcp)
278 if (tcp) {
289 if (!tcp && !ignoreTruncation &&
292 tcp = true;
  /external/srec/tests/
Android.mk 5 # Compiled grammars, TCP test scripts, audio data and shell scripts #
9 ../config/en.us/tcp/bothtags5.tcp \
10 ../config/en.us/tcp/bothtags5_from_saved.tcp \
11 ../config/en.us/tcp/change_sample_rate2.tcp \
12 ../config/en.us/tcp/recognize_1_live.tcp \
13 ../config/en.us/tcp/recognize_10_live.tcp
    [all...]
  /external/chromium/third_party/libjingle/source/talk/session/tunnel/
pseudotcpchannel.cc 150 // TCP negotiation.
328 LOG_F(LS_WARNING) << "NULL tcp";
350 LOG_F(LS_WARNING) << "NULL tcp";
368 LOG_F(LS_WARNING) << "NULL tcp";
386 void PseudoTcpChannel::OnTcpOpen(PseudoTcp* tcp) {
390 ASSERT(tcp == tcp_);
399 void PseudoTcpChannel::OnTcpReadable(PseudoTcp* tcp) {
403 ASSERT(tcp == tcp_);
413 void PseudoTcpChannel::OnTcpWriteable(PseudoTcp* tcp) {
417 ASSERT(tcp == tcp_)
    [all...]
pseudotcpchannel.h 119 virtual IPseudoTcpNotify::WriteResult TcpWritePacket(PseudoTcp* tcp,
  /external/dnsmasq/contrib/port-forward/
dnsmasq-portforward 47 protocol=tcp
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/
Network.java 38 import com.jme3.network.kernel.tcp.SelectorKernel;
39 import com.jme3.network.kernel.tcp.SocketConnector;
60 * will be used for both TCP and UDP communication.
70 * will be used for both TCP and UDP communication.
80 * will be used for both TCP and UDP communication.
86 * @param tcpPort The port upon which the TCP hosting will listen for new connections.
88 * messages. Set to -1 if 'fast' traffic should go over TCP. This will
127 * Creates a Client that communicates with the specified host and separate TCP and UDP ports
146 * Creates a Client that communicates with the specified host and and separate TCP and UDP ports
154 * @param hostPort The remote TCP port on the server to which this client shoul
    [all...]
  /external/kernel-headers/original/linux/netfilter_ipv4/
ip_conntrack_tuple.h 24 } tcp; member in union:ip_conntrack_manip_proto
60 } tcp; member in union:ip_conntrack_tuple::__anon9833::__anon9834
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
TcpStream.cpp 26 #include <netinet/tcp.h>
UnixStream.cpp 25 #include <netinet/tcp.h>
  /external/iptables/include/linux/netfilter/
xt_osf.h 60 * http://www.iana.org/assignments/tcp-parameters
85 struct tcphdr tcp; member in struct:xt_osf_nlmsg
  /external/srec/srec/include/
ann_util.h 37 annotate *tcp; member in struct:__anon15416
  /sdk/emulator/opengl/shared/OpenglCodecCommon/
TcpStream.cpp 26 #include <netinet/tcp.h>
  /external/libpcap/
scanner.l 179 tcp return TCP;
349 tcp-fin { yylval.i = 0x01; return NUM; }
350 tcp-syn { yylval.i = 0x02; return NUM; }
351 tcp-rst { yylval.i = 0x04; return NUM; }
352 tcp-push { yylval.i = 0x08; return NUM; }
353 tcp-ack { yylval.i = 0x10; return NUM; }
354 tcp-urg { yylval.i = 0x20; return NUM; }
  /external/dropbear/
Android.mk 13 tcp-accept.c listener.c process-packet.c \
includes.h 91 #include <netinet/tcp.h>

Completed in 590 milliseconds

1 2 3 4 5 67 8 91011