Searched refs:hp (Results 1 - 25 of 151) sorted by relevance

1234567

/external/tcpdump/
H A Dprint-hsrp.c103 struct hsrp *hp = (struct hsrp *) bp; local
105 TCHECK(hp->hsrp_version);
106 printf("HSRPv%d", hp->hsrp_version);
107 if (hp->hsrp_version != 0)
109 TCHECK(hp->hsrp_op_code);
111 printf("%s ", tok2strary(op_code_str, "unknown (%d)", hp->hsrp_op_code));
113 TCHECK(hp->hsrp_state);
114 printf("state=%s ", tok2str(states, "Unknown (%d)", hp->hsrp_state));
115 TCHECK(hp->hsrp_group);
116 printf("group=%d ", hp
[all...]
/external/ppp/pppd/plugins/radius/
H A Dip_util.c31 struct hostent *hp; local
37 else if ((hp = gethostbyname (host)) == (struct hostent *) NULL)
42 return ntohl((*(UINT4 *) hp->h_addr));
105 struct hostent *hp; local
108 if ((hp = gethostbyaddr ((char *) &n_ipaddr, sizeof (struct in_addr),
113 return ((hp==NULL)?"unknown":hp->h_name);
/external/valgrind/main/drd/tests/
H A Dcustom_alloc.c28 static void* hp = 0; // current heap pointer local
33 if (hp + size2 > hp_lim) {
34 hp = get_superblock();
35 hp_lim = hp + SUPERBLOCK_SIZE - 1;
38 p = hp + RZ;
39 hp += size2;
/external/valgrind/main/massif/tests/
H A Dcustom_alloc.c28 static void* hp = 0; // current heap pointer local
33 if (hp + size2 > hp_lim) {
34 hp = get_superblock();
35 hp_lim = hp + SUPERBLOCK_SIZE - 1;
38 p = hp + RZ;
39 hp += size2;
/external/fdlibm/
H A De_remainder.c39 int hx,hp; local
45 hp = __HI(p); /* high word of p */
48 hp &= 0x7fffffff;
52 if((hp|lp)==0) return (x*p)/(x*p); /* p = 0 */
54 ((hp>=0x7ff00000)&& /* p is NaN */
55 (((hp-0x7ff00000)|lp)!=0)))
59 if (hp<=0x7fdfffff) x = __ieee754_fmod(x,p+p); /* now x < 2p */
60 if (((hx-hp)|(lx-lp))==0) return zero*x;
63 if (hp<0x00200000) {
/external/webkit/Tools/android/flex-2.5.4a/MISC/Macintosh/
H A Dalloca.c156 register header *hp; /* traverses linked list */ local
158 for (hp = last_alloca_header; hp != NULL;)
159 if ((STACK_DIR > 0 && hp->h.deep > depth)
160 || (STACK_DIR < 0 && hp->h.deep < depth))
162 register header *np = hp->h.next;
164 free ((pointer) hp); /* collect garbage */
166 hp = np; /* -> next header */
171 last_alloca_header = hp; /* -> last valid storage */
/external/dropbear/
H A Dfake-rfc2553.c50 struct hostent *hp; local
67 hp = gethostbyaddr((char *)&sin->sin_addr,
69 if (hp == NULL)
72 if (strlcpy(host, hp->h_name, hostlen) >= hostlen)
153 struct hostent *hp; local
201 hp = gethostbyname(hostname);
202 if (hp && hp->h_name && hp->h_name[0] && hp
[all...]
H A Dconfig.sub147 -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
579 basic_machine=m68k-hp
582 basic_machine=m68k-hp
586 basic_machine=m68k-hp
590 basic_machine=hppa1.0-hp
593 basic_machine=m68000-hp
596 basic_machine=m68k-hp
599 basic_machine=hppa1.0-hp
602 basic_machine=hppa1.1-hp
605 # FIXME: really hppa2.0-hp
[all...]
/external/openssh/openbsd-compat/
H A Dfake-rfc2553.c51 struct hostent *hp; local
70 hp = gethostbyaddr((char *)&sin->sin_addr,
72 if (hp == NULL)
75 if (strlcpy(host, hp->h_name, hostlen) >= hostlen)
158 struct hostent *hp; local
209 hp = gethostbyname(hostname);
210 if (hp && hp->h_name && hp->h_name[0] && hp
[all...]
/external/valgrind/main/memcheck/tests/
H A Dcustom_alloc.c34 static void* hp = 0; // current heap pointer local
39 if (hp + size2 > hp_lim) {
40 hp = get_superblock();
41 hp_lim = hp + SUPERBLOCK_SIZE - 1;
44 p = hp + RZ;
45 hp += size2;
/external/mksh/src/
H A Dhistrap.c96 char **hfirst, **hlast, **hp, *editor = NULL; local
187 hp = first ? hist_get(first, false, false) :
189 if (!hp)
193 strdupx(line, *hp, ATEMP);
204 for (s = *hp; (s1 = strstr(s, pat)) &&
275 for (hp = rflag ? hlast : hfirst;
276 hp >= hfirst && hp <= hlast; hp += rflag ? -1 : 1) {
279 hist_source->line - (int)(histptr - hp));
421 char **hp = NULL; local
514 char **hp; local
634 char **hp; local
753 char *nhname, **hp; local
853 char **hp; local
[all...]
/external/tcpdump/missing/
H A Dgetaddrinfo.c514 struct hostent *hp; local
551 hp = getipnodebyname(hostname, pai->ai_family, AI_ADDRCONFIG, &h_error);
554 hp = gethostbyname2(hostname, pai->ai_family);
558 hp = gethostbyname(hostname);
567 if (hp == NULL) {
582 } else if ((hp->h_name == NULL) || (hp->h_name[0] == 0)
583 || (hp->h_addr_list[0] == NULL)) {
585 freehostent(hp);
587 hp
913 struct hostent *hp = NULL; local
[all...]
H A Dgetnameinfo.c111 struct hostent *hp; local
244 hp = getipnodebyaddr(addr, afd->a_addrlen, afd->a_af, &h_error);
246 hp = gethostbyaddr(addr, afd->a_addrlen, afd->a_af);
254 if (hp) {
256 p = strchr(hp->h_name, '.');
259 if (strlen(hp->h_name) + 1 > hostlen) {
261 freehostent(hp);
265 strcpy(host, hp->h_name);
267 freehostent(hp);
/external/nist-sip/java/gov/nist/core/
H A DHostNameParser.java266 HostPort hp = new HostPort();
267 hp.setHost(host);
279 hp.setPort(Integer.parseInt(port));
312 return hp;
334 HostPort hp = hnp.hostPort(true);
335 System.out.println("["+hp.encode()+"]");
/external/webkit/Tools/android/flex-2.5.4a/MISC/
H A Dalloca.c177 register header *hp; /* Traverses linked list. */ local
179 for (hp = last_alloca_header; hp != NULL;)
180 if ((STACK_DIR > 0 && hp->h.deep > depth)
181 || (STACK_DIR < 0 && hp->h.deep < depth))
183 register header *np = hp->h.next;
185 free ((pointer) hp); /* Collect garbage. */
187 hp = np; /* -> next header. */
192 last_alloca_header = hp; /* -> last valid storage. */
/external/eigen/test/
H A Dgeo_parametrizedline.cpp57 HyperplaneType hp(p2,n2);
58 Scalar t = l0.intersectionParameter(hp);
60 VERIFY_IS_MUCH_SMALLER_THAN(hp.signedDistance(pi), RealScalar(1));
62 VERIFY_IS_APPROX(l0.intersectionPoint(hp), pi);
/external/libpcap/
H A Dnametoaddr.c107 struct hostent *hp; local
109 if ((hp = gethostbyname(name)) != NULL) {
111 hlist[0] = (bpf_u_int32 *)hp->h_addr;
112 NTOHL(hp->h_addr);
115 for (p = (bpf_u_int32 **)hp->h_addr_list; *p; ++p)
117 return (bpf_u_int32 **)hp->h_addr_list;
H A Dsavefile.c874 swap_hdr(struct pcap_file_header *hp) argument
876 hp->version_major = SWAPSHORT(hp->version_major);
877 hp->version_minor = SWAPSHORT(hp->version_minor);
878 hp->thiszone = SWAPLONG(hp->thiszone);
879 hp->sigfigs = SWAPLONG(hp->sigfigs);
880 hp
[all...]
/external/libppp/src/
H A Ddefs.c156 struct hostent *hp; local
158 hp = gethostbyname(cp);
159 if (hp && hp->h_addrtype == AF_INET)
160 memcpy(&ipaddr, hp->h_addr, hp->h_length);
/external/openssh/
H A Dumac.c328 static void nh_aux(void *kp, void *dp, void *hp, UINT32 dlen) argument
330 * then stored via hp pointer. The length of the data pointed at by "dp",
342 h = *((UINT64 *)hp);
358 *((UINT64 *)hp) = h;
363 static void nh_aux(void *kp, void *dp, void *hp, UINT32 dlen) argument
376 h1 = *((UINT64 *)hp);
377 h2 = *((UINT64 *)hp + 1);
404 ((UINT64 *)hp)[0] = h1;
405 ((UINT64 *)hp)[1] = h2;
410 static void nh_aux(void *kp, void *dp, void *hp, UINT3 argument
465 nh_aux(void *kp, void *dp, void *hp, UINT32 dlen) argument
[all...]
/external/ipsec-tools/src/racoon/
H A Disakmp_frag.c169 int *hp; local
171 hp = (int *)(gen + 1);
173 return ntohl(hp[MD5_DIGEST_LENGTH / sizeof(*hp)]);
H A Dgetcertsbyname.c210 HEADER *hp; local
252 hp = (HEADER *)answer;
253 qdcount = ntohs(hp->qdcount);
254 ancount = ntohs(hp->ancount);
264 cp = (unsigned char *)(hp + 1);
/external/qemu/telephony/
H A Dsysdeps_posix.c611 struct hostent* hp; local
616 hp = gethostbyname(hostname);
617 if(hp == 0) {
624 addr.sin_family = hp->h_addrtype;
626 memcpy(&addr.sin_addr, hp->h_addr, hp->h_length);
628 channel->fd = socket(hp->h_addrtype, SOCK_STREAM, 0);
/external/chromium/sdch/open-vcdiff/
H A Dconfig.sub147 -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
579 basic_machine=m68k-hp
582 basic_machine=m68k-hp
586 basic_machine=m68k-hp
590 basic_machine=hppa1.0-hp
593 basic_machine=m68000-hp
596 basic_machine=m68k-hp
599 basic_machine=hppa1.0-hp
602 basic_machine=hppa1.1-hp
605 # FIXME: really hppa2.0-hp
[all...]
/external/chromium/third_party/libevent/
H A Dconfig.sub147 -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
591 basic_machine=m68k-hp
594 basic_machine=m68k-hp
598 basic_machine=m68k-hp
602 basic_machine=hppa1.0-hp
605 basic_machine=m68000-hp
608 basic_machine=m68k-hp
611 basic_machine=hppa1.0-hp
614 basic_machine=hppa1.1-hp
617 # FIXME: really hppa2.0-hp
[all...]

Completed in 775 milliseconds

1234567