HomeSort by relevance Sort by last modified time
    Searched full:ports (Results 1 - 25 of 514) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/iptables/include/linux/netfilter_ipv4/
ipt_multiport.h 17 u_int8_t count; /* Number of ports */
18 u_int16_t ports[IPT_MULTI_PORTS]; /* Ports */ member in struct:ipt_multiport
24 u_int8_t count; /* Number of ports */
25 u_int16_t ports[IPT_MULTI_PORTS]; /* Ports */ member in struct:ipt_multiport_v1
  /external/iptables/include/linux/netfilter_ipv6/
ip6t_multiport.h 17 u_int8_t count; /* Number of ports */
18 u_int16_t ports[IP6T_MULTI_PORTS]; /* Ports */ member in struct:ip6t_multiport
24 u_int8_t count; /* Number of ports */
25 u_int16_t ports[IP6T_MULTI_PORTS]; /* Ports */ member in struct:ip6t_multiport_v1
  /external/kernel-headers/original/linux/netfilter/
xt_multiport.h 17 u_int8_t count; /* Number of ports */
18 u_int16_t ports[XT_MULTI_PORTS]; /* Ports */ member in struct:xt_multiport
24 u_int8_t count; /* Number of ports */
25 u_int16_t ports[XT_MULTI_PORTS]; /* Ports */ member in struct:xt_multiport_v1
xt_tcpudp.h 16 #define XT_TCP_INV_SRCPT 0x01 /* Invert the sense of source ports. */
17 #define XT_TCP_INV_DSTPT 0x02 /* Invert the sense of dest ports. */
31 #define XT_UDP_INV_SRCPT 0x01 /* Invert the sense of source ports. */
32 #define XT_UDP_INV_DSTPT 0x02 /* Invert the sense of dest ports. */
  /external/skia/bench/
Makefile.am 12 $(top_builddir)/src/ports/SkGlobals_global.cpp \
13 $(top_builddir)/src/ports/SkOSFile_stdio.cpp \
14 $(top_builddir)/src/ports/SkThread_pthread.cpp \
15 $(top_builddir)/src/ports/SkTime_Unix.cpp \
16 $(top_builddir)/src/ports/SkFontHost_none.cpp
  /external/iptables/extensions/
libipt_multiport.man 1 This module matches a set of source or destination ports. Up to 15
2 ports can be specified. A port range (port:port) counts as two
3 ports. It can only be used in conjunction with
8 .BR "--source-ports " "\fI[!] port\fP[,\fIport\fP[,\fIport:port\fP...]]"
9 Match if the source port is one of the given ports. The flag
13 .BR "--destination-ports " "\fI[!] port\fP[,\fIport\fP[,\fIport:port\fP...]]"
14 Match if the destination port is one of the given ports. The flag
18 .BR "--ports " "\fI[!] port\fP[,\fIport\fP[,\fIport:port\fP...]]"
19 Match if either the source or destination ports are equal to one of
20 the given ports
    [all...]
