Searched refs:address (Results 1 - 14 of 14) sorted by relevance

/system/core/include/netutils/
H A Difc.h44 extern int ifc_add_address(const char *name, const char *address,
46 extern int ifc_del_address(const char *name, const char *address,
68 extern int ifc_configure(const char *ifname, in_addr_t address,
/system/extras/tests/bionic/libc/common/
H A Dtest_udp.c31 printf(" -a<inet> use specific IP address\n");
41 int address = htonl(INADDR_ANY); local
68 address = si_other.sin_addr.s_addr;
83 si_me.sin_addr.s_addr = address;
106 si_other.sin_addr.s_addr = address;
/system/core/run-as/
H A Dpackage.c72 /* Open 'filename' and map it into our address-space.
73 * Returns buffer address, or NULL on error
82 void* address = NULL; local
131 address = TEMP_FAILURE_RETRY(mmap(NULL, length, PROT_READ, MAP_PRIVATE, fd, 0));
132 if (address == MAP_FAILED) {
133 address = NULL;
146 return address;
151 unmap_file(void* address, size_t size) argument
154 TEMP_FAILURE_RETRY(munmap(address, size));
/system/core/toolbox/
H A Droute.c42 static inline int set_address(const char *address, struct sockaddr *sa) { argument
43 return inet_aton(address, &((struct sockaddr_in *)sa)->sin_addr);
/system/core/libcutils/tests/memset_mips/
H A Dmemset_omips.S50 subu t0, zero, a0 # Unaligned address?
61 addu a3, a0 # a3 is last loop address +1
78 addu a3, a2, a0 # a3 is last address +1
H A Dmemset_cmips.S67 addu t0,a0,a2 # t0 is the "past the end" address
87 .Lset0: andi v1,v1,0x3 # word-unaligned address?
201 addu a3,a0,a3 # now a3 is the dst address past the 1w chunks
/system/core/libpixelflinger/codeflinger/
H A Ddisassem.c77 * a - address operand of ldr/str instruction
78 * e - address operand of ldrh/strh instruction
86 * b - branch address
87 * t - thumb branch address (bits 24, 0-23)
300 static u_int disassemble_readword(u_int address);
301 static void disassemble_printaddr(u_int address);
387 /* a - address operand of ldr/str instruction */
391 /* e - address operand of ldrh/strh instruction */
426 /* b - branch address */
433 /* t - blx address */
697 disassemble_readword(u_int address) argument
703 disassemble_printaddr(u_int address) argument
713 disassemble(u_int address) argument
[all...]
/system/extras/kexec_tools/
H A Dkexecload.c20 // Physical buffer address cannot overlap with other regions
23 #define ROUND_TO_PAGE(address,pagesize) ((address + pagesize - 1) & (~(pagesize - 1)))
57 " -s <start address> specify start address of kernel\n"
/system/core/debuggerd/
H A Dtombstone.c420 dump_map(log, map, "map for address", scopeFlags);
627 static void dump_abort_message(log_t* log, pid_t tid, uintptr_t address) { argument
628 if (address == 0) {
632 address += sizeof(size_t); // Skip the buffer length.
639 if (!try_get_word_ptrace(tid, address, &data)) {
642 address += sizeof(uint32_t);
784 struct sockaddr_un address; local
787 memset(&address, 0, sizeof(address));
788 address
[all...]
/system/netd/
H A DNetlinkHandler.cpp72 const char *address = evt->findParam("ADDRESS"); local
76 notifyAddressChanged(action, address, iface, flags, scope);
H A DDnsProxyListener.h115 void* address,
130 void* mAddress; // address to lookup; owned
131 int mAddressLen; // length of address to look up
132 int mAddressFamily; // address family
H A DDnsProxyListener.cpp428 void* address,
436 mAddress(address),
427 GetHostByAddrHandler(SocketClient* c, void* address, int addressLen, int addressFamily, char* iface, pid_t pid, uid_t uid, int mark) argument
/system/core/libnetutils/
H A Difc_utils.c239 * Adds or deletes an IP address on an interface.
242 * - RTM_NEWADDR (to add a new address)
243 * - RTM_DELADDR (to delete an existing address)
247 int ifc_act_on_address(int action, const char *name, const char *address, argument
256 // Allow for IPv6 address, headers, and padding.
275 ret = string_to_ip(address, &ss);
280 // Determine address type and length.
302 // Interface address message header.
307 // Routing attribute. Contains the actual IP address.
337 int ifc_add_address(const char *name, const char *address, in argument
341 ifc_del_address(const char *name, const char * address, int prefixlen) argument
778 ifc_configure(const char *ifname, in_addr_t address, uint32_t prefixLength, in_addr_t gateway, in_addr_t dns1, in_addr_t dns2) argument
[all...]
/system/extras/procmem/
H A Dprocmem.c57 unsigned long address; uint64_t mapentry; local
192 address = pm_map_start(mi->map) + j * ker->pagesize;

Completed in 752 milliseconds