Searched defs:read (Results 1 - 25 of 73) sorted by relevance

123

/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dbitbash.h39 int ( * read ) ( struct bit_basher *basher, unsigned int bit_id ); member in struct:bit_basher_operations
H A Dnvs.h40 * @v address Address from which to read
47 int ( * read ) ( struct nvs_device *nvs, unsigned int address, member in struct:nvs_device
H A Dmii.h24 * @ret data Data read, or negative error
26 int ( * read ) ( struct mii_interface *mii, unsigned int reg ); member in struct:mii_operations
61 * @ret data Data read, or negative error
65 return mii->op->read ( mii, reg );
H A Dposix_io.h80 * @v len Maximum length to read
81 * @ret len Actual length read, or negative error number
83 static inline ssize_t read ( int fd, void *buf, size_t len ) { function
H A Di2c.h36 * read/write bit.
42 * defined to be the portion that starts after the read/write
68 int ( * read ) ( struct i2c_interface *i2c, struct i2c_device *i2cdev, member in struct:i2c_interface
108 /** An I2C read command */
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/wine/
H A Dwpp.h51 int (*read)( void *file, char *buffer, unsigned int len ); member in struct:wpp_callbacks
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/wine/
H A Dwpp.h51 int (*read)( void *file, char *buffer, unsigned int len ); member in struct:wpp_callbacks
/vbox/src/libs/xpcom18a4/xpcom/io/
H A DnsFastLoadPtr.h92 nsresult read(nsIObjectInputStream* aInputStream) { function in class:nsFastLoadPtr
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptinfo/src/
H A DxptiZipLoader.cpp67 PRUint32 read; local
79 if(NS_FAILED(stream->Read(whole+totalRead, avail, &read)))
84 totalRead += read;
/vbox/src/VBox/Devices/PC/ipxe/src/interface/efi/
H A Defi_io.c78 * @ret data Value read
81 EFI_CPU_IO_PROTOCOL_IO_MEM read; local
85 read = ( IS_PORT_ADDRESS ( io_addr ) ?
88 if ( ( efirc = read ( cpu_io, efi_width ( size ),
91 DBG ( "EFI I/O read at %p failed: %s\n",
123 * String read from device
128 * @v count Number of values to read
132 EFI_CPU_IO_PROTOCOL_IO_MEM read; local
135 read = ( IS_PORT_ADDRESS ( io_addr ) ?
138 if ( ( efirc = read ( cpu_i
[all...]
/vbox/src/libs/libxml2-2.6.31/win32/wince/
H A Dwincecompat.c22 int read(int handle, char *buffer, unsigned int len) function
/vbox/src/libs/libpng-1.2.8/
H A Dpngrio.c25 to read more then 64K on a 16 bit machine. */
33 png_error(png_ptr, "Call to NULL read function");
92 png_size_t read, remaining, err; local
97 read = MIN(NEAR_BUF_SIZE, remaining);
99 if ( !ReadFile((HANDLE)(io_ptr), buf, read, &err, NULL) )
102 err = fread(buf, (png_size_t)1, read, io_ptr);
104 png_memcpy(data, buf, read); /* copy far buffer to near buffer */
105 if(err != read)
109 data += read;
110 remaining -= read;
[all...]
/vbox/src/VBox/Devices/Network/
H A DDevEEPROM.cpp63 * @returns True if read was successful.
65 * @param u32Addr Address to read from
256 uint32_t EEPROM93C46::read() function in class:EEPROM93C46
/vbox/src/VBox/Main/src-client/
H A DGuestDirectoryImpl.cpp109 * it later in subsequent read() calls.
310 HRESULT GuestDirectory::read(ComPtr<IFsObjInfo> &aObjInfo) function in class:GuestDirectory
369 /* Nothing to read anymore. Tell the caller. */
385 hr = setError(VBOX_E_IPRT_ERROR, tr("Reading directory \"%s\" failed: Unable to read / access denied"),
/vbox/src/VBox/Main/src-server/win/
H A Dsvchlp.cpp198 int SVCHlpClient::read (void *aVal, size_t aLen) function in class:SVCHlpClient
206 DWORD read = 0;
207 BOOL ok = ReadFile (mReadEnd, aVal, (ULONG)aLen, &read, NULL);
208 AssertReturn(!ok || read == aLen, VERR_GENERAL_FAILURE);
212 int SVCHlpClient::read (Utf8Str &aVal) function in class:SVCHlpClient
219 /* read string length */
220 int vrc = read (len);
234 /* read string data */
235 vrc = read (aVal.mutableRaw(), len);
240 int SVCHlpClient::read (Gui function in class:SVCHlpClient
[all...]
H A Dsvchlp.h68 int read (void *aVal, size_t aLen);
70 int read (Scalar &aVal) { return read (&aVal, sizeof (aVal)); } function in class:SVCHlpClient
71 int read (com::Utf8Str &aVal);
72 int read (com::Guid &aGuid);
/vbox/src/libs/xpcom18a4/nsprpub/tools/
H A Dtail.c139 PRInt32 read, bytes = fileInfo.size - position; local
141 read = PR_Read(file, buffer, bytes);
142 if (read != bytes)
143 PL_FPrintError(err, "Cannot read to eof");
144 position += read;
145 PR_Write(out, buffer, read);
/vbox/src/libs/xpcom18a4/python/test/
H A Dtest_streams.py61 return self.data.read(amount)
63 read=readStr variable in class:koTestSimpleStream
88 self.failUnlessEqual(str(myStream.read(5)), test_data[:5])
89 self.failUnlessEqual(str(myStream.read(0)), '')
90 self.failUnlessEqual(str(myStream.read(5)), test_data[5:10])
91 self.failUnlessEqual(str(myStream.read(-1)), test_data[10:])
/vbox/src/VBox/Additions/x11/x11include/libpciaccess-0.10.8/
H A Dpciaccess_private.h55 int (*read)(struct pci_device * dev, void * data, pciaddr_t offset, member in struct:pci_system_methods
/vbox/src/libs/xpcom18a4/python/
H A Dfile.py47 >>> data = file.read(5) # Pass no arg to read everything.
57 * Only read ("r") mode is supported. Although write ("w") mode doesnt make
109 def read(self, n = -1): member in class:_File
110 assert self.inputStream is not None, "Not setup for read!"
113 return str(self.inputStream.read(n))
120 lines = self.read().split("\n")
212 def read(self, n = -1): member in class:LocalFile
213 return _File.read(self, n)
222 # read i
[all...]
/vbox/src/libs/xpcom18a4/xpcom/obsolete/
H A DnsFileStream.cpp66 if (read(&c, sizeof(c)) == sizeof(c))
72 PRInt32 nsInputStream::read(void* s, PRInt32 n) function in class:nsInputStream
82 } // nsInputStream::read
235 PRInt32 bytesRead = read(s, n - 1);
/vbox/src/VBox/ValidationKit/tests/storage/
H A DtdStorageBenchmark1.py80 def read(self, cb): member in class:IozoneStdOutWrapper
81 """file.read"""
205 self.configBuf.write('[seq-read]\n');
206 self.configBuf.write('rw=read\n');
209 self.configBuf.write('[rand-read]\n');
/vbox/src/VBox/Devices/Audio/testcase/
H A DtstAudioMixBuffer.cpp71 uint32_t read = 0, written = 0, written_abs = 0; local
115 RTTESTI_CHECK_RC_OK(audioMixBufReadCirc(&mb, &samples16, sizeof(samples16), &read));
116 RTTESTI_CHECK(read == 1);
117 audioMixBufFinish(&mb, read);
124 RTTESTI_CHECK_RC_OK(audioMixBufReadCirc(&mb, &samples16, sizeof(samples16), &read));
125 RTTESTI_CHECK(read == 1);
126 audioMixBufFinish(&mb, read);
191 uint32_t read , written, mixed, temp; local
225 RTTESTI_CHECK_RC_OK_BREAK(audioMixBufReadCirc(&parent, pvBuf, cbBuf, &read));
226 if (!read)
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/
H A Dio.h161 static inline int read(int fd, void* buf, unsigned int size) { return _read(fd, buf, size); } function
/vbox/src/VBox/Devices/PC/BIOS/
H A Ddisk.c55 /* Generic disk read/write routine signature. */
59 * the need for conditionals when choosing between read/write functions.
64 dsk_rw_func read; member in struct:__anon14981::__anon14982
162 case 0x01: /* read disk status */
166 /* set CF if error status read */
171 case 0x02: // read disk sectors
246 case 0x08: /* read disk drive parameters */
281 case 0x15: /* read disk drive size */
306 case 0x0a: /* read disk sectors with ECC */
374 case 0x42: // IBM/MS extended read
[all...]

Completed in 122 milliseconds

123