/frameworks/base/core/java/android/util/ |
Log.java | 276 int bytes = println_native(LOG_ID_MAIN, ASSERT, tag, getStackTraceString(tr)); local 278 return bytes; 317 * @return The number of bytes written.
|
/frameworks/base/keystore/java/android/security/ |
KeyStore.java | 222 private static String toString(byte[] bytes) { 224 return new String(bytes, "UTF-8");
|
/frameworks/base/services/audioflinger/ |
AudioDumpInterface.h | 45 virtual ssize_t write(const void* buffer, size_t bytes); 93 virtual ssize_t read(void* buffer, ssize_t bytes);
|
/hardware/qcom/media/mm-core/omxcore/src/common/ |
omx_core_cmp.h | 110 OMX_IN OMX_U32 bytes, 120 OMX_IN OMX_U32 bytes);
|
/libcore/luni/src/main/java/org/apache/harmony/luni/platform/ |
OSMemory.java | 42 * <code>length</code> bytes. The space is uninitialized and may be larger 43 * than the number of bytes requested; however, the guaranteed usable memory 44 * block is exactly <code>length</code> bytes int. 47 * number of bytes requested. 56 * call to {@link #malloc(int) malloc(int)}. The number of bytes freed is 57 * identical to the number of bytes acquired when the memory block was 70 * Places <code>value</code> into first <code>length</code> bytes of the 88 * Copies <code>length</code> bytes from <code>srcAddress</code> to 91 * that the original source bytes in the overlapping region are copied 106 * the number of bytes to move [all...] |
/libcore/luni/src/test/java/tests/api/java/nio/charset/ |
Charset_SingleByteAbstractTest.java | 125 assertEqualBytes2("Encoded bytes must match!", allBytes, outputBB.array(), allChars); 144 static void assertEqualChars2 (String msg, char[] expected, char[] actual, byte[] bytes) { 155 if (actual[i] == (bytes[i] & 0xff)) { 157 // i, bytes[i] & 0xff, (int) actual[i], (int) expected[i]); 160 // i, bytes[i] & 0xff, (int) actual[i], (int) expected[i]); 165 // i, bytes[i] & 0xff, (int) actual[i], (int) expected[i]); 170 // !((actual[i] == bytes[i]) && (expected[i] == 65533))) {
|
/external/zlib/contrib/delphi/ |
ZLib.pas | 25 avail_in: Integer; // number of bytes available at next_in 26 total_in: Longint; // total nb of input bytes read so far 30 total_out: Longint; // total nb of bytes output so far 69 The Position property returns the number of uncompressed bytes of 108 The Position property returns the number of bytes of uncompressed data that 130 InBytes = number of bytes in InBuf 132 OutBytes = number of bytes in OutBuf } 139 InBytes = number of bytes in InBuf 142 OutBytes = number of bytes in OutBuf } 148 InBytes = number of bytes in InBu [all...] |
/dalvik/dx/src/com/android/dx/cf/code/ |
BasicBlocker.java | 272 BytecodeArray bytes = method.getCode(); local 273 ByteBlock[] bbs = new ByteBlock[bytes.size()]; 328 BytecodeArray bytes = method.getCode(); local 346 bytes.processWorkSet(workSet, this); 389 * @param length length of the instruction, in bytes 422 * @param length length of the instruction, in bytes
|
/dalvik/dx/src/com/android/dx/cf/direct/ |
AnnotationParser.java | 60 /** {@code non-null;} bytes of the attribute data */ 61 private final ByteArray bytes; field in class:AnnotationParser 80 * @param length {@code >= 0;} number of bytes left in the attribute data 92 this.bytes = cf.getBytes().slice(offset, offset + length); 93 this.input = bytes.makeDataInputStream(); 441 * Helper which will throw an exception if the given number of bytes 444 * @param requiredLength the number of required bytes 453 * Helper which indicates that some bytes were just parsed. This should 457 * @param length {@code >= 0;} number of bytes parsed 461 observer.parsed(bytes, parseCursor, length, message) [all...] |
/external/bouncycastle/src/main/java/org/bouncycastle/x509/ |
X509V3CertificateGenerator.java | 202 byte[] bytes = new byte[(id.length + 7) / 8]; 206 bytes[i / 8] |= (id[i]) ? (1 << ((7 - (i % 8)))) : 0; 213 return new DERBitString(bytes); 217 return new DERBitString(bytes, 8 - pad);
|
/external/chromium/base/ |
shared_memory.h | 91 bool Map(size_t bytes);
|
/external/chromium/net/base/ |
file_stream_posix.cc | 443 int64 FileStream::Truncate(int64 bytes) { 451 int64 seek_position = Seek(FROM_BEGIN, bytes); 452 if (seek_position != bytes) 456 int result = ftruncate(file_, bytes);
|
/external/chromium/third_party/libevent/ |
event_tagging.c | 124 int bytes = 0; local 135 data[bytes++] = lower; 139 evbuffer_add(evbuf, data, bytes); 141 return (bytes); 184 * tag number: one byte; length: var bytes; payload: var bytes
|
/external/e2fsprogs/debugfs/ |
dump.c | 207 unsigned bytes = inode->i_size; local 216 retval = ext2fs_file_read(e2_file, p, bytes, &got); 221 bytes -= got; 223 if (got == 0 || bytes == 0)
|
/external/libvpx/vp8/common/arm/armv6/ |
copymem8x4_v6.asm | 78 ;copy 4 bytes each time 103 ;copy 8 bytes each time
|
copymem8x8_v6.asm | 78 ;copy 4 bytes each time 103 ;copy 8 bytes each time
|
/external/webkit/WebCore/page/mac/ |
WebCoreViewFactory.h | 114 - (WebCoreTextMarker *)textMarkerWithBytes:(const void *)bytes length:(size_t)length; 115 - (BOOL)getBytes:(void *)bytes fromTextMarker:(WebCoreTextMarker *)textMarker length:(size_t)length;
|
/external/webkit/WebKit/mac/Plugins/Hosted/ |
HostedNetscapePluginStream.h | 64 void didReceiveData(WebCore::NetscapePlugInStreamLoader*, const char* bytes, int length);
|
/external/zlib/contrib/masm686/ |
match.asm | 114 scanend = 12 ; last two bytes of string
115 scanstart = 16 ; first two bytes of string
120 varsize = 36 ; number of bytes (also offset to last saved register)
195 ;/* Determine how many bytes the scan ptr is off from being */
284 ;/* both pointed (MAX_MATCH_8 - scanalign) bytes ahead, and %edx is */
295 ;/* Test the strings for equality, 8 bytes at a time. At the end,
298 ; * We already know at this point that the first three bytes of the
301 ; * bytes, as much as necessary in order to dword-align the %edi
|
/frameworks/base/media/jni/ |
android_media_MediaMetadataRetriever.cpp | 269 jbyte* bytes = env->GetByteArrayElements(array, NULL); local 270 if (bytes != NULL) { 271 memcpy(bytes, data, len); 272 env->ReleaseByteArrayElements(array, bytes, 0);
|
/frameworks/base/services/java/com/android/server/ |
PackageManagerBackupAgent.java | 244 private static void writeEntity(BackupDataOutput data, String key, byte[] bytes) 246 data.writeEntityHeader(key, bytes.length); 247 data.writeEntityData(bytes, bytes.length);
|
/frameworks/base/telephony/java/com/android/internal/telephony/test/ |
ModelInterpreter.java | 383 pdu.append ("00"); //SMSC address - 0 bytes 654 byte[] bytes = s.getBytes("US-ASCII"); 658 out.write(bytes); 671 byte[] bytes = s.getBytes("US-ASCII"); 675 out.write(bytes);
|
/libcore/luni/src/main/java/java/lang/ |
Runtime.java | 340 * @return the approximate amount of free memory, measured in bytes. 506 * @return the total amount of memory, measured in bytes. 711 * allocate, measured in bytes. 729 private byte[] bytes; field in class:ReaderInputStream 752 return (numBytes < 0) ? -1 : bytes[nextByte++]; 765 bytes = out.toByteArray(); 766 numBytes = bytes.length; 774 * wrapped in an OutputStream. Bytes are written to characters in big-endian
|
/libcore/luni/src/main/java/org/apache/harmony/security/pkcs10/ |
CertificationRequest.java | 116 ((BitString) values[2]).bytes,
|
/libcore/luni/src/test/java/tests/api/java/io/ |
BufferedInputStreamTest.java | 97 // Close underlying FileInputStream, all but 1 buffered bytes should 150 assertTrue("Returned incorrect number of available bytes", is 266 // Tests 3 and 4: Check that skipping less than readlimit bytes does 358 byte[] bytes = new byte[256]; 360 bytes[i] = (byte) i; 364 new ByteArrayInputStream(bytes), 5); 366 // Read more bytes than are buffered. 368 assertEquals("Test 2: Incorrect byte read;", bytes[i], in.read());
|