Searched defs:chunkSize (Results 1 - 4 of 4) sorted by relevance
/frameworks/base/core/java/android/backup/ |
H A D | BackupHelperDispatcher.java | 34 int chunkSize; // not including the header field in class:BackupHelperDispatcher.Header 67 skipChunk_native(oldStateFD, header.chunkSize); 100 // where it was at the end of performBackup. Header.chunkSize will not be filled in.
|
/frameworks/base/core/jni/android/graphics/ |
H A D | NinePatch.cpp | 73 size_t chunkSize = env->GetArrayLength(chunkObj); local 74 void* storage = alloca(chunkSize); 75 env->GetByteArrayRegion(chunkObj, 0, chunkSize, 80 assert(chunkSize == chunk->serializedSize()); 154 size_t chunkSize = env->GetArrayLength(chunkObj); local 155 void* storage = alloca(chunkSize); 156 env->GetByteArrayRegion(chunkObj, 0, chunkSize, 161 assert(chunkSize == chunk->serializedSize());
|
H A D | BitmapFactory.cpp | 611 size_t chunkSize = env->GetArrayLength(chunkObject); local 612 void* storage = alloca(chunkSize); 614 memcpy(chunk, array, chunkSize); 636 memcpy(array, chunk, chunkSize);
|
/frameworks/base/media/libstagefright/ |
H A D | JPEGSource.cpp | 171 uint16_t chunkSize; local 172 if (!mSource->getUInt16(i, &chunkSize)) { 178 if (chunkSize < 2) { 215 i += chunkSize - 2; 223 i += chunkSize - 2;
|
Completed in 2190 milliseconds