HomeSort by relevance Sort by last modified time
    Searched defs:hp (Results 76 - 100 of 183) sorted by null

1 2 34 5 6 7 8

  /external/xmlrpcpp/src/
XmlRpcClient.cpp 306 char *hp = (char*)_header.c_str(); // Start of header local
307 char *ep = hp + _header.length(); // End of string
311 for (char *cp = hp; (bp == 0) && (cp < ep); ++cp) {
XmlRpcSocket.cpp 154 struct hostent *hp = gethostbyname(host.c_str()); local
155 if (hp == 0) return false;
157 saddr.sin_family = hp->h_addrtype;
158 memcpy(&saddr.sin_addr, hp->h_addr, hp->h_length);
XmlRpcServerConnection.cpp 80 char *hp = (char*)_header.c_str(); // Start of header local
81 char *ep = hp + _header.length(); // End of string
86 for (char *cp = hp; (bp == 0) && (cp < ep); ++cp) {
  /external/nist-sip/java/gov/nist/javax/sip/parser/
URLParser.java 318 HostPort hp = hnp.hostPort( false ); local
319 retval.append(hp.toString());
644 HostPort hp = hnp.hostPort( false ); local
645 retval.setHostPort(hp);
StringMsgParser.java 575 HeaderParser hp = ParserFactory.createParser(buffer.toString()); local
576 if (hp == null)
578 return hp.parse();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
getaddrinfo.c 493 struct hostent *hp; local
501 hp = getipnodebyaddr(addr, gai_afd->a_addrlen, gai_afd->a_af, &h_error);
503 hp = gethostbyaddr(addr, gai_afd->a_addrlen, AF_INET);
505 if (hp && hp->h_name && hp->h_name[0] && hp->h_addr_list[0]) {
506 GET_AI(cur, gai_afd, hp->h_addr_list[0], port);
507 GET_CANONNAME(cur, hp->h_name);
512 if (hp)
539 struct hostent *hp; local
    [all...]
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
getnetbydns.c 121 register HEADER *hp; local
147 hp = &answer->hdr;
148 ancount = ntohs(hp->ancount); /* #/records in the answer section */
149 qdcount = ntohs(hp->qdcount); /* #/entries in the question section */
154 if (hp->aa)
res_send.c 338 HEADER *hp = (HEADER *) buf; local
418 if (s < 0 || !vc || hp->opcode == ns_o_update) {
547 if (hp->id != anhp->id) {
788 if (hp->id != anhp->id) {
res_update.c 128 HEADER *hp = (HEADER *) answer; local
213 ancount = ntohs(hp->ancount);
214 nscount = ntohs(hp->nscount);
215 arcount = ntohs(hp->arcount);
216 rcode = hp->rcode;
309 ancount, nscount, arcount, hp->rcode);
411 dname, ancount, nscount, arcount, hp->rcode);
422 dname, ancount, nscount, arcount, hp->rcode);
gethostbydns.c 200 register const HEADER *hp; local
230 hp = &answer->hdr;
231 ancount = ntohs(hp->ancount);
232 qdcount = ntohs(hp->qdcount);
642 register struct hostent *hp; local
706 if ( NULL == (hp = gethostanswer(&buf, n, qbuf, T_PTR)))
714 strncpy(hname2, hp->h_name, MAXDNAME);
744 hp->h_addrtype = af;
745 hp->h_length = len;
751 hp->h_addrtype = AF_INET6;
783 char *hp; local
    [all...]
res_debug.c 741 u_int8_t hp = 0x16; /* default = 1e6 cm = 10000.00m = 10km */ local
813 hp = precsize_aton((char **)&cp);
831 *bcp++ = hp;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
PeriodFormatterData.java 323 int hp = dr.halfPlacements == null local
328 switch (hp) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
PeriodFormatterData.java 321 int hp = dr.halfPlacements == null local
326 switch (hp) {
  /external/libedit/src/
common.c 708 const Char *hp; local
732 hp = HIST_FIRST(el);
733 if (hp == NULL)
739 hp = HIST_NEXT(el);
741 while (hp != NULL) {
743 (void) fprintf(el->el_errfile, "Comparing with \"%s\"\n", hp);
745 if ((Strncmp(hp, el->el_line.buffer, (size_t)
747 hp[el->el_line.lastchar - el->el_line.buffer]) &&
748 c_hmatch(el, hp)) {
753 hp = HIST_NEXT(el)
776 const Char *hp; local
    [all...]
  /external/libpcap/
nametoaddr.c 127 struct hostent *hp; local
129 if ((hp = gethostbyname(name)) != NULL) {
131 hlist[0] = (bpf_u_int32 *)hp->h_addr;
132 NTOHL(hp->h_addr);
135 for (p = (bpf_u_int32 **)hp->h_addr_list; *p; ++p)
137 return (bpf_u_int32 **)hp->h_addr_list;
  /external/libvncserver/libvncclient/
sockets.c 718 struct hostent *hp; local
733 hp = gethostbyname(str);
735 if (hp) {
736 *addr = *(unsigned int *)hp->h_addr;
  /external/libvncserver/libvncserver/
sockets.c 842 struct hostent *hp; local
844 if (!(hp = gethostbyname(str))) {
847 *addr = *(unsigned long *)hp->h_addr;
1007 struct hostent *hp; local
1016 if (!(hp = gethostbyname(host))) {
1020 addr.sin_addr.s_addr = *(unsigned long *)hp->h_addr;
  /external/libvpx/libvpx/vp9/common/
vp9_entropymv.h 96 vpx_prob hp; member in struct:__anon24723
122 unsigned int hp[2]; member in struct:__anon24725
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodemv.c 39 const int hp = offset & 1; // high precision mv data local
66 vpx_write(w, hp, mv_class == MV_CLASS_0 ? mvcomp->class0_hp : mvcomp->hp);
92 // Always build the hp costs to avoid an uninitialized warning from gcc
95 hp_cost[0] = vp9_cost_zero(mvcomp->hp);
96 hp_cost[1] = vp9_cost_one(mvcomp->hp);
205 update_mv(w, counts->comps[i].hp, &mvc->comps[i].hp, MV_UPDATE_PROB);
  /external/python/cpython2/Modules/
getaddrinfo.c 493 struct hostent *hp; local
501 hp = getipnodebyaddr(addr, gai_afd->a_addrlen, gai_afd->a_af, &h_error);
503 hp = gethostbyaddr(addr, gai_afd->a_addrlen, AF_INET);
505 if (hp && hp->h_name && hp->h_name[0] && hp->h_addr_list[0]) {
506 GET_AI(cur, gai_afd, hp->h_addr_list[0], port);
507 GET_CANONNAME(cur, hp->h_name);
512 if (hp)
539 struct hostent *hp; local
    [all...]
  /frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/hp/
ServiceListener.java 17 package com.android.printservice.recommendation.plugin.hp;
  /external/iputils/
clockdiff.c 554 struct hostent * hp; local
602 hp = gethostbyname(hostname);
603 if (hp == NULL) {
607 myname = strdup(hp->h_name);
609 hp = gethostbyname(argv[1]);
610 if (hp == NULL) {
614 hisname = strdup(hp->h_name);
617 server.sin_family = hp->h_addrtype;
618 memcpy(&(server.sin_addr.s_addr), hp->h_addr, 4);
rarpd.c 299 struct hostent *hp; local
309 (hp = gethostbyname(ename)) == NULL) {
314 if (hp->h_addrtype != AF_INET) {
318 ifa = select_ipaddr(ifindex, &emap.ipaddr, (__u32 **)hp->h_addr_list);
  /system/netd/server/
DnsProxyListener.cpp 176 static bool sendhostent(SocketClient *c, struct hostent *hp) {
179 if (hp->h_name != NULL) {
180 success &= sendLenAndData(c, strlen(hp->h_name)+1, hp->h_name);
185 for (i=0; hp->h_aliases[i] != NULL; i++) {
186 success &= sendLenAndData(c, strlen(hp->h_aliases[i])+1, hp->h_aliases[i]);
190 uint32_t buf = htonl(hp->h_addrtype);
193 buf = htonl(hp->h_length);
196 for (i=0; hp->h_addr_list[i] != NULL; i++)
465 struct hostent* hp = android_gethostbynamefornetcontext(mName, mAf, &mNetContext); local
605 struct hostent* hp; local
    [all...]
  /bionic/libc/dns/resolv/
res_send.c 760 const HEADER *hp = (const HEADER *)(const void *)buf; local
959 if (hp->id != anhp->id) {
1091 const HEADER *hp = (const HEADER *)(const void *)buf; local
    [all...]

Completed in 1941 milliseconds

1 2 34 5 6 7 8