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

123456

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dgetpeername.c19 Get the remote address
21 The getpeername routine retrieves the remote system address from the socket.
29 @param [out] address Network address to receive the remote system address
31 @param [in] address_len Length of the remote network address structure
40 struct sockaddr * address,
59 // Get the remote address
62 address,
38 getpeername( int s, struct sockaddr * address, socklen_t * address_len ) argument
H A Dgetsockname.c19 Get the local socket address.
21 The getsockname routine retrieves the local system address from the socket.
29 @param [out] address Network address to receive the local system address
31 @param [in] address_len Length of the local network address structure
40 struct sockaddr * address,
59 // Get the local socket address
62 address,
38 getsockname( int s, struct sockaddr * address, socklen_t * address_len ) argument
H A Dconnect.c22 socket on the local or remote system using the specified address.
45 @param [in] address Network address of the remote system
47 @param [in] address_len Length of the remote network address
56 const struct sockaddr * address,
84 address,
54 connect( int s, const struct sockaddr * address, socklen_t address_len ) argument
H A Daccept.c24 @param [in] address Address of a buffer to receive the remote network address.
27 of the remote network address buffer. Upon return,
28 contains the length of the remote network address.
38 struct sockaddr * address,
72 address,
103 It returns the remote network address to the caller if requested.
111 @param [in] address Address of a buffer to receive the remote network address.
114 of the remote network address buffe
35 AcceptWork( int s, BOOLEAN bBlockingAllowed, struct sockaddr * address, socklen_t * address_len ) argument
122 accept( int s, struct sockaddr * address, socklen_t * address_len ) argument
151 AcceptNB( int s, struct sockaddr * address, socklen_t * address_len ) argument
[all...]
H A Drecvfrom.c19 Receive data from a network connection and return the remote system's address.
24 important to get the remote system address for a response.
38 @param [out] address Network address to receive the remote system address
40 @param [in] address_len Length of the remote network address structure
53 struct sockaddr * address,
85 address,
161 address,
48 recvfrom( int s, void * buffer, size_t length, int flags, struct sockaddr * address, socklen_t * address_len ) argument
/vbox/src/VBox/Additions/common/crOpenGL/
H A Dgetprocaddress.py28 CR_PROC address;
48 address = "VBOXGLTAG(gl" + func_name + ")" variable
51 print '\t{ "%s", (CR_PROC) %s },' % (name, address)
79 return functions[i].address;
H A Dwindows_getprocaddress.py31 CR_PROC address;
60 address = "cr_gl" + proc_name variable
63 print '\t{ "%s", (CR_PROC) %s },' % (name, address)
129 /*crDebug("crGetProcAddress(%s) returns %p", name, functions[i].address);*/
130 return functions[i].address;
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/drivers/dri/common/
H A Dmemops.h7 static INLINE void drimemsetio(void* address, int c, int size) argument
12 *((char *)address + i)=c;
14 memset(address,c,size);
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/Arm/machine/
H A Datomic.h79 inline_atomic_set_bit( u_int *address, u_int setmask ) argument
81 __with_interrupts_disabled( *address |= setmask );
85 inline_atomic_clear_bit( u_int *address, u_int clearmask ) argument
87 __with_interrupts_disabled( *address &= ~clearmask );
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/nvs/
H A Dthreewire.c37 * @v address Address from which to read
42 int threewire_read ( struct nvs_device *nvs, unsigned int address, argument
51 device, len, address );
53 if ( ( rc = bus->rw ( bus, device, THREEWIRE_READ, address,
67 * @v address Address from which to read
72 int threewire_write ( struct nvs_device *nvs, unsigned int address, argument
81 device, len, address );
92 if ( ( rc = bus->rw ( bus, device, THREEWIRE_WRITE, address,
109 * Autodetect device address length
118 DBGC ( device, "3wire %p autodetecting address lengt
[all...]
H A Dnvs.c37 * @v address Starting address
41 static size_t nvs_frag_len ( struct nvs_device *nvs, unsigned int address, argument
51 ( address & ( nvs->block_size - 1 ) ) )
65 * @v address Address from which to read
70 int nvs_read ( struct nvs_device *nvs, unsigned int address, argument
83 frag_len = nvs_frag_len ( nvs, address, len );
86 if ( ( rc = nvs->read ( nvs, address, data, frag_len ) ) != 0 )
91 address += ( frag_len >> nvs->word_len_log2 );
102 * @v address Addres
107 nvs_verify( struct nvs_device *nvs, unsigned int address, const void *data, size_t len ) argument
135 nvs_write( struct nvs_device *nvs, unsigned int address, const void *data, size_t len ) argument
[all...]
H A Dspi.c33 * Munge SPI device address into command
36 * @v address Address
37 * @v munge_address Device requires address munging
41 * of the command byte as address bit A8, rather than having a
42 * two-byte address. This function takes care of generating the
46 unsigned int address,
48 return ( command | ( ( ( address >> 8 ) & munge_address ) << 3 ) );
79 * @v address Address from which to read
84 int spi_read ( struct nvs_device *nvs, unsigned int address, argument
88 unsigned int command = spi_command ( SPI_READ, address,
45 spi_command( unsigned int command, unsigned int address, int munge_address ) argument
111 spi_write( struct nvs_device *nvs, unsigned int address, const void *data, size_t len ) argument
[all...]
H A Dnvsvpd.c49 unsigned int address; local
58 if ( ( rc = pci_vpd_find ( &nvsvpd->vpd, field, &address,
71 address, ( address + max_len ) );
76 if ( ( rc = pci_vpd_read ( &nvsvpd->vpd, address, data, len ) ) != 0 ) {
80 address, ( address + len ), strerror ( rc ) );
101 unsigned int address; local
106 if ( ( rc = pci_vpd_find ( &nvsvpd->vpd, field, &address,
119 address, ( addres
150 unsigned int address; local
218 unsigned int address; local
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dnvo.h28 unsigned int address; member in struct:nvo_block
46 size_t address, size_t len,
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/
H A Drcnetdb.h86 PRNetAddr address; local
96 ** address, then enumerates over a possibly empty array of network
115 RCNetAddr* address; member in class:RCHostLookup
122 inline RCNetAddr::operator const PRNetAddr*() const { return &address; }
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/
H A DAlloc.c38 void MyFree(void *address) argument
41 if (address != 0)
42 fprintf(stderr, "\nFree; count = %10d, addr = %8X", --g_allocCount, (unsigned)address);
44 free(address);
59 void MidFree(void *address) argument
62 if (address != 0)
65 if (address == 0)
67 VirtualFree(address, 0, MEM_RELEASE);
115 void BigFree(void *address) argument
118 if (address !
[all...]
/vbox/src/VBox/Main/include/
H A DUSBDeviceImpl.h83 /** The host specific address of the device. */
84 const com::Utf8Str address; member in struct:OUSBDevice::Data
H A DRemoteUSBDeviceImpl.h112 const Bstr address; member in struct:RemoteUSBDevice::Data
/vbox/src/VBox/Devices/Network/slirp/
H A Dslirp_dns.c182 RTNETADDRU *address = &st.rcps_nameserver[i].uAddr; local
183 if ( (address->IPv4.u & RT_H2N_U32_C(IN_CLASSA_NET))
187 * XXX: Note shouldn't patch the address in case of using DNS proxy,
190 if (address->IPv4.u == RT_N2H_U32_C(INADDR_LOOPBACK))
191 address->IPv4.u = RT_H2N_U32(RT_N2H_U32(pData->special_addr.s_addr) | CTL_ALIAS);
193 /* We detects that using some address in 127/8 network */
194 LogRel(("NAT: DNS server %RTnaipv4 registration detected, switching to the DNS proxy\n", address->IPv4));
206 pDns->de_addr.s_addr = address->IPv4.u;
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dnvo.c136 if ( ( rc = nvs_read ( nvo->nvs, nvo->address, nvo->data,
139 nvo, nvo->len, nvo->address, strerror ( rc ) );
176 if ( ( rc = nvs_write ( nvo->nvs, nvo->address, nvo->data,
179 nvo, nvo->len, nvo->address, strerror ( rc ) );
262 * @v address Address within NVS device
268 size_t address, size_t len,
272 nvo->address = address;
267 nvo_init( struct nvo_block *nvo, struct nvs_device *nvs, size_t address, size_t len, int ( * resize ) ( struct nvo_block *nvo, size_t len ), struct refcnt *refcnt ) argument
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dbufpool.c41 void *address; member in struct:buffer
90 crFree(b->address);
104 (*pfnDelete)(b->address);
119 CRASSERT(b->address != buf);
124 b->address = buf;
144 void *p = b->address;
179 p = b->address;
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/shader/slang/
H A Dslang_compile_function.h54 extern GLboolean slang_fixup_save(slang_fixup_table *fixups, GLuint address);
67 unsigned int address; /**< Address of this func in memory */ member in struct:slang_function_
68 slang_fixup_table fixups; /**< Mem locations which need func's address */
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsCppSharedAllocator.h58 address( reference r ) const function in class:nsCppSharedAllocator
64 address( const_reference r ) const function in class:nsCppSharedAllocator
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/pxe/
H A Dpxe_tftp.c153 * @v ipaddress IP address
163 struct in_addr address; local
172 address.s_addr = ipaddress;
180 inet_ntoa ( address ), ntohs ( port ),
198 * @v s_PXENV_TFTP_OPEN::ServerIPAddress TFTP server IP address
199 * @v s_PXENV_TFTP_OPEN::GatewayIPAddress Relay agent IP address, or 0.0.0.0
390 * @v s_PXENV_TFTP_READ_FILE::ServerIPAddress TFTP server IP address
391 * @v s_PXENV_TFTP_READ_FILE::GatewayIPAddress Relay agent IP address
392 * @v s_PXENV_TFTP_READ_FILE::McastIPAddress File's multicast IP address
411 * address" instea
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/bitbash/
H A Di2c_bit.c200 unsigned int address; local
207 /* Calculate address to appear on bus */
208 address = ( ( ( i2cdev->dev_addr |
212 /* Send address a byte at a time */
215 byte = ( ( address >> shift ) & 0xff );

Completed in 106 milliseconds

123456