HomeSort by relevance Sort by last modified time
    Searched defs:ip (Results 376 - 400 of 676) sorted by null

<<11121314151617181920>>

  /external/guava/guava-tests/test/com/google/common/net/
InetAddressesTest.java 130 // Shouldn't hit DNS, because it's an IP string literal.
139 // Shouldn't hit DNS, because it's an IP string literal.
155 // Shouldn't hit DNS, because it's an IP string literal.
167 // Shouldn't hit DNS, because it's an IP string literal.
222 InetAddress ip = InetAddresses.forString(ipStr); local
223 assertEquals("1.2.3.4", InetAddresses.toUriString(ip));
230 InetAddress ip = InetAddresses.forString(ipStr); local
231 assertEquals("[3ffe::1]", InetAddresses.toUriString(ip));
353 InetAddress ip = InetAddresses.forString(nonCompatAddresses[i]); local
354 assertFalse(InetAddresses.isCompatIPv4Address((Inet6Address) ip));
372 InetAddress ip = InetAddresses.forString(validCompatAddresses[i]); local
430 InetAddress ip = InetAddresses.forString(non6to4Addresses[i]); local
446 InetAddress ip = InetAddresses.forString(valid6to4Address); local
460 InetAddress ip = InetAddresses.forString(nonTeredoAddresses[i]); local
477 InetAddress ip = InetAddresses.forString(validTeredoAddress); local
520 InetAddress ip = InetAddresses.forString(validIsatapAddresses[i]); local
526 InetAddress ip = InetAddresses.forString(nonIsatapAddresses[i]); local
    [all...]
  /external/ipsec-tools/src/racoon/
isakmp.c 115 # include <linux/ip.h>
128 # include <netinet/ip.h>
212 sizeof(struct ip) +
252 struct iphdr *ip; local
256 ip = (struct iphdr *)(x.lbuf + sizeof(*udp));
257 extralen += sizeof(*udp) + ip->ihl;
260 struct ip *ip; local
264 ip = (struct ip *)(x.lbuf + sizeof(*udp))
    [all...]
  /external/kernel-headers/original/uapi/asm-x86/asm/
sigcontext.h 217 __u32 ip; member in struct:sigcontext_32
255 __u64 ip; member in struct:sigcontext_64
  /external/libchrome/base/files/
