OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Data
(Results
1 - 25
of
48
) sorted by null
1
2
/external/chromium/net/base/
address_list.h
40
// a reference to |src|'s
data
.) Otherwise we will make a copy.
43
// Clears all
data
from this address list. This leaves the list in the same
48
static AddressList CreateIPv6Address(unsigned char
data
[16]);
54
struct
Data
: public base::RefCountedThreadSafe<
Data
> {
55
Data
(struct addrinfo* ai, bool is_system_created)
63
friend class base::RefCountedThreadSafe<
Data
>;
65
~
Data
();
68
explicit AddressList(
Data
*
data
) : data_(data) {
[
all
...]
address_list.cc
94
data_ = new
Data
(head, true /*is_system_created*/);
98
data_ = new
Data
(CreateCopyOfAddrinfo(head), false /*is_system_created*/);
112
// We can reference the
data
from |src| directly.
126
AddressList AddressList::CreateIPv6Address(unsigned char
data
[16]) {
140
memcpy(&addr6->sin6_addr,
data
, 16);
142
return AddressList(new
Data
(ai, false /*is_system_created*/));
145
AddressList::
Data
::~
Data
() {
147
// created the
data
.