Searched defs:getSize (Results 1 - 5 of 5) sorted by relevance

/system/core/libsync/tests/
H A Dsync_test.cpp191 int getSize() const { function in class:__anon219::SyncFence
532 while (mergeFence.getSignaledCount() != mergeFence.getSize()) {
594 ASSERT_EQ(fence.getSize(), fenceMap.size());
/system/core/libutils/
H A DBlobCache.cpp112 size_t newTotalSize = mTotalSize + valueSize - oldValueBlob->getSize();
152 size_t valueBlobSize = valueBlob->getSize();
173 size += align4(sizeof(EntryHeader) + keyBlob->getSize() +
174 valueBlob->getSize());
198 size_t keySize = keyBlob->getSize();
199 size_t valueSize = valueBlob->getSize();
295 mTotalSize -= entry.getKey()->getSize() + entry.getValue()->getSize();
331 size_t BlobCache::Blob::getSize() const { function in class:android::BlobCache::Blob
/system/core/logd/
H A DLogBuffer.cpp432 unsigned long LogBuffer::getSize(log_id_t id) { function in class:LogBuffer
/system/core/logd/tests/
H A Dlogd_test.cpp678 static const char getSize[] = { local
682 if (write(sock, getSize, sizeof(getSize)) > 0) {
/system/core/libziparchive/
H A Dzip_archive.cc1019 const ZD_TYPE getSize = (compressed_length > kBufSize) ? kBufSize : compressed_length; local
1020 const ZD_TYPE actual = TEMP_FAILURE_RETRY(read(fd, read_buf, getSize));
1021 if (actual != getSize) {
1022 ALOGW("Zip: inflate read failed (" ZD " vs " ZD ")", actual, getSize);
1027 compressed_length -= getSize;
1030 zstream.avail_in = getSize;

Completed in 362 milliseconds