HomeSort by relevance Sort by last modified time
    Searched refs:hp (Results 1 - 25 of 183) sorted by null

1 2 3 4 5 6 7 8

  /external/tcpdump/
print-hsrp.c 103 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->hsrp_group)
    [all...]
  /external/ppp/pppd/plugins/radius/
ip_util.c 31 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);
  /system/core/libcutils/
socket_network_client.c 41 struct hostent *hp; local
46 hp = gethostbyname(host);
47 if(hp == 0) return -1;
50 addr.sin_family = hp->h_addrtype;
52 memcpy(&addr.sin_addr, hp->h_addr, hp->h_length);
54 s = socket(hp->h_addrtype, type, 0);
  /external/valgrind/main/drd/tests/
custom_alloc.c 28 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/
custom_alloc.c 28 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;
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_remainder.c 37 int32_t hx,hp; local
42 EXTRACT_WORDS(hp,lp,p);
44 hp &= 0x7fffffff;
48 if((hp|lp)==0) return (x*p)/(x*p); /* p = 0 */
50 ((hp>=0x7ff00000)&& /* p is NaN */
51 (((hp-0x7ff00000)|lp)!=0)))
55 if (hp<=0x7fdfffff) x = __ieee754_fmod(x,p+p); /* now x < 2p */
56 if (((hx-hp)|(lx-lp))==0) return zero*x;
59 if (hp<0x00200000) {
e_remainderf.c 28 int32_t hx,hp; local
33 GET_FLOAT_WORD(hp,p);
35 hp &= 0x7fffffff;
39 if(hp==0) return (x*p)/(x*p); /* p = 0 */
41 ((hp>0x7f800000))) /* p is NaN */
45 if (hp<=0x7effffff) x = __ieee754_fmodf(x,p+p); /* now x < 2p */
46 if ((hx-hp)==0) return zero*x;
49 if (hp<0x01000000) {
  /external/fdlibm/
e_remainder.c 39 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/
alloca.c 156 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 */
  /bionic/libc/netbsd/resolv/
res_mkquery.c 127 register HEADER *hp; local
145 hp = (HEADER *)(void *)buf;
146 hp->id = htons(res_randomid());
147 hp->opcode = op;
148 hp->rd = (statp->options & RES_RECURSE) != 0U;
149 hp->rcode = NOERROR;
172 hp->qdcount = htons(1);
193 hp->arcount = htons(1);
215 hp->ancount = htons(1);
237 register HEADER *hp; local
    [all...]
res_query.c 134 HEADER *hp = (HEADER *)(void *)answer; local
141 hp->rcode = NOERROR; /* default */
183 if (hp->rcode != NOERROR || ntohs(hp->ancount) == 0) {
187 p_rcode(hp->rcode),
188 ntohs(hp->ancount),
189 ntohs(hp->nscount),
190 ntohs(hp->arcount));
192 switch (hp->rcode) {
228 HEADER *hp = (HEADER *)(void *)answer local
    [all...]
  /external/dropbear/
fake-rfc2553.c 50 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->h_addr_list[0])
    [all...]
  /external/openssh/openbsd-compat/
fake-rfc2553.c 51 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->h_addr_list[0])
    [all...]
  /system/netd/
