Searched refs:addr (Results 1 - 25 of 71) sorted by path

123

/bionic/libc/arch-arm/bionic/
H A Dmemcpy.a9.S76 #define ALIGN(addr, align) addr,:align
78 #define ALIGN(addr, align) addr:align
/bionic/libc/arch-mips/string/
H A Dmemcpy.S122 pref 0,0(a1) # bring the first line of src, addr 0
123 pref 0,32(a1) # bring the second line of src, addr 32
124 pref 0,64(a1) # bring the third line of src, addr 64
137 pref 30,96(a0) # continue setting up the dest, addr 96
145 pref 0,128(a1) # bring the next lines of src, addr 128
159 pref 30,128(a0) # continue setting up the dest, addr 128
167 pref 0, 160(a1) # bring the next lines of src, addr 160
271 pref 0,0(a1) # bring the first line of src, addr 0
272 pref 0,32(a1) # bring the second line of src, addr 32
273 pref 0,64(a1) # bring the third line of src, addr 6
[all...]
/bionic/libc/arch-mips64/string/
H A Dmemcpy.S122 pref 0,0(a1) # bring the first line of src, addr 0
123 pref 0,32(a1) # bring the second line of src, addr 32
124 pref 0,64(a1) # bring the third line of src, addr 64
137 pref 30,96(a0) # continue setting up the dest, addr 96
145 pref 0,128(a1) # bring the next lines of src, addr 128
159 pref 30,128(a0) # continue setting up the dest, addr 128
167 pref 0, 160(a1) # bring the next lines of src, addr 160
271 pref 0,0(a1) # bring the first line of src, addr 0
272 pref 0,32(a1) # bring the second line of src, addr 32
273 pref 0,64(a1) # bring the third line of src, addr 6
[all...]
/bionic/libc/bionic/
H A Daccept.cpp19 int accept(int sockfd, sockaddr* addr, socklen_t* addrlen) { argument
20 return accept4(sockfd, addr, addrlen, 0);
H A Daccept4.cpp21 int accept4(int sockfd, sockaddr* addr, socklen_t* addrlen, int flags) { argument
22 return __netdClientDispatch.accept4(sockfd, addr, addrlen, flags);
H A Dconnect.cpp21 int connect(int sockfd, const sockaddr* addr, socklen_t addrlen) { argument
22 return __netdClientDispatch.connect(sockfd, addr, addrlen);
H A Dether_aton.c53 ether_aton_r (const char *asc, struct ether_addr * addr) argument
67 addr->ether_addr_octet[i] = (u_int8_t)((val0 << 4) + val1);
77 return addr;
87 static struct ether_addr addr; local
88 return ether_aton_r(asc, &addr);
H A Dether_ntoa.c38 ether_ntoa_r (const struct ether_addr *addr, char * buf) argument
41 addr->ether_addr_octet[0], addr->ether_addr_octet[1],
42 addr->ether_addr_octet[2], addr->ether_addr_octet[3],
43 addr->ether_addr_octet[4], addr->ether_addr_octet[5]);
51 ether_ntoa (const struct ether_addr *addr) argument
54 return ether_ntoa_r(addr, buf);
H A Dfts.c979 char *addr = sp->fts_path; local
984 (char *)addr + ((p)->fts_accpath - (p)->fts_path); \
986 (p)->fts_path = addr; \
H A Dlibc_logging.cpp468 struct sockaddr addr; member in union:__anon6
475 if (TEMP_FAILURE_RETRY(connect(log_fd, &u.addr, sizeof(u.addrUn))) != 0) {
H A Dmmap.cpp42 void* mmap64(void* addr, size_t size, int prot, int flags, int fd, off64_t offset) { argument
49 void* result = __mmap2(addr, size, prot, flags, fd, offset >> MMAP2_SHIFT);
62 void* mmap(void* addr, size_t size, int prot, int flags, int fd, off_t offset) { argument
63 return mmap64(addr, size, prot, flags, fd, static_cast<off64_t>(offset));
H A Dptrace.cpp32 extern "C" long __ptrace(int req, pid_t pid, void* addr, void* data);
41 void* addr = va_arg(args, void*); local
50 long result = __ptrace(req, pid, addr, data);
H A Dsystem_properties.cpp485 sockaddr_un addr; local
486 memset(&addr, 0, sizeof(addr));
487 strlcpy(addr.sun_path, property_service_socket, sizeof(addr.sun_path));
488 addr.sun_family = AF_LOCAL;
490 if (TEMP_FAILURE_RETRY(connect(fd, reinterpret_cast<sockaddr*>(&addr), alen)) < 0) {
/bionic/libc/dns/
H A Dgethnamaddr.c790 android_gethostbyaddrfornet_proxy(const void *addr, argument
799 const char * addrStr = inet_ntop(af, addr, buf, sizeof(buf));
822 android_gethostbyaddrfornet_real(const void *addr, argument
825 const u_char *uaddr = (const u_char *)addr;
834 assert(addr != NULL);
837 (IN6_IS_ADDR_LINKLOCAL((const struct in6_addr *)addr) ||
838 IN6_IS_ADDR_SITELOCAL((const struct in6_addr *)addr))) {
843 (IN6_IS_ADDR_V4MAPPED((const struct in6_addr *)addr) ||
844 IN6_IS_ADDR_V4COMPAT((const struct in6_addr *)addr))) {
847 addr
878 android_gethostbyaddrfornet(const void *addr, socklen_t len, int af, unsigned netid, unsigned mark) argument
890 gethostbyaddr(const void *addr, socklen_t len, int af) argument
1128 const unsigned char *addr; local
[all...]
/bionic/libc/dns/include/
H A Dresolv_private.h172 struct in_addr addr; member in struct:__res_state::__anon15
/bionic/libc/dns/net/
H A Dgetaddrinfo.c274 #define GET_AI(ai, afd, addr) \
277 (ai) = get_ai(pai, (afd), (addr)); \
364 _test_connect(int pf, struct sockaddr *addr, size_t addrlen, unsigned mark) { argument
372 ret = __connect(s, addr, addrlen);
397 sockaddr_union addr = { .in6 = sin6_test }; local
398 return _test_connect(PF_INET6, &addr.generic, sizeof(addr.in6), mark);
407 sockaddr_union addr = { .in = sin_test }; local
408 return _test_connect(PF_INET, &addr.generic, sizeof(addr
531 struct sockaddr* addr = (struct sockaddr*)(ai + 1); local
1103 get_ai(const struct addrinfo *pai, const struct afd *afd, const char *addr) argument
1502 _get_scope(const struct sockaddr *addr) argument
1564 _get_label(const struct sockaddr *addr) argument
1606 _get_precedence(const struct sockaddr *addr) argument
1777 _find_src_addr(const struct sockaddr *addr, struct sockaddr *src_addr, unsigned mark) argument
2042 const char *addr; local
[all...]
H A Dgetnameinfo.c175 const char *addr; local
204 addr = (const char *)(const void *)sa + afd->a_off;
289 if ((error = ip6_parsenumeric(sa, addr, host,
296 if (inet_ntop(afd->a_af, addr, numaddr, sizeof(numaddr))
306 hp = android_gethostbyaddrfornet_proxy(addr, afd->a_addrlen, afd->a_af, netid);
334 if ((error = ip6_parsenumeric(sa, addr, host,
342 if (inet_ntop(afd->a_af, addr, host,
354 ip6_parsenumeric(const struct sockaddr *sa, const char *addr, char *host, argument
361 assert(addr != NULL);
364 if (inet_ntop(AF_INET6, addr, numadd
[all...]
/bionic/libc/dns/resolv/
H A Dres_init.c402 statp->sort_list[nsort].addr = a;
416 net_mask(statp->sort_list[nsort].addr);
420 net_mask(statp->sort_list[nsort].addr);
H A Dres_private.h13 } addr, mask; member in struct:__res_state_ext::sort_list
/bionic/libc/include/
H A Ddlfcn.h41 lower than addr */
50 extern int dladdr(const void* addr, Dl_info *info);
/bionic/libc/include/net/
H A Dif_ether.h81 #define ETHER_IS_MULTICAST(addr) (*(addr) & 0x01) /* is address mcast/bcast? */
/bionic/libc/include/sys/
H A Dcachectl.h33 extern int __cachectl (void *addr, __const int nbytes, __const int op);
34 extern int _flush_cache (char *addr, __const int nbytes, __const int op);
/bionic/libc/kernel/uapi/asm-arm/asm/
H A Dmman.h20 #define arch_mmap_check(addr, len, flags) (((flags) & MAP_FIXED && (addr) < FIRST_USER_ADDRESS) ? -EINVAL : 0)
/bionic/libc/kernel/uapi/asm-arm64/asm/
H A Dptrace.h71 __u64 addr; member in struct:user_hwdebug_state::__anon70
/bionic/libc/kernel/uapi/asm-x86/asm/
H A De820.h37 __u64 addr; member in struct:e820entry

Completed in 231 milliseconds

123