/system/keymaster/ |
integrity_assured_key_blob.cpp | 85 size_t size = 1 /* version */ + // local 91 if (!key_blob->Reset(size))
|
/system/security/keystore/ |
auth_token_table.h | 39 * least recently used entries are automatically pruned when when the table exceeds a size limit, 100 size_t size() { return entries_.size(); } function in class:keymaster::AuthTokenTable
|
/system/update_engine/ |
omaha_response.h | 49 off_t size = 0; member in struct:chromeos_update_engine::OmahaResponse
|
/system/update_engine/payload_consumer/ |
mtd_file_descriptor.cc | 100 uint64_t size; local 101 return mtd_node_info(path, &size, nullptr, nullptr) == 0; 195 // successful. We will need to pad to the whole volume size at close.
|
/system/update_engine/payload_generator/ |
payload_generation_config.h | 69 // The size of the data in |path|. If rootfs verification is used (verity) 70 // this value should match the size of the verity device for the rootfs, and 71 // the size of the whole kernel. This value could be smaller than the 72 // partition and is the size of the data update_engine assumes verified for 73 // the source image, and the size of that data it should generate for the 75 uint64_t size = 0; member in struct:chromeos_update_engine::PartitionConfig 87 // metadata associated with the image they are part of, like build number, size, 93 // Load |rootfs_size| and |kernel.size| from the respective image files. For 95 // size is detected from the filesystem. 96 // Returns whether the image size was properly detected [all...] |
/system/webservd/webservd/ |
utils.cc | 103 size_t size = BIO_get_mem_data(bio.get(), reinterpret_cast<char**>(&buffer)); local 104 CHECK_GT(size, 0u); 106 brillo::SecureBlob key_blob(buffer, buffer + size); 107 brillo::SecureMemset(buffer, 0, size); 113 BIO_new_mem_buf(const_cast<uint8_t*>(key.data()), key.size()), BIO_vfree}; 126 size_t size = BIO_get_mem_data(bio.get(), reinterpret_cast<char**>(&buffer)); local 127 CHECK_GT(size, 0u); 129 return brillo::Blob(buffer, buffer + size); 162 CHECK_EQ(len, fingerprint.size()); 181 if_name.c_str(), if_name.size()) < 0) [all...] |
/toolchain/binutils/binutils-2.25/bfd/ |
vms.h | 31 /* Size of a VMS block on disk. */ 61 /* Buffer and its size. */ 65 /* Current record and its size. */ 81 unsigned short int size; member in struct:vms_rec_wr 86 /* Some records must have a size that is a multiple of the alignment.
|
/toolchain/binutils/binutils-2.25/include/vms/ |
eiaf.h | 38 /* Size of EIAF fixed part. */ 39 unsigned char size[4]; member in struct:vms_eiaf
|
emh.h | 40 /* Record size. */ 41 unsigned char size[2]; member in struct:vms_emh_common 65 #define EOBJ__C_MAXRECSIZ 8192 /* Maximum legal record size. */
|
/toolchain/binutils/binutils-2.25/ld/ |
ldctor.c | 255 int reloc_size, size; local 271 except that we use the right size instead of .long. When 287 size, which we can get from the input BFD. */ 304 case 1: size = BYTE; break; 305 case 2: size = SHORT; break; 306 case 4: size = LONG; break; 309 size = SQUAD; 311 size = QUAD; 314 einfo (_("%P%X: Unsupported size %d for set %s\n"), 316 size = LONG [all...] |
/toolchain/binutils/binutils-2.25/opcodes/ |
w65-dis.c | 84 int size = 1; local 96 return size;
|
/art/test/545-tracing-and-jit/src/ |
Main.java | 119 map.size(); 135 map.size(); 151 map.size(); 167 map.size(); 184 set.size(); 201 set.size(); 218 set.size();
|
/cts/tests/tests/content/src/android/content/pm/cts/ |
PackageItemInfoTest.java | 90 assertEquals(expected.metaData.size(), actual.metaData.size());
|
/development/samples/devbytes/animation/CardFlip/src/com/example/android/cardflip/ |
CardFlip.java | 118 view.updateTranslation(mStackCards.get(stack).size()); 150 int size = cardStack.size(); 151 if (size > 0) { 152 rotateCardView(cardStack.get(size - 1), stack, v, v2); 188 rightStack.remove(rightStack.size() - 1); 190 cardView.flipRightToLeft(leftStack.size() - 1, (int)velocityX); 204 leftStack.remove(leftStack.size() - 1); 206 cardView.flipLeftToRight(rightStack.size() - 1, (int)velocityX); 248 for (int i = 0; i < cards.size(); i++) [all...] |
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
BufferedTokenStream.java | 108 public int size() { return tokens.size(); } method in class:BufferedTokenStream 125 int n = i - tokens.size() + 1; // how many more elements we need? 134 t.setTokenIndex(tokens.size()); 135 //System.out.println("adding "+t+" at index "+tokens.size()); 142 if ( i < 0 || i >= tokens.size() ) { 143 throw new NoSuchElementException("token index "+i+" out of range 0.."+(tokens.size()-1)); 153 if ( stop>=tokens.size() ) stop = tokens.size()-1; 176 if ( i >= tokens.size() ) { // return EOF toke [all...] |
/external/autotest/frontend/client/src/autotest/afe/ |
HostListView.java | 108 array.set(array.size(), host.get("hostname")); 130 ids.set(ids.size(), jsonObj.get("id"));
|
/external/autotest/frontend/client/src/autotest/tko/ |
TestGroupDataSource.java | 76 groupByFields.set(groupByFields.size(), new JSONString(field)); 85 headerGroups.set(headerGroups.size(), Utils.stringsToJSON(headerGroup)); 87 groupByFields.set(groupByFields.size(), new JSONString(field));
|
/external/guava/guava/src/com/google/common/collect/ |
Serialization.java | 39 * returns the size of a map serialized by {@link 63 stream.writeInt(map.size()); 76 int size = stream.readInt(); local 77 populateMap(map, stream, size); 82 * See {@link #writeMap} for the data format. The size is determined by a 86 int size) throws IOException, ClassNotFoundException { 87 for (int i = 0; i < size; i++) { 106 int entryCount = multiset.entrySet().size(); 153 stream.writeInt(multimap.asMap().size()); 156 stream.writeInt(entry.getValue().size()); [all...] |
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
PeekingIteratorTest.java | 59 super(master.size() + 3, MODIFIABLE, master, 80 new IteratorTester<T>(list.size() * 2 + 2, UNMODIFIABLE, list, 171 assertEquals("Should have removed an element", 2, list.size());
|
/external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/testers/ |
ListSubListTester.java | 59 fail("subList(0, size + 1) should throw"); 85 assertEquals("subList(0, size) should be equal to the original list", 191 int size = getNumElements(); local 192 assertEquals(list.subList(0, size).size(), method 193 size); 194 assertEquals(list.subList(0, size - 1).size(), method 195 size - 1); 196 assertEquals(list.subList(1, size).size() method 200 assertEquals(list.subList(0, 0).size(), method 207 int size = getNumElements(); local 221 int size = getNumElements(); local 245 int size = getNumElements(); local 263 int size = getNumElements(); local 289 int size = list.size(); local [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
SortedMapInterfaceTest.java | 65 if (map.size() < 2 || !supportsPut) { 91 int oldSize = map.size(); 92 if (map.size() < 2 || !supportsRemove) { 102 assertEquals(map.size(), oldSize - 1); 104 assertEquals(subMap.size(), oldSize - 2); 114 int oldSize = map.size(); 115 if (map.size() < 2 || !supportsClear) { 123 int subMapSize = subMap.size(); 125 assertEquals(map.size(), oldSize - subMapSize);
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
ListSubListTester.java | 63 fail("subList(0, size + 1) should throw"); 89 assertEquals("subList(0, size) should be equal to the original list", 195 int size = getNumElements(); local 196 assertEquals(list.subList(0, size).size(), method 197 size); 198 assertEquals(list.subList(0, size - 1).size(), method 199 size - 1); 200 assertEquals(list.subList(1, size).size() method 204 assertEquals(list.subList(0, 0).size(), method 211 int size = getNumElements(); local 225 int size = getNumElements(); local 249 int size = getNumElements(); local 267 int size = getNumElements(); local 293 int size = list.size(); local [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
PeekingIteratorTest.java | 60 super(master.size() + 3, MODIFIABLE, master, 81 new IteratorTester<T>(list.size() * 2 + 2, UNMODIFIABLE, list, 181 assertEquals("Should have removed an element", 2, list.size());
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
StripedTest.java | 107 assertTrue(Striped.lock(100).size() >= 100); method 108 assertTrue(Striped.lock(256).size() == 256); method 109 assertTrue(Striped.lazyWeakLock(100).size() >= 100); method 110 assertTrue(Striped.lazyWeakLock(256).size() == 256); method 140 for (int i = 0; i < striped.size(); i++) { 145 for (int objectsNum = 1; objectsNum <= striped.size() * 2; objectsNum++) { 173 for (int i = 0; i < striped.size(); i++) { 179 assertTrue("All stripes observed", observed.size() == striped.size()); 182 for (int i = 0; i < striped.size() * 100; i++) [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
StringRange.java | 94 lengthToArrays.put(item.size(), item); 116 private static LinkedList<Ranges> compact(int size, Set<Ranges> inputRanges) { 118 for (int i = size-1; i >= 0; --i) { 217 public Integer size() { method in class:StringRange.Ranges
|