/external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/ |
ByteUtils.java | 52 * The input stream to read from 66 // Read the byte content into the output stream first 67 while ((byteCount = inputStream.read(buffer)) > 0) { 111 * Read in a short from an InputStream 114 * The InputStream used to read the short 122 // Read in the next 2 bytes 123 inputStream.read(byteArray); 173 * Read in an integer from an InputStream 176 * The InputStream used to read the integer 184 // Read in the next 4 byte [all...] |
/cts/hostsidetests/appsecurity/test-apps/ExternalStorageApp/src/com/android/cts/externalstorageapp/ |
ExternalStorageTest.java | 42 is.read(); 53 fail("unable to read external file"); 61 fail("able read external file");
|
/dalvik/libdex/ |
DexClass.cpp | 39 /* Read and verify the header of a class_data_item. This updates the 40 * given data pointer to point past the end of the read data and 52 /* Read and verify an encoded_field. This updates the 53 * given data pointer to point past the end of the read data and 57 * a list is read. It is updated as fields are read and used in the 73 /* Read and verify an encoded_method. This updates the 74 * given data pointer to point past the end of the read data and 78 * a list is read. It is updated as fields are read and used in th [all...] |
/development/host/windows/usb/api/ |
adb_legacy_endpoint_object.h | 57 /** \brief Common code for async read / write
59 @param[in] is_read Read or write selector.
60 @param[in,out] buffer Pointer to the buffer for read / write.
61 @param[in] bytes_to_transfer Number of bytes to be read / written.
62 @param[out] bytes_transferred Number of bytes read / written. Can be NULL.
79 /** \brief Common code for sync read / write
81 @param[in] is_read Read or write selector.
82 @param[in,out] buffer Pointer to the buffer for read / write.
83 @param[in] bytes_to_transfer Number of bytes to be read / written.
84 @param[out] bytes_transferred Number of bytes read / written. Can be NULL. [all...] |
/device/moto/stingray/ril/ |
libmoto_rds_ril.so | |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
FilterInputStreamTest.java | 59 is.read(); 60 fail("Able to read from closed stream"); 81 * @tests java.io.FilterInputStream#read() 84 int c = is.read(); 85 assertTrue("read returned incorrect char", c == fileString.charAt(0)); 89 * @tests java.io.FilterInputStream#read(byte[]) 93 is.read(buf1); 94 assertTrue("Failed to read correct data", new String(buf1, 0, 99 * @tests java.io.FilterInputStream#read(byte[], int, int) 105 is.read(buf1, 0, buf1.length) [all...] |
/external/chromium/net/base/ |
cookie_policy.h | 26 // Determines if the URL's cookies may be read. 29 // OK - if allowed to read cookies 30 // ERR_ACCESS_DENIED - if not allowed to read cookies
|
/external/e2fsprogs/e2fsck/ |
extend.c | 65 ret = read(fd, block, blocksize); 67 perror("read"); 77 perror("read");
|
/external/e2fsprogs/lib/ext2fs/ |
ext2_err.c | 30 "Attempt to write to filesystem opened read-only", 31 "Can't read group descriptors", 37 "Can't read an inode bitmap", 39 "Can't read an block bitmap", 41 "Can't read an inode table", 42 "Can't read next inode", 45 "Attempt to read block from filesystem resulted in short read", 77 "Filesystem has unsupported read-only feature(s)", 78 "IO Channel failed to seek on read or write" [all...] |
/external/openssl/crypto/ripemd/ |
README | 11 after the first half of the calculation. I should read the origional 12 value, add then write. Currently I just save the new and read the origioal. 13 I then read both at the end. Bad.
|
/external/sepolicy/ |
access_vectors | 14 read 41 read 75 read 105 read 470 read 524 read 538 read 547 read 557 read 593 read [all...] |
cts.te | 13 # Will still fail when trying to read other app /proc/pid 30 # Read routing information. 31 allow netdomain self:netlink_route_socket { create read write nlmsg_read };
|
global_macros | 22 define(`r_file_perms', `{ getattr open read ioctl lock }') 31 define(`r_dir_perms', `{ open getattr read search ioctl }') 37 define(`r_ipc_perms', `{ getattr read associate unix_read }')
|
/external/valgrind/main/drd/tests/ |
annotate_ignore_rw.c | 16 /* Read s_a and modify s_b. */ 49 /* Read s_b and modify s_a. */ 60 /* Read s_c. */
|
annotate_ignore_write.c | 16 /* Read s_a and modify s_b. */ 50 /* Read s_b and modify s_a. */ 61 /* Read s_c and modify s_a. */
|
/external/valgrind/main/helgrind/tests/ |
tc03_re_excl.c | 19 use(arg[5]); /* read access */ 32 use(x[5]); /* read access */ 34 /* Just before the threads join, x[5] is ShR (read by both parent
|
/external/valgrind/main/memcheck/tests/ |
realloc3.stderr.exp | 1 Invalid read of size 4 7 Invalid read of size 4 13 Invalid read of size 4
|
/external/webkit/Source/WebCore/manual-tests/chromium/ |
no-autofill-on-readonly.html | 5 <p>This page tests that the autofill popup is not shown for read-only and disabled text inputs.</p> 14 <h1>Form 1 (text input non read-only)</h1> 20 <h1>Form 2 (text input read-only)</h1>
|
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
wps-ap-cli | 17 read -p "Enrollee PIN: " pin 21 read -p "Do you want to use this PIN (y/n)? " resp 53 read -p "Command: " cmd
|
/libcore/luni/src/main/java/javax/crypto/ |
CipherInputStream.java | 27 * This class wraps an {@code InputStream} and a cipher so that {@code read()} 28 * methods return data that are read from the underlying {@code InputStream} and 34 * CipherInputStream} tries to read the data an decrypt them before returning. 52 * {@code CipherInputStream}. All read operations on such a stream will 56 * the input stream to read data from. 72 * the input stream to read data from. 86 public int read() throws IOException { method in class:CipherInputStream 102 int byteCount = in.read(inputBuffer); 118 return read(); 125 * if {@code buf} is {@code null}, the next {@code len} bytes are read an 136 public int read(byte[] buf, int off, int len) throws IOException { method in class:CipherInputStream [all...] |
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
ClientHello.java | 93 int size = in.read(); 95 in.read(session_id, 0, size); 104 byte b0 = (byte) in.read(); 105 byte b1 = (byte) in.read(); 108 size = in.read(); 110 in.read(compression_methods, 0, size); 149 byte b0 = (byte) in.read(); 150 byte b1 = (byte) in.read(); 151 byte b2 = (byte) in.read(); 158 System.arraycopy(in.read(challenge_length), 0, random, 32 - challenge_length, challenge_length) [all...] |
/libcore/luni/src/test/java/libcore/java/nio/channels/ |
SocketChannelTest.java | 30 sc.read(readOnly); 35 sc.read(new ByteBuffer[] { readOnly }); 40 sc.read(new ByteBuffer[] { readOnly }, 0, 1);
|
/libcore/luni/src/test/java/tests/api/org/xml/sax/support/ |
BrokenInputStream.java | 24 * IOException after having read a specified number of bytes. Used for 41 public int read() throws IOException { method in class:BrokenInputStream 47 return stream.read();
|
/libcore/support/src/test/java/tests/security/ |
MessageDigestTest.java | 90 int read = 0; local 93 while ((read = checkDigestStream.read()) != -1) { 94 checkDigest[index++] = (byte)read; 98 fail("failed to read digest golden data: " + digestAlgorithmName); 105 int read = 0; local 107 while ((read = sourceData.read(buf)) != -1) { 108 digest.update(buf, 0, read); 112 fail("failed to read digest data") [all...] |
/packages/apps/Email/src/org/apache/james/mime4j/ |
MimeBoundaryInputStream.java | 28 * After the stream ends (i.e. read() returns -1) {@link #hasMoreParts()}
64 * before any bytes have been read.
66 int b = read();
109 while (read() != -1) {
114 * @see java.io.InputStream#read()
116 public int read() throws IOException {
method in class:MimeBoundaryInputStream 128 int b1 = s.read();
129 int b2 = s.read();
150 int b = s.read();
165 int prev = s.read();
[all...] |