Home | History | Annotate | Download | only in jni

Lines Matching refs:mapSize

42     size_t mapSize;
79 uint8_t* ptr = mapsFile + header.mapSize;
87 header.mapSize += amount;
88 } while (header.mapSize < MAPS_FILE_SIZE);
90 ALOGD("**** read %d bytes from '%s'", (int) header.mapSize, path);
100 jbyteArray array = env->NewByteArray(sizeof(Header) + header.mapSize + header.allocSize);
108 // ALOGD("*** mapSize: %d allocSize: %d allocInfoSize: %d totalMemory: %d",
109 // header.mapSize, header.allocSize, header.allocInfoSize, header.totalMemory);
114 if (header.mapSize > 0 && mapsFile != NULL) {
115 memcpy(ptr, mapsFile, header.mapSize);
116 ptr += header.mapSize;