Searched refs:read (Results 1 - 25 of 287) sorted by relevance

1234567891011>>

/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/docsExamples/
H A Drw.d38 syscall::read:entry,
H A Drtime.d40 syscall::read:entry
45 syscall::read:return
48 printf("%d/%d spent %d nsecs in read(2)\n", pid,
H A Drwtime.d38 syscall::read:entry,
45 syscall::read:return,
H A Dtrussrw.d40 syscall::read:entry,
47 syscall::read:return,
H A Dksyms.d43 syscall::read:entry
46 printf("read %u bytes to user address %x\n", arg2, arg1);
50 syscall::read:return
H A Dtruss.d45 syscall::read:entry
H A Drwinfo.d49 syscall::read:entry,
59 syscall::read:return,
70 printf(" read %5d %9d %d\n", i["read"].calls,
71 i["read"].maxbytes, i["read"].elapsed);
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/begin/
H A Derr.D_PDESC_ZERO.begin.d40 BEGIN::read:entry
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/demo/intro/
H A Dtrussrw.d27 syscall::read:entry,
34 syscall::read:return, syscall::write:return
H A Drwtime.d27 syscall::read:entry,
34 syscall::read:return,
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/demo/vars/
H A Drtime.d27 syscall::read:entry
32 syscall::read:return
35 printf("%d/%d spent %d nsecs in read(2)\n",
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/dtraceUtil/
H A Dman.CoalesceTrace.d54 syscall::read:
59 fbt:genunix:read:
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/demo/struct/
H A Dksyms.d28 * When our strings(1) invocation starts a read(2), set a watched flag on
29 * the current thread. When the read(2) finishes, clear the watched flag.
31 syscall::read:entry
34 printf("read %u bytes to user address %x\n", arg2, arg1);
38 syscall::read:return
H A Drwinfo.d36 syscall::read:entry, syscall::write:entry
45 syscall::read:return, syscall::write:return
55 printf(" read %5d %9d %d\n",
56 i["read"].calls, i["read"].maxbytes, i["read"].elapsed);
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsISerializable.idl51 * and should be read from aInputStream in the same order by this method.
53 void read(in nsIObjectInputStream aInputStream);
/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/Main/src-server/win/
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/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/libs/xpcom18a4/xpcom/io/
H A DnsIScriptableInputStream.idl69 * @param aCount [in] the maximum number of bytes to read
72 string read(in unsigned long aCount);
/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/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/VBox/Devices/PC/ipxe/src/drivers/bitbash/
H A Dbitbash.c49 * @ret data Value read
56 return ( basher->op->read ( basher, bit_id ) ? -1UL : 0 );
/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 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 Dnvs.h40 * @v address Address from which to read
47 int ( * read ) ( struct nvs_device *nvs, unsigned int address, member in struct:nvs_device

Completed in 110 milliseconds

1234567891011>>