OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pHost
(Results
1 - 3
of
3
) sorted by null
/external/chromium/third_party/libjingle/source/talk/base/
socketaddress.cc
212
if (hostent*
pHost
= SafeGetHostByName(hostname_.c_str(), &errcode)) {
213
ip_ = NetworkToHost32(*reinterpret_cast<uint32*>(
pHost
->h_addr_list[0]));
216
FreeHostEnt(
pHost
);
345
if (hostent*
pHost
= SafeGetHostByName(hostname.c_str(), &errcode)) {
346
for (size_t i = 0;
pHost
->h_addr_list[i]; ++i) {
348
NetworkToHost32(*reinterpret_cast<uint32 *>(
pHost
->h_addr_list[i]));
351
FreeHostEnt(
pHost
);
win32socketserver.cc
662
hostent*
pHost
= reinterpret_cast<hostent*>(dns_->buffer);
663
uint32 net_ip = *reinterpret_cast<uint32*>(
pHost
->h_addr_list[0]);
/development/tools/jdwpspy/
Net.cpp
282
struct hostent*
pHost
;
284
pHost
= gethostbyname(connectHost);
285
if (
pHost
== NULL) {
291
netState->vmAddr = *((struct in_addr*)
pHost
->h_addr_list[0]);
Completed in 90 milliseconds