Home
last modified time | relevance | path

Searched refs:ports (Results 1 – 25 of 268) sorted by relevance

1234567891011

/external/skia/gyp/
Dports.gyp9 'target_name': 'ports',
19 '../include/ports',
24 '../src/ports',
29 '../src/ports/SkDebug_stdio.cpp',
30 '../src/ports/SkDebug_win.cpp',
34 '../src/ports/SkFontHost_win.cpp',
35 '../src/ports/SkFontMgr_default_gdi.cpp',
36 '../src/ports/SkFontMgr_default_dw.cpp',
37 '../src/ports/SkFontMgr_win_dw.cpp',
38 '../src/ports/SkRemotableFontMgr_win_dw.cpp',
[all …]
Dtools.gyp332 'ports.gyp:ports',
357 'ports.gyp:ports',
633 '<(skia_include_path)/ports',
641 '<(skia_include_path)/ports/SkAtomics_std.h',
642 '<(skia_include_path)/ports/SkAtomics_atomic.h',
643 '<(skia_include_path)/ports/SkAtomics_sync.h',
644 '<(skia_include_path)/ports/SkMutex_pthread.h',
645 '<(skia_include_path)/ports/SkMutex_win.h',
646 '<(skia_include_path)/ports/SkTypeface_mac.h',
647 '<(skia_include_path)/ports/SkTypeface_win.h',
Dimages.gyp79 '../src/ports/SkImageGenerator_skia.cpp',
81 '../src/ports/SkImageDecoder_CG.cpp',
82 '../src/ports/SkImageDecoder_WIC.cpp',
102 '../src/ports/SkImageDecoder_WIC.cpp',
114 '../src/ports/SkImageDecoder_CG.cpp',
Dandroid_framework_lib.gyp17 'ports.gyp:ports',
/external/jmonkeyengine/engine/src/networking/com/jme3/network/message/
DChannelInfoMessage.java48 private int[] ports; field in ChannelInfoMessage
54 public ChannelInfoMessage( long id, List<Integer> ports ) { in ChannelInfoMessage() argument
57 this.ports = new int[ports.size()]; in ChannelInfoMessage()
58 for( int i = 0; i < ports.size(); i++ ) { in ChannelInfoMessage()
59 this.ports[i] = ports.get(i); in ChannelInfoMessage()
68 return ports; in getPorts()
72 return "ChannelInfoMessage[" + id + ", " + Arrays.asList(ports) + "]"; in toString()
/external/selinux/libsemanage/src/
Dports_local.c79 semanage_port_t **ports = NULL; in hidden_def() local
84 if (semanage_port_list_local(handle, &ports, &nports) < 0) in hidden_def()
86 qsort(ports, nports, sizeof(semanage_port_t *), in hidden_def()
93 int proto = semanage_port_get_proto(ports[i]); in hidden_def()
94 int low = semanage_port_get_low(ports[i]); in hidden_def()
95 int high = semanage_port_get_high(ports[i]); in hidden_def()
107 proto2 = semanage_port_get_proto(ports[j]); in hidden_def()
108 low2 = semanage_port_get_low(ports[j]); in hidden_def()
109 high2 = semanage_port_get_high(ports[j]); in hidden_def()
132 semanage_port_free(ports[i]); in hidden_def()
[all …]
/external/iptables/extensions/
Dlibxt_multiport.man1 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 one of the
7 [\fB!\fP] \fB\-\-source\-ports\fP,\fB\-\-sports\fP \fIport\fP[\fB,\fP\fIport\fP|\fB,\fP\fIport\fP\f…
8 Match if the source port is one of the given ports. The flag
10 is a convenient alias for this option. Multiple ports or port ranges are
12 \fB53,1024:65535\fP would therefore match ports 53 and all from 1024 through
15 [\fB!\fP] \fB\-\-destination\-ports\fP,\fB\-\-dports\fP \fIport\fP[\fB,\fP\fIport\fP|\fB,\fP\fIport…
16 Match if the destination port is one of the given ports. The flag
20 [\fB!\fP] \fB\-\-ports\fP \fIport\fP[\fB,\fP\fIport\fP|\fB,\fP\fIport\fP\fB:\fP\fIport\fP]...
[all …]
Dlibxt_multiport.c85 parse_multi_ports(const char *portstring, uint16_t *ports, const char *proto) in parse_multi_ports() argument
97 ports[i] = xtables_parse_port(cp, proto); in parse_multi_ports()
129 multiinfo->ports[i] = xtables_parse_port(cp, proto); in parse_multi_ports_v1()
132 multiinfo->ports[++i] = xtables_parse_port(range, proto); in parse_multi_ports_v1()
133 if (multiinfo->ports[i-1] >= multiinfo->ports[i]) in parse_multi_ports_v1()
175 multiinfo->ports, proto); in __multiport_parse()
181 multiinfo->ports, proto); in __multiport_parse()
187 multiinfo->ports, proto); in __multiport_parse()
310 print_port(multiinfo->ports[i], proto, numeric); in __multiport_print()
360 print_port(multiinfo->ports[i], proto, numeric); in __multiport_print_v1()
[all …]
Dlibxt_tcp.c41 parse_tcp_ports(const char *portstring, uint16_t *ports) in parse_tcp_ports() argument
48 ports[0] = ports[1] = xtables_parse_port(buffer, "tcp"); in parse_tcp_ports()
53 ports[0] = buffer[0] ? xtables_parse_port(buffer, "tcp") : 0; in parse_tcp_ports()
54 ports[1] = cp[0] ? xtables_parse_port(cp, "tcp") : 0xFFFF; in parse_tcp_ports()
56 if (ports[0] > ports[1]) in parse_tcp_ports()
Dlibxt_sctp.c67 uint16_t *ports) in parse_sctp_ports() argument
75 ports[0] = ports[1] = xtables_parse_port(buffer, "sctp"); in parse_sctp_ports()
81 ports[0] = buffer[0] ? xtables_parse_port(buffer, "sctp") : 0; in parse_sctp_ports()
82 ports[1] = cp[0] ? xtables_parse_port(cp, "sctp") : 0xFFFF; in parse_sctp_ports()
84 if (ports[0] > ports[1]) in parse_sctp_ports()
Dlibxt_SNAT.man18 If no port range is specified, then source ports below 512 will be
19 mapped to other ports below 512: those between 512 and 1023 inclusive
20 will be mapped to ports below 1024, and other ports will be mapped to
/external/apache-http/src/org/apache/http/impl/cookie/
DBasicClientCookie2.java53 private int[] ports; field in BasicClientCookie2
68 return this.ports; in getPorts()
71 public void setPorts(final int[] ports) { in setPorts() argument
72 this.ports = ports; in setPorts()
101 clone.ports = this.ports.clone(); in clone()
DRFC2965PortAttributeHandler.java70 int[] ports = new int[st.countTokens()]; in parsePortAttribute() local
74 ports[i] = Integer.parseInt(st.nextToken().trim()); in parsePortAttribute()
75 if (ports[i] < 0) { in parsePortAttribute()
84 return ports; in parsePortAttribute()
96 private static boolean portMatch(int port, int[] ports) { in portMatch() argument
98 for (int i = 0, len = ports.length; i < len; i++) { in portMatch()
99 if (port == ports[i]) { in portMatch()
118 int[] ports = parsePortAttribute(portValue); in parse() local
119 cookie2.setPorts(ports); in parse()
DRFC2965Spec.java197 int[] ports = cookie.getPorts(); in formatCookieAsVer() local
198 if (ports != null) { in formatCookieAsVer()
199 for (int i = 0, len = ports.length; i < len; i++) { in formatCookieAsVer()
203 buffer.append(Integer.toString(ports[i])); in formatCookieAsVer()
/external/libutf/
DMakefile85 …cp Makefile Make.* README LICENSE NOTICE *.[ch137] rpm.spec bundle.ports $(TGZFILES) $(NAME)-$(VER…
103 PORTDIR=/usr/ports/$(PORTPLACE)
105 ports: target
109 cp $(NAME)-$(VERSION).tgz /usr/ports/distfiles
110 …cat bundle.ports | (cd $(PORTDIR) && awk '$$1=="---" && $$3=="---" { ofile=$$2; next} {if(ofile) p…
115 shar `find $(PORTDIR)` > ports.shar
116 (cd $(PORTDIR); tar cf - *) | gzip >$(NAME)-$(VERSION)-ports.tgz
119 .phony: all clean nuke install tgz rpm ports
/external/wpa_supplicant_8/src/drivers/
Ddriver_roboswitch.c62 u16 ports; member
241 u16 ports, const u8 *addr) in wpa_driver_roboswitch_join() argument
256 ROBO_ARLCTRL_VEC_1, &ports, 1); in wpa_driver_roboswitch_join()
260 ROBO_ARLCTRL_VEC_2, &ports, 1); in wpa_driver_roboswitch_join()
280 ROBO_ARLCTRL_VEC_1, &ports, 1); in wpa_driver_roboswitch_join()
287 u16 ports, const u8 *addr) in wpa_driver_roboswitch_leave() argument
303 if (os_memcmp(addr_read, addr_be16, 6) == 0 && ports_read == ports) { in wpa_driver_roboswitch_leave()
310 ports_read == ports) { in wpa_driver_roboswitch_leave()
336 ports_read == ports) { in wpa_driver_roboswitch_leave()
433 drv->ports = _read[0] & 0x001F; in wpa_driver_roboswitch_init()
[all …]
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/bench/
Dmain.py114 ports = [item for item in dir(cssmins) if item.startswith('p_')]
115 ports.sort()
116 space = max(map(len, ports)) - 4
117 ports = [(item[5:], getattr(cssmins, item).cssmin) for item in ports]
126 for _, cssmin in ports:
145 for idx, (name, cssmin) in enumerate(ports):
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/bench/
Dmain.py127 ports = [item for item in dir(jsmins) if item.startswith('p_')]
128 ports.sort()
129 space = max(map(len, ports)) - 4
130 ports = [(item[5:], getattr(jsmins, item).jsmin) for item in ports]
139 for _, jsmin in ports:
158 for idx, (name, jsmin) in enumerate(ports):
/external/lldb/tools/debugserver/source/MacOSX/
DMachException.cpp506 count = (sizeof (ports) / sizeof (ports[0])); in Save()
507 err = ::task_get_exception_ports (task, mask, masks, &count, ports, behaviors, flavors); in Save()
514 count = (sizeof (ports) / sizeof (ports[0])); in Save()
515 err = ::task_get_exception_ports (task, mask, masks, &count, ports, behaviors, flavors); in Save()
537 err = ::task_set_exception_ports (task, masks[i], ports[i], behaviors[i], flavors[i]); in Restore()
540 …t = 0x%4.4x, behavior = 0x%8.8x, new_flavor = 0x%8.8x )", task, masks[i], ports[i], behaviors[i], … in Restore()
/external/selinux/prebuilts/bin/
Dseinfo.py189 ports = [int(i) for i in args.portconquery.split("-")] variable
193 if len(ports) == 2:
194 q.ports = ports
195 elif len(ports) == 1:
196 q.ports = (ports[0], ports[0])
/external/kernel-headers/original/uapi/linux/netfilter/
Dxt_multiport.h18 __u16 ports[XT_MULTI_PORTS]; /* Ports */ member
24 __u16 ports[XT_MULTI_PORTS]; /* Ports */ member
/external/iptables/include/linux/netfilter/
Dxt_multiport.h18 __u16 ports[XT_MULTI_PORTS]; /* Ports */ member
24 __u16 ports[XT_MULTI_PORTS]; /* Ports */ member
/external/selinux/policycoreutils/sepolicy/sepolicy/help/
Dports_inbound.txt1 This screen shows the network ports that processes running with the '%(APP)s' type is allowed to bi…
4 SELinux controls the network ports that a application is allowed to bind to based on SELinux Port t…
Dports_outbound.txt1 This screen shows the network ports to which processes running with the '%(APP)s' type is allowed t…
4 SELinux controls the network ports that a applications are allowed to connect, based on SELinux Por…
/external/dnsmasq/contrib/port-forward/
Ddnsmasq-portforward43 ports=$(sed -n -e "/^${hostname}\ .*/ s/^.* //p" ${PORTSFILE})
45 for port in $ports; do

1234567891011