HomeSort by relevance Sort by last modified time
    Searched defs:storage (Results 201 - 225 of 695) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/base/services/core/java/com/android/server/storage/
DeviceStorageMonitorService.java 17 package com.android.server.storage;
39 import android.os.storage.StorageManager;
40 import android.os.storage.VolumeInfo;
67 * Service that monitors and maintains free space on storage volumes.
88 // hard codes 250MB in the message as the storage space required for the
99 /** Map from storage volume UUID to internal state */
103 * State for a specific storage volume, including the current "level" that
172 * Core logic that checks the storage state of every mounted private volume.
178 final StorageManager storage = getContext().getSystemService(StorageManager.class); local
182 for (VolumeInfo vol : storage.getWritablePrivateVolumes())
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
SAXParserTestSupport.java 93 HashMap<String, String> storage = new HashMap<String, String>(); local
106 storage.put(KEYS[i], str.toString());
130 return storage;
  /art/compiler/driver/
compiled_method_storage.cc 39 void* storage = allocator.allocate(LengthPrefixedArray<T>::ComputeSize(array.size())); local
40 LengthPrefixedArray<T>* array_copy = new(storage) LengthPrefixedArray<T>(array.size());
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
socketmodule.h 107 struct sockaddr_storage storage; member in union:sock_addr
  /external/ImageMagick/coders/
sgi.c 79 storage,
327 iris_info.storage=(unsigned char) ReadBlobByte(image);
328 switch (iris_info.storage)
387 if ((int) iris_info.storage != 0x01)
940 iris_info.storage=(unsigned char) 0x00;
942 iris_info.storage=(unsigned char) 0x01;
968 (void) WriteBlobByte(image,iris_info.storage);
77 storage, member in struct:_SGIInfo
    [all...]
  /external/brotli/research/
