HomeSort by relevance Sort by last modified time
    Searched defs:storage (Results 126 - 150 of 257) sorted by null

1 2 3 4 56 7 8 91011

  /frameworks/base/media/java/android/mtp/
MtpDatabase.java 55 // path to primary storage
185 public void addStorage(MtpStorage storage) {
186 mStorageMap.put(storage.getPath(), storage); local
189 public void removeStorage(MtpStorage storage) {
190 mStorageMap.remove(storage.getPath());
228 // check to see if the path is contained in one of our storage subdirectories
248 // check to see if the path matches one of our storage subdirectories
    [all...]
  /cts/tests/tests/os/src/android/os/storage/cts/
StorageManagerTest.java 17 package android.os.storage.cts;
26 import android.os.storage.OnObbStateChangeListener;
27 import android.os.storage.StorageManager;
  /external/bison/lib/
hash.c 690 /* Reclaim all storage associated with a hash table. If a data_freer
945 Hash_table storage; local
953 new_table = &storage;
    [all...]
  /external/bison/src/
muscle-tab.c 31 /* A key-value pair, along with storage that can be reclaimed when
37 char *storage; member in struct:__anon2782
72 free (mentry->storage);
126 free (entry->storage);
128 entry->storage = NULL;
154 entry->value = entry->storage = xstrdup (val);
161 free (entry->storage);
166 entry->value = entry->storage = xstrdup (new_val);
255 aver (result->value == result->storage);
256 return result->storage;
    [all...]
  /external/chromium/base/win/
pe_image.cc 50 EnumAllImportsStorage &storage = *reinterpret_cast<EnumAllImportsStorage*>( local
53 return image.EnumOneImportChunk(storage.callback, module, name_table, iat,
54 storage.cookie);
63 EnumAllImportsStorage &storage = *reinterpret_cast<EnumAllImportsStorage*>( local
66 return image.EnumOneDelayImportChunk(storage.callback, delay_descriptor,
68 unload_iat, storage.cookie);
  /external/chromium_org/base/win/
pe_image.cc 51 EnumAllImportsStorage &storage = *reinterpret_cast<EnumAllImportsStorage*>( local
54 return image.EnumOneImportChunk(storage.callback, module, name_table, iat,
55 storage.cookie);
64 EnumAllImportsStorage &storage = *reinterpret_cast<EnumAllImportsStorage*>( local
67 return image.EnumOneDelayImportChunk(storage.callback, delay_descriptor,
69 unload_iat, storage.cookie);
  /external/chromium_org/chrome/browser/extensions/api/storage/
settings_sync_unittest.cc 11 #include "chrome/browser/extensions/api/storage/leveldb_settings_storage_factory.h"
12 #include "chrome/browser/extensions/api/storage/settings_frontend.h"
13 #include "chrome/browser/extensions/api/storage/settings_storage_factory.h"
14 #include "chrome/browser/extensions/api/storage/settings_sync_util.h"
15 #include "chrome/browser/extensions/api/storage/settings_test_util.h"
16 #include "chrome/browser/extensions/api/storage/syncable_settings_storage.h"
73 // Returns whether the result of a storage operation is an expected value.
208 // None of these storage areas are owned by this factory, so care must be
242 // its storage area.
405 // each storage area
1399 ValueStore* storage = AddExtensionAndGetStorage("ext", type); local
    [all...]
  /external/chromium_org/chrome/browser/services/gcm/
gcm_profile_service.cc 620 extensions::StateStore* storage = local
622 if (!storage)
625 storage->RemoveExtensionValue(app_id, kRegistrationKey);
629 extensions::StateStore* storage = local
631 if (!storage)
654 storage->SetExtensionValue(
659 extensions::StateStore* storage = local
661 if (!storage)
664 storage->GetExtensionValue(
gcm_profile_service_unittest.cc 344 StateStore* storage = ExtensionSystem::Get(profile())->state_store(); local
345 if (!storage)
348 storage->GetExtensionValue(
  /external/chromium_org/components/policy/core/common/
schema.cc 38 // Sizes for the storage arrays. These are calculated in advance so that the
117 // Determines the expected |sizes| of the storage for the representation
178 InternalStorage* storage = new InternalStorage(); local
179 storage->schema_data_.schema_nodes = data->schema_nodes;
180 storage->schema_data_.property_nodes = data->property_nodes;
181 storage->schema_data_.properties_nodes = data->properties_nodes;
182 return storage;
189 // Determine the sizes of the storage arrays and reserve the capacity before
196 scoped_refptr<InternalStorage> storage = new InternalStorage(); local
197 storage->strings_.reserve(sizes.strings)
469 scoped_refptr<const InternalStorage> storage = InternalStorage::Wrap(data); local
527 scoped_refptr<const InternalStorage> storage = local
    [all...]
  /external/chromium_org/net/socket/
tcp_socket_libevent.cc 213 SockaddrStorage storage; local
214 if (!address.ToSockAddr(storage.addr, &storage.addr_len))
217 int result = bind(socket_, storage.addr, storage.addr_len);
429 SockaddrStorage storage; local
430 if (getsockname(socket_, storage.addr, &storage.addr_len) < 0)
432 if (!address->FromSockAddr(storage.addr, storage.addr_len)
579 SockaddrStorage storage; local
621 SockaddrStorage storage; local
685 SockaddrStorage storage; local
807 SockaddrStorage storage; local
    [all...]
  /external/chromium_org/net/udp/
udp_socket_libevent.cc 126 SockaddrStorage storage; local
127 if (getpeername(socket_, storage.addr, &storage.addr_len))
130 if (!address->FromSockAddr(storage.addr, storage.addr_len))
146 SockaddrStorage storage; local
147 if (getsockname(socket_, storage.addr, &storage.addr_len))
150 if (!address->FromSockAddr(storage.addr, storage.addr_len)
279 SockaddrStorage storage; local
466 SockaddrStorage storage; local
490 SockaddrStorage storage; local
607 SockaddrStorage storage; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/heap/
Heap.h 126 BaseHeapPage(PageMemory* storage, const GCInfo* gcInfo)
127 : m_storage(storage)
146 PageMemory* storage() const { return m_storage; } function in class:WebCore::BaseHeapPage
175 LargeHeapObject(PageMemory* storage, const GCInfo* gcInfo) : BaseHeapPage(storage, gcInfo) { }
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
VertexBuffer9.cpp 116 BufferStorage *storage = buffer->getStorage(); local
117 input = static_cast<const char*>(storage->getData()) + static_cast<int>(attrib.mOffset);
  /external/chromium_org/third_party/skia/src/animator/
SkDisplayable.cpp 529 void* storage = info->memberData(this); local
530 memcpy(storage, &displayable, sizeof(SkDisplayable*));
  /external/chromium_org/third_party/skia/src/effects/
SkTableColorFilter.cpp 172 uint8_t storage[5*256]; local
174 size_t size = SkPackBits::Pack8(fStorage, count * 256, storage);
175 SkASSERT(size <= sizeof(storage));
180 buffer.writeByteArray(storage, size);
186 uint8_t storage[5*256]; local
191 SkASSERT(size <= sizeof(storage));
192 buffer.readByteArray(storage, size);
194 SkDEBUGCODE(size_t raw = ) SkPackBits::Unpack8(storage, size, fStorage);
  /external/chromium_org/third_party/skia/src/effects/gradients/
SkRadialGradient.cpp 180 SkFixed storage[2]; local
182 &storage[0], &storage[1]); local
183 sdx = SkFixedToScalar(storage[0]);
184 sdy = SkFixedToScalar(storage[1]);
409 SkFixed storage[2]; local
411 &storage[0], &storage[1]); local
412 sdx = SkFixedToScalar(storage[0]);
413 sdy = SkFixedToScalar(storage[1])
    [all...]
  /external/chromium_org/webkit/browser/appcache/
appcache_service.cc 80 service_->storage()->CancelDelegateCallbacks(this);
104 service_->storage()->FindResponseForMainRequest(url_, GURL(), this);
140 service_->storage()->LoadOrCreateGroup(manifest_url_, this);
159 service_->storage()->MakeGroupObsolete(group, this);
185 service_->storage()->GetAllInfo(this);
231 service_->storage()->LoadOrCreateGroup(iter->manifest_url, this);
240 service_->storage()->MakeGroupObsolete(group, this);
275 service_->storage()->GetAllInfo(this);
313 service_->storage()->LoadOrCreateGroup(manifest_url_, this);
374 response_reader_.reset(service_->storage()->CreateResponseReader
472 AppCacheStorageImpl* storage = new AppCacheStorageImpl(this); local
    [all...]
  /external/expat/tests/
runtests.c 216 CharData *storage = (CharData *)userData; local
217 if (storage->count < 0 && atts != NULL && atts[0] != NULL) {
219 CharData_AppendXMLChars(storage, atts[1], -1);
228 CharData storage; local
230 CharData_Init(&storage);
231 XML_SetUserData(parser, &storage);
235 CharData_CheckXMLChars(&storage, expected);
245 CharData storage; local
247 CharData_Init(&storage);
248 XML_SetUserData(parser, &storage);
449 CharData *storage = (CharData *) userData; local
463 CharData *storage = (CharData *) userData; local
497 CharData storage; local
594 CharData *storage = (CharData *) userData; local
603 CharData storage; local
1140 CharData *storage = (CharData *) userData; local
1154 CharData *storage = (CharData *) userData; local
1163 CharData storage; local
    [all...]
  /external/opencv/cvaux/src/
cvcorrimages.cpp 558 CvMemStorage* storage = 0; local
684 storage = cvCreateMemStorage(0);
685 // subdiv = cvCreateSubdivDelaunay2D( cvRect( 0, 0, size.width, size.height ), storage );
686 subdiv = cvCreateSubdivDelaunay2D( cvRect( cvRound(minX)-5, cvRound(minY)-5, cvRound(maxX-minX)+10, cvRound(maxY-minY)+10 ), storage );
687 seq = cvCreateSeq( 0, sizeof(*seq), sizeof(CvPoint2D32f), storage );
748 cvReleaseMemStorage( &storage );
    [all...]
  /external/opencv/
cvjni.cpp 230 CvMemStorage* storage = cvCreateMemStorage( 0 ); // ???o??????s?????????? local
236 storage, // ???o??????s??????????
290 LOGV("Release storage");
291 cvReleaseMemStorage( &storage );
  /external/skia/src/animator/
SkDisplayable.cpp 529 void* storage = info->memberData(this); local
530 memcpy(storage, &displayable, sizeof(SkDisplayable*));
  /external/skia/src/effects/
SkTableColorFilter.cpp 172 uint8_t storage[5*256]; local
174 size_t size = SkPackBits::Pack8(fStorage, count * 256, storage);
175 SkASSERT(size <= sizeof(storage));
180 buffer.writeByteArray(storage, size);
186 uint8_t storage[5*256]; local
191 SkASSERT(size <= sizeof(storage));
192 buffer.readByteArray(storage, size);
194 SkDEBUGCODE(size_t raw = ) SkPackBits::Unpack8(storage, size, fStorage);
  /external/skia/src/effects/gradients/
SkRadialGradient.cpp 180 SkFixed storage[2]; local
182 &storage[0], &storage[1]); local
183 sdx = SkFixedToScalar(storage[0]);
184 sdy = SkFixedToScalar(storage[1]);
409 SkFixed storage[2]; local
411 &storage[0], &storage[1]); local
412 sdx = SkFixedToScalar(storage[0]);
413 sdy = SkFixedToScalar(storage[1])
    [all...]
  /dalvik/tools/hprof-conv/
HprofConv.c 99 unsigned char* storage; member in struct:__anon831
114 newBuf->storage = (unsigned char*) malloc(kInitialSize);
122 * Release the storage associated with an ExpandBuf.
127 free(pBuf->storage);
140 return pBuf->storage;
168 unsigned char* newStorage = realloc(pBuf->storage, newSize);
174 pBuf->storage = newStorage;
188 memcpy(pBuf->storage + pBuf->curLen, data, count);
209 pBuf->storage[pBuf->curLen++] = (unsigned char) ic;
228 actual = fread(pBuf->storage + pBuf->curLen, 1, count, in)
    [all...]

Completed in 996 milliseconds

1 2 3 4 56 7 8 91011