libip6t_multiport.man 1 This module matches a set of source or destination ports. Up to 15
2 ports can be specified. It can only be used in conjunction
8 .BR "--source-ports " "\fI[!] port\fP[,\fIport\fP[,\fIport\fP...]]"
9 Match if the source port is one of the given ports. The flag
13 .BR "--destination-ports " "\fI[!] port\fP[,\fIport\fP[,\fIport\fP...]]"
14 Match if the destination port is one of the given ports. The flag
18 .BR "--ports " "\fI[!] port\fP[,\fIport\fP[,\fIport\fP...]]"
19 Match if the both the source and destination ports are equal to each
20 other and to one of the given ports.
libip6t_multiport.c 17 " --source-ports port[,port,port...]\n"
20 " --destination-ports port[,port,port...]\n"
23 " --ports port[,port,port]\n"
34 " --source-ports [!] port[,port:port,port...]\n"
37 " --destination-ports [!] port[,port:port,port...]\n"
40 " --ports [!] port[,port:port,port]\n"
46 { "source-ports", 1, 0, '1' },
48 { "destination-ports", 1, 0, '2' },
50 { "ports", 1, 0, '3' },
72 parse_multi_ports(const char *portstring, u_int16_t *ports, const char *proto
    [all...]
libipt_multiport.c 18 " --source-ports port[,port,port...]\n"
21 " --destination-ports port[,port,port...]\n"
24 " --ports port[,port,port]\n"
35 " --source-ports [!] port[,port:port,port...]\n"
38 " --destination-ports [!] port[,port:port,port...]\n"
41 " --ports [!] port[,port:port,port]\n"
47 { "source-ports", 1, 0, '1' },
49 { "destination-ports", 1, 0, '2' },
51 { "ports", 1, 0, '3' },
75 parse_multi_ports(const char *portstring, u_int16_t *ports, const char *proto
    [all...]
libipt_SNAT.man 17 If no port range is specified, then source ports below 512 will be
18 mapped to other ports below 512: those between 512 and 1023 inclusive
19 will be mapped to ports below 1024, and other ports will be mapped to
  /external/webkit/WebCore/dom/
MessagePort.cpp 62 MessagePortArray ports; local
64 ports.append(port);
65 postMessage(message, &ports, ec);
73 void MessagePort::postMessage(PassRefPtr<SerializedScriptValue> message, const MessagePortArray* ports, ExceptionCode& ec)
80 // Make sure we aren't connected to any of the passed-in ports.
81 if (ports) {
82 for (unsigned int i = 0; i < ports->size(); ++i) {
83 MessagePort* dataPort = (*ports)[i].get();
89 channels = MessagePort::disentanglePorts(ports, ec);
103 // We can't receive any messages or generate any events, so remove ourselves from the list of active ports
173 OwnPtr<MessagePortArray> ports = MessagePort::entanglePorts(*m_scriptExecutionContext, eventData->channels()); local
    [all...]
MessageEvent.cpp 41 MessageEvent::MessageEvent(PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, PassRefPtr<DOMWindow> source, PassOwnPtr<MessagePortArray> ports)
47 , m_ports(ports)
55 void MessageEvent::initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, DOMWindow* source, PassOwnPtr<MessagePortArray> ports)
66 m_ports = ports;
80 MessagePortArray* ports = 0; local
82 ports = new MessagePortArray();
83 ports->append(port);
85 initMessageEvent(type, canBubble, cancelable, data, origin, lastEventId, source, ports);
  /bionic/libc/kernel/common/linux/netfilter/
xt_multiport.h 28 u_int16_t ports[XT_MULTI_PORTS]; member in struct:xt_multiport
35 u_int16_t ports[XT_MULTI_PORTS]; member in struct:xt_multiport_v1
  /dalvik/libcore/support/src/test/java/tests/support/
Support_PortManager.java 30 * @deprecated Use OS to find free ports.
53 * Returns 1 free ports to be used.
60 * Returns the specified number of free ports to be used.
64 throw new IllegalArgumentException("Invalid ports number: " + num);
67 int[] ports = new int[num]; local
72 ports[i] = dss[i].getLocalPort();
75 throw new Error("Unable to get " + num + " ports for UDP: " + ex);
83 return ports;
  /external/skia/xcode/ports-mac.xcodeproj/
project.pbxproj 19 00B7E16A0EDCA9EA00F77EA2 /* SkThread_pthread.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SkThread_pthread.cpp; path = ../libsgl/ports/SkThread_pthread.cpp; sourceTree = SOURCE_ROOT; };
20 00B7E16B0EDCA9EA00F77EA2 /* SkTime_Unix.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SkTime_Unix.cpp; path = ../libsgl/ports/SkTime_Unix.cpp; sourceTree = SOURCE_ROOT; };
23 FE33C954094E031400C4A640 /* SkBitmap_Mac.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = SkBitmap_Mac.cpp; path = ports/SkBitmap_Mac.cpp; sourceTree = "<group>"; };
24 FE33C955094E031400C4A640 /* SkOSWindow_Mac.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = SkOSWindow_Mac.cpp; path = ports/SkOSWindow_Mac.cpp; sourceTree = "<group>"; };
25 FE33C958094E041D00C4A640 /* skia_mac.cp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = skia_mac.cp; path = ports/skia_mac.cp; sourceTree = "<group>"; };
39 08FB7794FE84155DC02AAC07 /* ports-mac */ = {
46 name = "ports-mac";
90 D2AAC045055464E500DB518D /* ports-mac */ = {
92 buildConfigurationList = 1DEB91EB08733DB70010E9CD /* Build configuration list for PBXNativeTarget "ports-mac" */;
102 name = "ports-mac"
    [all...]
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/netfilter/
xt_multiport.h 28 u_int16_t ports[XT_MULTI_PORTS]; member in struct:xt_multiport
35 u_int16_t ports[XT_MULTI_PORTS]; member in struct:xt_multiport_v1
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/netfilter/
xt_multiport.h 28 u_int16_t ports[XT_MULTI_PORTS]; member in struct:xt_multiport
35 u_int16_t ports[XT_MULTI_PORTS]; member in struct:xt_multiport_v1
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/netfilter/
xt_multiport.h 28 u_int16_t ports[XT_MULTI_PORTS]; member in struct:xt_multiport
35 u_int16_t ports[XT_MULTI_PORTS]; member in struct:xt_multiport_v1
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/netfilter/
xt_multiport.h 28 u_int16_t ports[XT_MULTI_PORTS]; member in struct:xt_multiport
35 u_int16_t ports[XT_MULTI_PORTS]; member in struct:xt_multiport_v1
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/netfilter/
xt_multiport.h 28 u_int16_t ports[XT_MULTI_PORTS]; member in struct:xt_multiport
35 u_int16_t ports[XT_MULTI_PORTS]; member in struct:xt_multiport_v1
  /ndk/build/platforms/android-8/arch-x86/usr/include/linux/netfilter/
xt_multiport.h 28 u_int16_t ports[XT_MULTI_PORTS]; member in struct:xt_multiport
35 u_int16_t ports[XT_MULTI_PORTS]; member in struct:xt_multiport_v1
  /external/iproute2/include/linux/netfilter/
xt_tcpudp.h 18 #define XT_TCP_INV_SRCPT 0x01 /* Invert the sense of source ports. */
19 #define XT_TCP_INV_DSTPT 0x02 /* Invert the sense of dest ports. */
33 #define XT_UDP_INV_SRCPT 0x01 /* Invert the sense of source ports. */
34 #define XT_UDP_INV_DSTPT 0x02 /* Invert the sense of dest ports. */
  /development/ide/xcode/ports-mac.xcodeproj/
project.pbxproj 20 00540DC109D04AD500307DCB /* SkTime_Unix.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = SkTime_Unix.cpp; path = ../../libs/graphics/ports/SkTime_Unix.cpp; sourceTree = SOURCE_ROOT; };
21 00B502C909DB191900A01CD6 /* SkThread_none.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = SkThread_none.cpp; path = ../../libs/graphics/ports/SkThread_none.cpp; sourceTree = SOURCE_ROOT; };
22 00E6E3510CCD19A900F102DB /* SkThread_pthread.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = SkThread_pthread.cpp; path = ../../libs/graphics/ports/SkThread_pthread.cpp; sourceTree = SOURCE_ROOT; };
25 FE33C954094E031400C4A640 /* SkBitmap_Mac.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = SkBitmap_Mac.cpp; path = ports/SkBitmap_Mac.cpp; sourceTree = "<group>"; };
26 FE33C955094E031400C4A640 /* SkOSWindow_Mac.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = SkOSWindow_Mac.cpp; path = ports/SkOSWindow_Mac.cpp; sourceTree = "<group>"; };
27 FE33C958094E041D00C4A640 /* skia_mac.cp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = skia_mac.cp; path = ports/skia_mac.cp; sourceTree = "<group>"; };
42 08FB7794FE84155DC02AAC07 /* ports-mac */ = {
49 name = "ports-mac";
96 D2AAC045055464E500DB518D /* ports-mac */ = {
98 buildConfigurationList = 1DEB91EB08733DB70010E9CD /* Build configuration list for PBXNativeTarget "ports-mac" */
    [all...]
  /external/apache-http/src/org/apache/http/impl/cookie/
RFC2965PortAttributeHandler.java 55 * into an array of ports.
58 * @return parsed array of ports
65 int[] ports = new int[st.countTokens()]; local
69 ports[i] = Integer.parseInt(st.nextToken().trim());
70 if (ports[i] < 0) {
79 return ports;
84 * ports list.
87 * @param ports port list
89 * the given ports list; <tt>false</tt> otherwise.
91 private static boolean portMatch(int port, int[] ports) {
113 int[] ports = parsePortAttribute(portValue); local
    [all...]
  /external/skia/xcode/ports.xcodeproj/
project.pbxproj 23 00B7E1910EDCAA9300F77EA2 /* SkFontHost_android.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SkFontHost_android.cpp; path = ../libsgl/ports/SkFontHost_android.cpp; sourceTree = SOURCE_ROOT; };
24 00B7E1920EDCAA9300F77EA2 /* SkGlobals_global.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SkGlobals_global.cpp; path = ../libsgl/ports/SkGlobals_global.cpp; sourceTree = SOURCE_ROOT; };
25 00B7E1930EDCAA9300F77EA2 /* SkImageDecoder_Factory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SkImageDecoder_Factory.cpp; path = ../libsgl/ports/SkImageDecoder_Factory.cpp; sourceTree = SOURCE_ROOT; };
26 00B7E1940EDCAA9300F77EA2 /* SkOSFile_stdio.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SkOSFile_stdio.cpp; path = ../libsgl/ports/SkOSFile_stdio.cpp; sourceTree = SOURCE_ROOT; };
28 00B7E3600EDCB05400F77EA2 /* SkFontHost_gamma.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SkFontHost_gamma.cpp; path = ../libsgl/ports/SkFontHost_gamma.cpp; sourceTree = SOURCE_ROOT; };
43 08FB7794FE84155DC02AAC07 /* ports */ = {
50 name = ports;
96 D2AAC045055464E500DB518D /* ports */ = {
98 buildConfigurationList = 1DEB91EB08733DB70010E9CD /* Build configuration list for PBXNativeTarget "ports" */;
108 name = ports;
    [all...]

Completed in 129 milliseconds

1 2 3 4 5 6 7 8 91011>>