Searched refs:ip (Results 226 - 250 of 602) sorted by relevance

1234567891011>>

/external/iptables/extensions/
H A Dlibxt_tos.c81 static void tos_mt_print_v0(const void *ip, const struct xt_entry_match *match, argument
93 static void tos_mt_print(const void *ip, const struct xt_entry_match *match, argument
106 static void tos_mt_save_v0(const void *ip, const struct xt_entry_match *match) argument
115 static void tos_mt_save(const void *ip, const struct xt_entry_match *match) argument
H A Dlibipt_ah.c55 static void ah_print(const void *ip, const struct xt_entry_match *match, argument
68 static void ah_save(const void *ip, const struct xt_entry_match *match) argument
H A Dlibxt_CONNSECMARK.c74 CONNSECMARK_print(const void *ip, const struct xt_entry_target *target, argument
85 CONNSECMARK_save(const void *ip, const struct xt_entry_target *target) argument
H A Dlibxt_DSCP.c78 static void DSCP_print(const void *ip, const struct xt_entry_target *target, argument
87 static void DSCP_save(const void *ip, const struct xt_entry_target *target) argument
H A Dlibxt_dscp.c78 dscp_print(const void *ip, const struct xt_entry_match *match, int numeric) argument
85 static void dscp_save(const void *ip, const struct xt_entry_match *match) argument
H A Dlibxt_esp.c50 esp_print(const void *ip, const struct xt_entry_match *match, int numeric) argument
62 static void esp_save(const void *ip, const struct xt_entry_match *match) argument
H A Dlibxt_MARK.c167 static void MARK_print_v0(const void *ip, argument
176 static void MARK_save_v0(const void *ip, const struct xt_entry_target *target) argument
185 static void MARK_print_v1(const void *ip, const struct xt_entry_target *target, argument
205 static void mark_tg_print(const void *ip, const struct xt_entry_target *target, argument
222 static void MARK_save_v1(const void *ip, const struct xt_entry_target *target) argument
241 static void mark_tg_save(const void *ip, const struct xt_entry_target *target) argument
/external/iptables/include/
H A Diptables.h4 #include <netinet/ip.h>
/external/linux-tools-perf/
H A Dbuiltin-inject.c144 thread = perf_session__findnew(session, event->ip.pid);
152 event->ip.pid, event->ip.ip, &al);
/external/openssl/crypto/bio/
H A Dbss_fd.c179 int *ip; local
201 ip=(int *)ptr;
202 if (ip != NULL) *ip=b->num;
H A Dbss_sock.c171 int *ip; local
184 ip=(int *)ptr;
185 if (ip != NULL) *ip=b->num;
/external/valgrind/main/include/
H A Dpub_tool_execontext.h73 // gives the index of the passed ip. Doesn't go below main() unless
75 extern void VG_(apply_ExeContext)( void(*action)(UInt n, Addr ip),
/external/tcpdump/
H A Dprint-icmp.c40 #include "ip.h"
78 struct ip idi_ip;
98 * packet is large enought to contain the returned ip header.
101 * ip header length.
104 #define ICMP_EXTD_MINLEN (156 - sizeof (struct ip)) /* draft-bonica-internet-icmp-08 */
107 #define ICMP_ADVLENMIN (8 + sizeof (struct ip) + 8) /* min */
141 #define ICMP_PARAMPROB 12 /* ip header bad */
339 const struct ip *ip; local
341 const struct ip *oi
[all...]
H A Dprint-pgm.c35 #include "ip.h"
153 register const struct ip *ip; local
169 ip = (struct ip *)bp2;
171 if (IP_V(ip) == 6)
176 if (IP_V(ip) == 6) {
193 ipaddr_string(&ip->ip_src),
194 ipaddr_string(&ip->ip_dst));
217 if (ip
[all...]
H A Dprint-esp.c47 #include "ip.h"
348 struct ip *ip; local
407 ip = (struct ip *)bp2;
408 switch (IP_V(ip)) {
432 if (EXTRACT_16BITS(&ip->ip_off) & IP_MF)
434 len = EXTRACT_16BITS(&ip->ip_len);
441 sin->sin_addr.s_addr == ip->ip_dst.s_addr) {
/external/chromium/net/base/
H A Dlisten_socket.h63 static ListenSocket* Listen(std::string ip, int port,
91 static SOCKET Listen(std::string ip, int port);
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dudpport.cc41 uint32 ip, int min_port, int max_port)
42 : Port(thread, LOCAL_PORT_TYPE, factory, network, ip, min_port, max_port),
38 UDPPort(talk_base::Thread* thread, talk_base::PacketSocketFactory* factory, talk_base::Network* network, uint32 ip, int min_port, int max_port) argument
/external/clang/test/Index/
H A Dload-stmts.cpp116 void casts(int *ip) { argument
117 (void)reinterpret_cast<float *>(ip);
229 // CHECK: load-stmts.cpp:117:35: UnexposedExpr=ip:116:17 Extent=[117:35 - 117:37]
230 // CHECK: load-stmts.cpp:117:35: DeclRefExpr=ip:116:17 Extent=[117:35 - 117:37]
/external/mksh/src/
H A Dmisc.c1245 char *xp, *ip, *tp, *ipath, *ldest = NULL; local
1274 Xinit(xs, xp, strlen(ip = ipath) + 1, ATEMP);
1279 while (*ip) {
1281 while (*ip == '/')
1282 ++ip;
1283 if (!*ip)
1287 tp = ip;
1288 while (*ip && *ip != '/')
1289 ++ip;
1539 char *dp, *ip, *sp, *tp; local
[all...]
/external/qemu/slirp/
H A Dtftp.c73 memcpy(&spt->client_ip, &tp->ip.ip_src, sizeof(spt->client_ip));
90 if (!memcmp(&spt->client_ip, &tp->ip.ip_src, sizeof(spt->client_ip))) {
157 saddr.sin_addr = recv_tp->ip.ip_dst;
164 sizeof(struct ip) - sizeof(struct udphdr);
197 saddr.sin_addr = recv_tp->ip.ip_dst;
206 sizeof(struct ip) - sizeof(struct udphdr);
243 saddr.sin_addr = recv_tp->ip.ip_dst;
262 sizeof(struct ip) - sizeof(struct udphdr);
/external/qemu/slirp-android/
H A Dlibslirp.h23 int inet_strtoip(const char* str, uint32_t *ip);
24 char* inet_iptostr(uint32_t ip);
H A Dtftp.c73 spt->client_ip = ip_geth(tp->ip.ip_src);
90 if (spt->client_ip == ip_geth(tp->ip.ip_src)) {
158 ip_geth(recv_tp->ip.ip_dst),
166 sizeof(struct ip) - sizeof(struct udphdr);
200 ip_geth(recv_tp->ip.ip_dst),
210 sizeof(struct ip) - sizeof(struct udphdr);
248 ip_geth(recv_tp->ip.ip_dst),
268 sizeof(struct ip) - sizeof(struct udphdr);
/external/valgrind/main/none/tests/
H A Dtls.c54 int *ip = (*test->func)(); local
59 int a = (*ip)++;
62 printf("tls_ptr: case \"%s\" has mismatch: *ip=%d here=%d\n",
/external/linux-tools-perf/util/
H A Dmap.h45 /* ip -> dso rip */
47 /* dso rip -> ip */
90 static inline u64 map__map_ip(struct map *map, u64 ip) argument
92 return ip - map->start + map->pgoff;
95 static inline u64 map__unmap_ip(struct map *map, u64 ip) argument
97 return ip + map->start - map->pgoff;
100 static inline u64 identity__map_ip(struct map *map __used, u64 ip) argument
102 return ip;
106 /* rip/ip <-> addr suitable for passing to `objdump --start-address=` */
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DPKIXNameConstraintValidator.java266 * <code>permitted</code> with <code>ip</code>.
272 * <code>ip</code>.
279 byte[] ip = ASN1OctetString.getInstance(
283 if (ip != null)
285 intersect.add(ip);
294 intersect.addAll(intersectIPRange(_permitted, ip));
303 * with <code>ip</code>.
307 * @param ip The IP address with its subnet mask.
309 * <code>ip</code> as byte arrays.
311 private Set unionIP(Set excluded, byte[] ip) argument
406 ipWithSubnetMask(byte[] ip, byte[] subnetMask) argument
540 checkPermittedIP(Set permitted, byte[] ip) argument
577 checkExcludedIP(Set excluded, byte[] ip) argument
609 isIPConstrained(byte ip[], byte[] constraint) argument
1834 stringifyIP(byte[] ip) argument
[all...]

Completed in 538 milliseconds

1234567891011>>