/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/ |
H A D | bitbash.h | 21 * @v data Value to write 29 void ( * write ) ( struct bit_basher *basher, unsigned int bit_id, member in struct:bit_basher_operations
|
H A D | nvs.h | 52 * @v address Address to which to write 59 int ( * write ) ( struct nvs_device *nvs, unsigned int address, member in struct:nvs_device
|
H A D | mii.h | 32 * @v data Data to write 35 int ( * write ) ( struct mii_interface *mii, unsigned int reg, member in struct:mii_operations 73 * @v data Data to write 78 return mii->op->write ( mii, reg, data );
|
H A D | i2c.h | 36 * read/write bit. 42 * defined to be the portion that starts after the read/write 81 int ( * write ) ( struct i2c_interface *i2c, struct i2c_device *i2cdev, member in struct:i2c_interface 105 /** An I2C write command */ 133 * a zero-length write. 137 return i2c->write ( i2c, i2cdev, 0, NULL, 0 );
|
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/wine/ |
H A D | wpp.h | 17 * License along with this library; if not, write to the Free Software 53 void (*write)( const char *buffer, unsigned int len ); member in struct:wpp_callbacks
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/wine/ |
H A D | wpp.h | 17 * License along with this library; if not, write to the Free Software 53 void (*write)( const char *buffer, unsigned int len ); member in struct:wpp_callbacks
|
/vbox/src/libs/xpcom18a4/xpcom/io/ |
H A D | nsFastLoadPtr.h | 105 nsresult write(nsIObjectOutputStream* aOutputStream) { function in class:nsFastLoadPtr
|
H A D | nsStringIO.h | 56 write( const value_type* s, PRUint32 n ) function in class:nsFileCharSink
|
/vbox/src/recompiler/tests/ |
H A D | hello-i386.c | 11 extern inline int write(int fd, const char * buf, int len) function 24 write(1, "Hello World\n", 12);
|
/vbox/src/VBox/Devices/PC/ipxe/src/interface/efi/ |
H A D | efi_io.c | 15 * along with this program; if not, write to the Free Software 56 * they write. No-one should ever be able to make I/O this 102 * @v data Value to write 108 EFI_CPU_IO_PROTOCOL_IO_MEM write; local 111 write = ( IS_PORT_ADDRESS ( io_addr ) ? 114 if ( ( efirc = write ( cpu_io, efi_width ( size ), 117 DBG ( "EFI I/O write at %p failed: %s\n", 147 * String write to device 152 * @v count Number of values to write 156 EFI_CPU_IO_PROTOCOL_IO_MEM write; local [all...] |
/vbox/src/libs/libxml2-2.6.31/win32/wince/ |
H A D | wincecompat.c | 27 int write(int handle, const char *buffer, unsigned int len) function
|
/vbox/src/VBox/Devices/Network/ |
H A D | DevEEPROM.cpp | 46 * Writes one word to specified location if write is enabled. 48 * @param u32Addr Address to write at 173 void EEPROM93C46::write(uint32_t u32Wires) function in class:EEPROM93C46 254 * were written by 'write'.
|
/vbox/src/VBox/Main/src-server/win/ |
H A D | svchlp.cpp | 156 int SVCHlpClient::write (const void *aVal, size_t aLen) function in class:SVCHlpClient 170 int SVCHlpClient::write (const Utf8Str &aVal) function in class:SVCHlpClient 175 /* write -1 for NULL strings */ 177 return write ((size_t) ~0); 181 /* write string length */ 182 int vrc = write (len); 185 /* write string data */ 186 vrc = write (aVal.c_str(), len); 192 int SVCHlpClient::write (const Guid &aGuid) function in class:SVCHlpClient 195 return write (guidSt [all...] |
H A D | svchlp.h | 62 int write (const void *aVal, size_t aLen); 64 int write (Scalar aVal) { return write (&aVal, sizeof (aVal)); } function in class:SVCHlpClient 65 int write (const com::Utf8Str &aVal); 66 int write (const com::Guid &aGuid);
|
/vbox/src/libs/xpcom18a4/python/ |
H A D | __init__.py | 86 # Logging support - setup the 'xpcom' logger to write to the Mozilla 99 def write(self, msg): member in class:ConsoleServiceStream
|
H A D | file.py | 57 * Only read ("r") mode is supported. Although write ("w") mode doesnt make 125 def write(self, data): member in class:_File 126 assert self.outputStream is not None, "Not setup for write!" 129 self.outputStream.write(data, len(data)) 250 test_file.write(data) 270 test_file.write(data)
|
/vbox/src/libs/zlib-1.2.6/contrib/masmx64/ |
H A D | inffas8664.c | 44 Decode literal, length, and distance codes and write out the resulting 97 /* 96 52 */ unsigned write; /* window write index */ member in struct:inffast_ar 133 ar.write = state->wnext;
|
/vbox/src/VBox/Additions/x11/x11include/libpciaccess-0.10.8/ |
H A D | pciaccess_private.h | 58 int (*write)(struct pci_device * dev, const void * data, pciaddr_t offset, member in struct:pci_system_methods
|
/vbox/src/libs/xpcom18a4/xpcom/obsolete/ |
H A D | nsFileStream.cpp | 119 write(&c, sizeof(c)); 123 PRInt32 nsOutputStream::write(const void* s, PRInt32 n) function in class:nsOutputStream 131 } // nsOutputStream::write 160 write(s, strlen(s)); 384 os.write("\r\n", 2);
|
/vbox/src/libs/zlib-1.2.6/contrib/inflate86/ |
H A D | inffas86.c | 37 Decode literal, length, and distance codes and write out the resulting 92 /* 96 52 */ unsigned write; /* window write index */ member in struct:inffast_ar 116 ar.write = state->wnext; 366 " jne .L_wrap_around_window\n" /* if (write != 0) */ 384 " movl 96(%%rsp), %%eax\n" /* eax = write */ 386 " jbe .L_contiguous_in_window\n" /* if (write >= nbytes) */ 390 " addq %%rax, %%rsi\n" /* from += write */ 392 " subl %%eax, %%ecx\n" /* nbytes -= write */ 401 " movl 96(%%rsp), %%ecx\n" /* nbytes = write */ [all...] |
/vbox/src/VBox/ValidationKit/tests/storage/ |
H A D | tdStorageBenchmark1.py | 85 def write(self, sText): member in class:IozoneStdOutWrapper 86 """iozone stdout write""" 189 self.configBuf.write('[global]\n'); 190 self.configBuf.write('bs=' + sRecordSize + '\n'); 191 self.configBuf.write('ioengine=libaio\n'); 192 self.configBuf.write('iodepth=' + sQueueDepth + '\n'); 193 self.configBuf.write('size=' + sTestsetSize + '\n'); 194 self.configBuf.write('direct=1\n'); 195 self.configBuf.write('directory=' + sPath + '\n'); 197 self.configBuf.write('[se 218 def write(self, sText): member in class:FioWrapper [all...] |
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/ |
H A D | io.h | 172 static inline int write(int fd, const void* buf, unsigned int size) { return _write(fd, buf, size); } function
|
/vbox/src/VBox/Devices/PC/BIOS/ |
H A D | disk.c | 36 * License along with this library; if not, write to the Free Software 55 /* Generic disk read/write routine signature. */ 59 * the need for conditionals when choosing between read/write functions. 65 dsk_rw_func write; member in struct:__anon14981::__anon14982 172 case 0x03: // write disk sectors 307 case 0x0b: /* write disk sectors with ECC */ 375 case 0x43: // IBM/MS extended write 421 /* Execute the read or write command. */
|
/vbox/src/VBox/GuestHost/OpenGL/util/ |
H A D | udptcpip.c | 19 #define write(a,b,c) send(a,b,c,0) macro 265 * to get fancy. Simply write the length & the payload and 279 * length field, to insure that we always have a place to write
|
/vbox/src/VBox/Additions/x11/x11include/libdrm-2.4.13/ |
H A D | radeon_bo.h | 68 int (*bo_map)(struct radeon_bo *bo, int write); 146 int write, 151 return bo->bom->funcs->bo_map(bo, write); 145 _radeon_bo_map(struct radeon_bo *bo, int write, const char *file, const char *func, int line) argument
|