find_opt_references.cc 43 void ReadInput(FILE* fin, input_type* storage, size_t input_size) {
48 available_in = fread(storage + last_pos, 1, kFileBufferSize, fin);
54 void BuildLCP(input_type* storage, sarray_type* sarray, lcp_type* lcp,
67 while (i + k < size && j + k < size && storage[i + k] == storage[j + k]) {
212 input_type* storage = new input_type[input_size]; local
214 ReadInput(fin, storage, input_size);
218 saisxx(storage, sarray, input_size);
225 BuildLCP(storage, sarray, lcp, input_size, pos);
227 delete[] storage;
    [all...]
  /external/clang/test/SemaCXX/
for-range-examples.cpp 60 T storage[100]; member in class:map_range::vector
64 void push_back(T t) { storage[size++] = t; }
65 T *begin() { return storage; }
66 T *end() { return storage + size; }
  /external/gemmlowp/test/
benchmark_all_sizes.cc 83 storage.resize(size());
84 data_ = storage.data();
94 std::vector<Scalar> storage; member in class:gemmlowp::Matrix
  /external/icu/icu4c/source/test/cintltst/
trietest.c 269 uint8_t* storage =NULL; local
271 storage = (uint8_t*) uprv_malloc(sizeof(uint8_t)*DEFAULT_STORAGE_SIZE);
318 length=utrie_serialize(newTrie, storage, DEFAULT_STORAGE_SIZE,
352 if(!utrie_unserialize(&trie, storage, length, &errorCode)) {
441 uprv_free(storage);
450 double bogus; /* needed for aligining the storage */
451 uint8_t storage[32768]; member in union:__anon21650
520 length=utrie_serialize(newTrie, storageHolder.storage, sizeof(storageHolder.storage),
529 if (length >= (int32_t)sizeof(storageHolder.storage)) {
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/
RuntimeDataTest.java 37 private TestStorage storage; field in class:RuntimeDataTest
42 storage = new TestStorage();
60 data.collect(storage, storage, false);
66 assertSame(storage.getData(123).getProbes(), data);
67 assertEquals("Foo", storage.getData(123).getName());
72 data.collect(storage, storage, false);
73 storage.assertSize(0);
83 data.collect(storage, storage, true)
    [all...]
RuntimeTestBase.java 39 private TestStorage storage; field in class:RuntimeTestBase
48 storage = new TestStorage();
60 data.collect(storage, storage, false);
61 storage.assertData(1234, t.get());
80 data.collect(storage, storage, false);
81 storage.assertSize(1);
82 final boolean[] data = storage.getData(1001).getProbes();
92 data.collect(storage, storage, false)
    [all...]
  /external/libogg/include/ogg/
ogg.h 38 long storage; member in struct:__anon25578
55 long body_storage; /* storage elements allocated */
107 int storage; member in struct:__anon25582
  /external/libxml2/
timsort.h 353 SORT_TYPE *storage; member in struct:__anon26822
358 SORT_TYPE *tempstore = (SORT_TYPE *)realloc(store->storage, new_size * sizeof(SORT_TYPE));
361 fprintf(stderr, "Error allocating temporary storage for tim sort: need %lu bytes",
366 store->storage = tempstore;
376 SORT_TYPE *storage; local
379 storage = store->storage;
383 memcpy(storage, &dst[curr], A * sizeof(SORT_TYPE));
389 if (SORT_CMP(storage[i], dst[j]) <= 0) {
390 dst[k] = storage[i++]
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/core/
kernel.cpp 104 sz += arg.storage();
368 kernel::argument::storage() const { function in class:kernel::argument
439 kernel::local_argument::storage() const { function in class:kernel::local_argument
  /external/python/cpython2/Modules/
socketmodule.h 107 struct sockaddr_storage storage; member in union:sock_addr
  /external/python/cpython3/Modules/
socketmodule.h 145 struct sockaddr_storage storage; member in union:sock_addr
  /external/skia/gm/
filterfastbounds.cpp 182 SkRect storage; local
188 const SkRect& fastBound = p.computeFastBounds(r, &storage);
212 SkRect storage; local
219 const SkRect& fastBound = p.computeFastBounds(bounds, &storage);
  /external/skia/src/core/
SkOverdrawCanvas.cpp 225 SkPaint storage; local
227 storage = this->overdrawPaint(*paint);
228 paintPtr = &storage;
  /external/skia/src/ports/
SkFontMgr_FontConfigInterface.cpp 94 char* storage = new char[sizeof(Request) + contentLen]; local
95 return new (storage) Request(name, nameLen, style);
97 void operator delete(void* storage) {
98 delete[] reinterpret_cast<char*>(storage);
  /external/skia/tools/trace/
SkChromeTracingTracer.cpp 98 // Figure out how much extra storage we need for copied strings
108 SkSTArray<128, uint8_t, true> storage; local
109 uint8_t* storagePtr = storage.push_back_n(size);
  /external/skqp/gm/
filterfastbounds.cpp 182 SkRect storage; local
188 const SkRect& fastBound = p.computeFastBounds(r, &storage);
212 SkRect storage; local
219 const SkRect& fastBound = p.computeFastBounds(bounds, &storage);
  /external/skqp/src/core/
SkOverdrawCanvas.cpp 225 SkPaint storage; local
227 storage = this->overdrawPaint(*paint);
228 paintPtr = &storage;
  /external/skqp/src/ports/
SkFontMgr_FontConfigInterface.cpp 94 char* storage = new char[sizeof(Request) + contentLen]; local
95 return new (storage) Request(name, nameLen, style);
97 void operator delete(void* storage) {
98 delete[] reinterpret_cast<char*>(storage);
  /external/skqp/tools/trace/
SkChromeTracingTracer.cpp 98 // Figure out how much extra storage we need for copied strings
108 SkSTArray<128, uint8_t, true> storage; local
109 uint8_t* storagePtr = storage.push_back_n(size);
  /external/strace/
sockaddr.c 362 struct sockaddr_storage storage; member in union:__anon35337
366 if ((unsigned) addrlen > sizeof(addrbuf.storage))
367 addrlen = sizeof(addrbuf.storage);

Completed in 397 milliseconds

1 2 3 4 5 6 7 891011>>