Searched refs:netent (Results 1 – 3 of 3) sorted by relevance
/bionic/tests/headers/posix/ |
D | netdb_h.c | 41 TYPE(struct netent); in netdb_h() 42 STRUCT_MEMBER(struct netent, char*, n_name); in netdb_h() 43 STRUCT_MEMBER(struct netent, char**, n_aliases); in netdb_h() 44 STRUCT_MEMBER(struct netent, int, n_addrtype); in netdb_h() 45 STRUCT_MEMBER(struct netent, uint32_t, n_net); in netdb_h() 114 FUNCTION(getnetbyaddr, struct netent* (*f)(uint32_t, int)); in netdb_h() 115 FUNCTION(getnetbyname, struct netent* (*f)(const char*)); in netdb_h() 116 FUNCTION(getnetent, struct netent* (*f)(void)); in netdb_h()
|
/bionic/libc/bionic/ |
D | netdb.cpp | 39 netent* getnetbyaddr(uint32_t /*net*/, int /*type*/) { in getnetbyaddr() 43 netent* getnetbyname(const char* /*name*/) { in getnetbyname() 47 netent* getnetent() { in getnetent()
|
/bionic/libc/include/ |
D | netdb.h | 90 struct netent { struct 223 struct netent* getnetbyaddr(uint32_t __net, int __type); 224 struct netent* getnetbyname(const char* __name); 225 struct netent* getnetent(void) __INTRODUCED_IN(28);
|