file_util_posix.cc 865 std::vector<FilePath::StringType>::const_iterator ib, ip; local
866 for (ib = base_components.begin(), ip = path_components.begin();
867 ib != base_components.end(); ++ib, ++ip) {
871 DCHECK(ip != path_components.end());
872 DCHECK(*ip == *ib);
879 for (; ip != path_components.end(); ++ip) {
880 current_path = current_path.Append(*ip);
  /external/libcxx/test/std/depr/depr.c.headers/
math_h.pass.cpp 328 int ip; local
329 static_assert((std::is_same<decltype(frexp((float)0, &ip)), float>::value), "");
330 static_assert((std::is_same<decltype(frexp((bool)0, &ip)), double>::value), "");
331 static_assert((std::is_same<decltype(frexp((unsigned short)0, &ip)), double>::value), "");
332 static_assert((std::is_same<decltype(frexp((int)0, &ip)), double>::value), "");
333 static_assert((std::is_same<decltype(frexp((unsigned int)0, &ip)), double>::value), "");
334 static_assert((std::is_same<decltype(frexp((long)0, &ip)), double>::value), "");
335 static_assert((std::is_same<decltype(frexp((unsigned long)0, &ip)), double>::value), "");
336 static_assert((std::is_same<decltype(frexp((long long)0, &ip)), double>::value), "");
337 static_assert((std::is_same<decltype(frexp((unsigned long long)0, &ip)), double>::value), "")
348 int ip = 1; local
1322 int ip; local
    [all...]
  /external/libcxx/test/std/numerics/c.math/
cmath.pass.cpp 331 int ip; local
332 static_assert((std::is_same<decltype(std::frexp((float)0, &ip)), float>::value), "");
333 static_assert((std::is_same<decltype(std::frexp((bool)0, &ip)), double>::value), "");
334 static_assert((std::is_same<decltype(std::frexp((unsigned short)0, &ip)), double>::value), "");
335 static_assert((std::is_same<decltype(std::frexp((int)0, &ip)), double>::value), "");
336 static_assert((std::is_same<decltype(std::frexp((unsigned int)0, &ip)), double>::value), "");
337 static_assert((std::is_same<decltype(std::frexp((long)0, &ip)), double>::value), "");
338 static_assert((std::is_same<decltype(std::frexp((unsigned long)0, &ip)), double>::value), "");
339 static_assert((std::is_same<decltype(std::frexp((long long)0, &ip)), double>::value), "");
340 static_assert((std::is_same<decltype(std::frexp((unsigned long long)0, &ip)), double>::value), "")
351 int ip = 1; local
1379 int ip; local
    [all...]
  /external/libpcap/
pcap-sita.c 63 char *ip; /* this unit's IP address (as extracted from /etc/hosts) */ member in struct:unit
146 printf("%c:%c %s %s\n", 'C', 'S', "fd", "IP Address");
149 if (units[chassis][geoslot].ip != NULL)
150 printf("%d:%d %2d %s\n", chassis, geoslot, units[chassis][geoslot].fd, units[chassis][geoslot].ip);
227 if (units[chassis][geoslot].ip != NULL) {
228 free(units[chassis][geoslot].ip); /* get rid of the malloc'ed space that holds the IP address */
229 units[chassis][geoslot].ip = 0; /* then set the pointer to NULL */
244 if (units[chassis][geoslot].ip != NULL)
312 char *ip; local
    [all...]
  /external/libpng/contrib/libtests/
makepng.c 300 volatile unsigned int ip = 0; local
304 ip = x + (size * y);
313 set_color(palette+ip, trans+ip,
323 return ip+1;
1002 FILE *ip = fopen(name, "rb"); local
1004 if (ip != NULL)
1011 ch = getc(ip);
1017 if (ferror(ip))
1021 (void)fclose(ip);
    [all...]
  /external/libunwind/include/tdep-ia64/
libunwind_i.h 134 /* IP, CFM, and predicate cache (these are always equal to the
137 unw_word_t ip; /* instruction pointer value */ member in struct:cursor
238 #define tdep_fetch_frame(c,ip,n) do {} while(0)
245 #define tdep_get_ip(c) ((c)->ip)
262 unw_word_t ip);
263 extern int tdep_find_proc_info (unw_addr_space_t as, unw_word_t ip,
272 pid_t pid, unw_word_t ip,
  /external/lz4/tests/
frametest.c 229 BYTE* ip = (BYTE*)compressedBuffer; local
275 errorCode = LZ4F_decompress(dCtx, NULL, &oSize, ip, &iSize, NULL);
280 errorCode = LZ4F_getFrameInfo(dCtx, &fi, ip, &iSize);
286 errorCode = LZ4F_getFrameInfo(dCtx, &fi, ip, &iSize);
289 ip += iSize;
293 errorCode = LZ4F_getFrameInfo(dCtx, &fi, ip, &iSize);
296 ip += iSize;
303 while (ip < iend) {
306 errorCode = LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, NULL);
309 ip += iSize
347 const BYTE* ip = (const BYTE*)compressedBuffer; local
468 BYTE* ip = (BYTE*)compressedBuffer; local
628 const BYTE* ip = srcStart; local
666 { const BYTE* ip = (const BYTE*)compressedBuffer; local
    [all...]
  /external/mdnsresponder/mDNSPosix/
NetMonitor.c 143 // Special version of printf that knows how to print IP addresses, DNS-format name strings, etc.
239 mDNSv4Addr ip = entry->addr.ip.v4; local
241 // Note: This is reverse order compared to a normal dotted-decimal IP address, so we can't use our customary "%.4a" format code
242 mDNS_snprintf(buffer, sizeof(buffer), "%d.%d.%d.%d.in-addr.arpa.", ip.b[3], ip.b[2], ip.b[1], ip.b[0]);
    [all...]
  /external/mdnsresponder/mDNSShared/
DebugServices.c 1360 mDNSAddr *ip = (mDNSAddr*)a; local
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_pair_schedule.c 190 fprintf(stderr,"%u (%d) [%u],", ptr->Instruction->IP, score,
249 DBG("%i is now ready\n", sinst->Instruction->IP);
428 DBG("%i: commit score = %d\n", sinst->Instruction->IP, sinst->Score);
462 DBG("%i: commit TEX reads\n", readytex->Instruction->IP);
482 DBG("%i: commit TEX writes\n", readytex->Instruction->IP);
1254 unsigned int ip; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_eu_emit.c 1273 struct brw_reg ip = brw_ip_reg(); local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_state.c 1352 GLint *ip = (GLint *)ctx->Transform._ClipUserPlane[p]; local
1368 GLint *ip = (GLint *)ctx->Transform._ClipUserPlane[p]; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_state.c 1125 GLint *ip = (GLint *)ctx->Transform._ClipUserPlane[p]; local
1141 GLint *ip = (GLint *)ctx->Transform._ClipUserPlane[p]; local
    [all...]
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
ScriptEditor.java 411 Interpreter ip = mConfiguration.getInterpreterForScript(mNameText.getText().toString()); local
413 if (ip != null && mEnableAutoClose) {
414 auto = ip.getLanguage().autoClose(source.charAt(start));
  /external/syslinux/gpxe/src/include/
bootp.h 216 /* Format of a bootp IP packet */
219 struct iphdr ip; member in struct:bootpip_t
  /external/syslinux/gpxe/src/include/gpxe/
dhcp.h 116 struct in_addr ip[0]; member in struct:dhcp_pxe_boot_server
169 /** Requested IP address */
276 /** "Your" IP address
284 /** "Server" IP address
525 /** "Client" IP address
527 * This is filled in if the client already has an IP address
531 /** "Your" IP address
533 * This is the IP address assigned by the server to the client.
536 /** "Server" IP address
538 * This is the IP address of the next server to be used in th
    [all...]
  /external/syslinux/gpxe/src/net/udp/
dhcp.c 36 #include <gpxe/ip.h>
76 DHCP_WORD ( ETH_MAX_MTU - 20 /* IP header */ - 8 /* UDP header */ ),
209 /** DHCP offer is valid for IP lease */
217 /** IP address of server granting offer */
220 /** IP address being offered, or 0.0.0.0 for a pure proxy */
221 struct in_addr ip; member in struct:dhcp_offer
339 * IP+PXE are tried before @a type alone), then by order of receipt.
413 /* Identify offered IP address */
434 offer->ip = dhcppkt->dhcphdr->yiaddr;
469 if ( offer->ip.s_addr &
599 struct in_addr ip; local
1504 struct in_addr *ip; local
    [all...]
  /external/tcpdump/
print-icmp.c 37 #include "ip.h"
75 struct ip idi_ip;
95 * packet is large enought to contain the returned ip header.
98 * ip header length.
101 #define ICMP_EXTD_MINLEN (156 - sizeof (struct ip)) /* draft-bonica-internet-icmp-08 */
104 #define ICMP_ADVLENMIN (8 + sizeof (struct ip) + 8) /* min */
138 #define ICMP_PARAMPROB 12 /* ip header bad */
266 * IP packet before the MPLS extension header starts.
336 const struct ip *ip; local
    [all...]
  /external/v8/src/compiler/arm/
code-generator-arm.cc 525 if (pending_pushes->size() == 3 || reg.is(ip)) {
575 __ ldr(ip, g.SlotToMemOperand(source_location.index()));
577 ip); local
584 ip); local
618 __ add(ip, i.InputRegister(0),
620 __ Call(ip);
638 __ add(ip, i.InputRegister(0),
640 __ Jump(ip);
665 __ ldr(ip, FieldMemOperand(func, JSFunction::kCodeEntryOffset));
666 __ Call(ip);
    [all...]
  /external/v8/src/compiler/ppc/
code-generator-ppc.cc 916 ip); local
923 ip); local
    [all...]
  /external/valgrind/coregrind/m_scheduler/
scheduler.c 849 should therefore start by looking up the guest next IP in TT. If
850 it is True then we ignore the guest next IP and just run from
1048 Addr ip = VG_(get_IP)(tid); local
1076 Addr ip = VG_(get_IP)(tid); local
1158 Addr ip = VG_(get_IP)(tid); local
2034 Addr ip = arg[1]; local
    [all...]
  /external/webrtc/webrtc/base/
proxydetect.cc 217 uint32_t ip = ((a & 0xFF) << 24) | ((b & 0xFF) << 16) | ((c & 0xFF) << 8) | local
227 ((addr.ipaddr().v4AddressAsHostOrderInteger() & mask) == (ip & mask));
1078 std::string ip = proxy->address.ipaddr().ToString(); local
    [all...]

Completed in 2130 milliseconds

<<11121314151617181920>>