DnsProxyListener.cpp 93 static bool sendhostent(SocketClient *c, struct hostent *hp) {
96 if (hp->h_name != NULL) {
97 success &= sendLenAndData(c, strlen(hp->h_name)+1, hp->h_name);
102 for (i=0; hp->h_aliases[i] != NULL; i++) {
103 success &= sendLenAndData(c, strlen(hp->h_aliases[i])+1, hp->h_aliases[i]);
107 uint32_t buf = htonl(hp->h_addrtype);
110 buf = htonl(hp->h_length);
113 for (i=0; hp->h_addr_list[i] != NULL; i++)
321 struct hostent* hp; local
447 struct hostent* hp; local
    [all...]
  /external/valgrind/main/memcheck/tests/
custom_alloc.c 34 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/
histrap.c 96 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...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include-fixed/X11/
Xos_r.h 434 # define _XGethostbyname(h,hp) gethostbyname((h))
435 # define _XGethostbyaddr(a,al,t,hp) gethostbyaddr((a),(al),(t))
460 # define _Xg_copyHostent(hp) \
461 (memcpy(&(hp).hent, (hp).hptr, sizeof(struct hostent)), \
462 strcpy((hp).h_name, (hp).hptr->h_name), \
463 ((hp).hent.h_name = (hp).h_name), \
464 ((hp).hptr = &(hp).hent),
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xos_r.h 425 # define _XGethostbyname(h,hp) gethostbyname((h))
426 # define _XGethostbyaddr(a,al,t,hp) gethostbyaddr((a),(al),(t))
451 # define _Xg_copyHostent(hp) \
452 (memcpy(&(hp).hent, (hp).hptr, sizeof(struct hostent)), \
453 strcpy((hp).h_name, (hp).hptr->h_name), \
454 ((hp).hent.h_name = (hp).h_name), \
455 ((hp).hptr = &(hp).hent),
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include-fixed/X11/
Xos_r.h 434 # define _XGethostbyname(h,hp) gethostbyname((h))
435 # define _XGethostbyaddr(a,al,t,hp) gethostbyaddr((a),(al),(t))
460 # define _Xg_copyHostent(hp) \
461 (memcpy(&(hp).hent, (hp).hptr, sizeof(struct hostent)), \
462 strcpy((hp).h_name, (hp).hptr->h_name), \
463 ((hp).hent.h_name = (hp).h_name), \
464 ((hp).hptr = &(hp).hent),
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xos_r.h 425 # define _XGethostbyname(h,hp) gethostbyname((h))
426 # define _XGethostbyaddr(a,al,t,hp) gethostbyaddr((a),(al),(t))
451 # define _Xg_copyHostent(hp) \
452 (memcpy(&(hp).hent, (hp).hptr, sizeof(struct hostent)), \
453 strcpy((hp).h_name, (hp).hptr->h_name), \
454 ((hp).hent.h_name = (hp).h_name), \
455 ((hp).hptr = &(hp).hent),
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xos_r.h 425 # define _XGethostbyname(h,hp) gethostbyname((h))
426 # define _XGethostbyaddr(a,al,t,hp) gethostbyaddr((a),(al),(t))
451 # define _Xg_copyHostent(hp) \
452 (memcpy(&(hp).hent, (hp).hptr, sizeof(struct hostent)), \
453 strcpy((hp).h_name, (hp).hptr->h_name), \
454 ((hp).hent.h_name = (hp).h_name), \
455 ((hp).hptr = &(hp).hent),
    [all...]
  /bionic/libc/netbsd/
gethnamaddr.c 180 const HEADER *hp; local
213 hp = &answer->hdr;
214 ancount = ntohs(hp->ancount);
215 qdcount = ntohs(hp->qdcount);
471 gethostbyname_r(const char *name, struct hostent *hp, char *buf, size_t buflen,
482 memcpy(hp, res, sizeof *hp);
483 *result = hp;
490 struct hostent *hp; local
500 hp = gethostbyname_internal(name, AF_INET6, res, NULL)
520 struct hostent *hp; local
626 struct hostent *hp; local
817 struct hostent *hp; local
990 struct hostent *hp; local
1221 char *hp; local
1252 struct hostent *hp; local
1313 struct hostent *hp; local
    [all...]
  /external/tcpdump/missing/
getaddrinfo.c 514 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 = NULL
913 struct hostent *hp = NULL; local
    [all...]
getnameinfo.c 111 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/
HostNameParser.java 266 HostPort hp = new HostPort(); local
267 hp.setHost(host);
279 hp.setPort(Integer.parseInt(port));
312 return hp;
334 HostPort hp = hnp.hostPort(true); local
335 System.out.println("["+hp.encode()+"]");

Completed in 481 milliseconds

1 2 3 4 5 6 7 8