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

/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/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/wlan/ti/sta_dk_4_0_4_32/common/src/hal/hl_ctrl/
H A DwhalDebug.c61 #define BB_REGISTER_ADDR_BASE 0x820000 /*phony address used by host access*/
256 void whalCtrl_Print_Mem_Regs (TI_HANDLE hWhalCtrl, UINT32 address, UINT32 len, readWrite_MemoryType_e memType) argument
268 pCmd->addr = (UINT32)ENDIAN_HANDLE_LONG(address);
273 pCmd->addr = (UINT32)ENDIAN_HANDLE_LONG(( (address&0xFFFF) | ACX_MAC_REG_READ_WRITE_PREFIX ));
278 pCmd->addr = (UINT32)ENDIAN_HANDLE_LONG(( (address&0xFFFF) | BB_REGISTER_ADDR_BASE ));
306 int whalCtrl_Set_Mem_Regs (TI_HANDLE hWhalCtrl, UINT32 address, UINT32 len, UINT32 aWriteVal, argument
318 pCmd->addr = (UINT32)ENDIAN_HANDLE_LONG(address);
324 pCmd->addr = (UINT32)ENDIAN_HANDLE_LONG( (address&0xFFFF) | ACX_MAC_REG_READ_WRITE_PREFIX);
330 pCmd->addr = (UINT32)ENDIAN_HANDLE_LONG( (address&0xFFFF) | BB_REGISTER_ADDR_BASE);
/system/wlan/ti/wilink_6_1/platforms/os/common/src/
H A Dtracebuf.c229 unsigned long address, Allocs=0, Frees=0; local
238 address = tb_control->entry[j].p1;
241 if (address == tb_control->entry[k].p1)
245 TB_PRINTF("Bad free size at 0x%lx address = 0x%lx Size = %ld Allocated = %d\n",
255 TB_PRINTF("Memory leak at 0x%lx address = 0x%lx Size = %d\n",
256 tb_control->entry[j].loc, address, Size);
/system/core/libacc/tests/
H A Ddisassem.cpp78 * a - address operand of ldr/str instruction
79 * e - address operand of ldrh/strh instruction
84 * b - branch address
85 * t - thumb branch address (bits 24, 0-23)
296 static u_int disassemble_readword(u_int address);
297 static void disassemble_printaddr(u_int address);
383 /* a - address operand of ldr/str instruction */
387 /* e - address operand of ldrh/strh instruction */
410 /* b - branch address */
417 /* t - blx address */
681 disassemble_readword(u_int address) argument
687 disassemble_printaddr(u_int address) argument
705 disassemble(u_int address) argument
[all...]
H A Dmain.cpp49 disassemble_readword(u_int address) argument
51 return(*((u_int *)address));
55 disassemble_printaddr(u_int address) argument
57 fprintf(disasmOut, "0x%08x", address);
/system/core/libnetutils/
H A Difc_utils.c317 * Return the address of the default gateway
399 in_addr_t address,
414 if (ifc_set_addr(ifname, address)) {
415 printerr("failed to set ipaddr %s: %s\n", ipaddr_to_string(address), strerror(errno));
398 ifc_configure(const char *ifname, in_addr_t address, in_addr_t netmask, in_addr_t gateway, in_addr_t dns1, in_addr_t dns2) argument
/system/core/libpixelflinger/codeflinger/
H A Ddisassem.c77 * a - address operand of ldr/str instruction
78 * e - address operand of ldrh/strh instruction
83 * b - branch address
84 * t - thumb branch address (bits 24, 0-23)
295 static u_int disassemble_readword(u_int address);
296 static void disassemble_printaddr(u_int address);
382 /* a - address operand of ldr/str instruction */
386 /* e - address operand of ldrh/strh instruction */
409 /* b - branch address */
416 /* t - blx address */
680 disassemble_readword(u_int address) argument
686 disassemble_printaddr(u_int address) argument
696 disassemble(u_int address) 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;
/system/wlan/ti/sta_dk_4_0_4_32/common/src/TNETW_Driver/TNETWIF/BusTxn/
H A Dwspi.c121 | byte address |
126 | byte address |
369 * UINT32 address - the address (in bytes) in the firmware to read the data from
378 * Note(s) : 1. set the WSPI cammand+address word
379 * 2. send the WSPIcammand+address word
388 int WSPI_ReadSync (TI_HANDLE hWSPI, UINT32 address, UINT8* data, UINT32 length) argument
404 WSPI_ReadAsync (hWSPI, address, data, length, &cb, 1, 0);
438 /* Write the command+address */
450 /* Set address */
523 WSPI_ReadAsyncOld(TI_HANDLE hWSPI, UINT32 address, UINT8* data, UINT32 length, WSPI_CB_T* cb, BOOL bMore, BOOL bSpaceReserved) argument
630 WSPI_WriteSync(TI_HANDLE hWSPI, UINT32 address, UINT8* data, UINT32 length) argument
734 WSPI_ReadAsync(TI_HANDLE hWSPI, UINT32 address, UINT8* data, UINT32 length, WSPI_CB_T* cb, BOOL bMore, BOOL bSpaceReserved) argument
1169 WSPI_WriteAsyncOld(TI_HANDLE hWSPI, UINT32 address, UINT8* data, UINT32 length, WSPI_CB_T* cb, BOOL bMore, BOOL bSpaceReserved) argument
1240 WSPI_WriteAsync(TI_HANDLE hWSPI, UINT32 address, UINT8* data, UINT32 length, WSPI_CB_T* cb, BOOL bMore, BOOL bSpaceReserved) argument
[all...]
/system/wlan/ti/wilink_6_1/Test/
H A DTWD_Debug.c47 /* Phony address used by host access */
172 static void TWD_PrintMemRegs (TI_HANDLE hTWD, TI_UINT32 address, TI_UINT32 len, readWrite_MemoryType_e memType) argument
183 pCmd->addr = (TI_UINT32)ENDIAN_HANDLE_LONG (address);
188 pCmd->addr = (TI_UINT32)ENDIAN_HANDLE_LONG (((address&0xFFFF) | REGISTERS_BASE));
193 pCmd->addr = (TI_UINT32)ENDIAN_HANDLE_LONG (((address&0xFFFF) | BB_REGISTER_ADDR_BASE));
699 /* address Not in valid Area */
746 /* address Not in valid Area */
/system/wlan/ti/sta_dk_4_0_4_32/common/src/hal/FirmwareApi/
H A Dpublic_infoele.h634 destination address that does not match the MAC address of the adaptor.
635 When clear, the WiLink receives frames destined to any MAC address.
795 uint8 ipVersion; /* The IP version of the IP address: 4 - IPv4, 6 - IPv6.*/
799 uint8 address[16]; /* The IP address used to filter ARP packets. ARP packets */ member in struct:__anon819
800 /* that do not match this address are dropped. */
802 /* the address are ignored.*/
960 uint32 WepAddrKeyCount; /* Count of WEP address keys configured*/
1367 uint32 rxPacketRingAddr; /* base address o
[all...]
/system/core/libacc/
H A Dacc.cpp320 * stack such that the first argument has the lowest address.
366 * the address to patch up. The patching will be done in
368 * returns address to patch with local variable size.
385 /* Load floating point value from global address. */
386 virtual void loadFloat(int address, Type* pType) = 0;
391 /* Jump to a target, and return the address of the word that
398 * Return the address of the word that holds the targed data, in
437 /* Store R0 to the address stored in TOS.
442 /* Load R0 from the address stored in R0.
446 /* Load the absolute address o
1062 loadFloat(int address, Type* pType) argument
2487 loadFloat(int address, Type* pType) argument
3223 loadFloat(int address, Type* pType) argument
[all...]
/system/wlan/ti/wilink_6_1/TWD/FirmwareApi/
H A Dpublic_infoele.h516 destination address that does not match the MAC address of the adaptor.
517 When clear, the WiLink receives frames destined to any MAC address.
709 uint8 ipVersion; /* The IP version of the IP address: 4 - IPv4, 6 - IPv6.*/
713 uint8 address[16]; /* The IP address used to filter ARP packets. ARP packets */ member in struct:__anon1149
714 /* that do not match this address are dropped. */
716 /* the address are ignored.*/
878 uint32 WepAddrKeyCount; /* Count of WEP address keys configured*/
2106 uint8 aMacAddress[6]; /* Mac address o
[all...]

Completed in 255 milliseconds