OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Ares
(Results
1 - 5
of
5
) sorted by null
/system/connectivity/shill/
shill_ares.cc
22
base::LazyInstance<
Ares
> g_ares = LAZY_INSTANCE_INITIALIZER;
25
Ares
::
Ares
() { }
27
Ares
::~
Ares
() { }
29
Ares
*
Ares
::GetInstance() {
33
void
Ares
::Destroy(ares_channel channel) {
37
void
Ares
::GetHostByName(ares_channel channel,
45
int
Ares
::GetSock(ares_channel channel
[
all
...]
shill_ares.h
20
#include <
ares
.h>
26
// A "
ares
.h" abstraction allowing mocking in tests.
27
class
Ares
{
29
virtual ~
Ares
();
31
static
Ares
* GetInstance();
70
Ares
();
73
friend struct base::DefaultLazyInstanceTraits<
Ares
>;
75
DISALLOW_COPY_AND_ASSIGN(
Ares
);
dns_client.h
38
class
Ares
;
106
Ares
* ares_;
mock_ares.h
27
class MockAres : public
Ares
{
dns_client.cc
66
// Private to the implementation of resolver so callers don't include
ares
.h
90
ares_(
Ares
::GetInstance()),
121
"
ARES
initialization returns error code: " +
129
// There is a bug in
ares
library when parsing IPv6 addresses, where it
151
"
ARES
set DNS servers error code: " +
208
// current
ARES
state.
232
// We can be called during
ARES
shutdown -- ignore these events.
286
LOG(ERROR) << "
ARES
returned success but hostent was invalid!";
288
LOG(ERROR) << "
ARES
returned unhandled error status " << status;
345
// We are here just to clean up socket handles, and the
ARES
state wa
[
all
...]
Completed in 9167 milliseconds