HomeSort by relevance Sort by last modified time
    Searched refs:storage (Results 1 - 25 of 657) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/os/storage/
DiskInfo.aidl 17 package android.os.storage;
StorageVolume.aidl 17 package android.os.storage;
VolumeInfo.aidl 17 package android.os.storage;
MountServiceListener.java 17 package android.os.storage;
26 * USB Mass storage connection state has changed.
34 * Storage state has changed.
StorageResultCode.java 17 package android.os.storage;
29 * @see android.os.storage.StorageManager
35 * @see android.os.storage.StorageManager
41 * @see android.os.storage.StorageManager
47 * @see android.os.storage.StorageManager
53 * @see android.os.storage.StorageManager
58 * Operation failed: Storage not mounted.
59 * @see android.os.storage.StorageManager
64 * Operation failed: Storage is mounted.
65 * @see android.os.storage.StorageManage
    [all...]
OnObbStateChangeListener.java 17 package android.os.storage;
  /external/expat/tests/
chardata.c 35 CharData_Init(CharData *storage)
37 assert(storage != NULL);
38 storage->count = -1;
42 CharData_AppendString(CharData *storage, const char *s)
44 int maxchars = sizeof(storage->data) / sizeof(storage->data[0]);
49 if (storage->count < 0)
50 storage->count = 0;
51 if ((len + storage->count) > maxchars) {
52 len = (maxchars - storage->count)
    [all...]
chardata.h 25 void CharData_Init(CharData *storage);
27 void CharData_AppendString(CharData *storage, const char *s);
29 void CharData_AppendXMLChars(CharData *storage, const XML_Char *s, int len);
31 int CharData_CheckString(CharData *storage, const char *s);
33 int CharData_CheckXMLChars(CharData *storage, const XML_Char *s);
  /frameworks/base/services/core/java/com/android/server/storage/
DeviceStorageMonitorInternal.java 17 package com.android.server.storage;
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.tycho.noopsecurity_0.20.0.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.tycho.noopsecurity_0.18.1.jar 
  /hardware/intel/common/libwsbm/src/
wsbm_manager.c 74 struct _WsbmBufStorage *storage; member in struct:_WsbmBufferObject
360 struct _WsbmBufStorage *storage; local
362 storage = buf->storage;
363 if (!storage)
366 (void)storage->pool->waitIdle(storage, lazy);
372 struct _WsbmBufStorage *storage = buf->storage; local
376 retval = storage->pool->map(storage, mode, &virtual)
384 struct _WsbmBufStorage *storage = buf->storage; local
395 struct _WsbmBufStorage *storage = buf->storage; local
403 struct _WsbmBufStorage *storage = buf->storage; local
411 struct _WsbmBufStorage *storage = buf->storage; local
419 struct _WsbmBufStorage *storage = buf->storage; local
427 struct _WsbmBufStorage *storage = buf->storage; local
449 struct _WsbmBufStorage *storage = buf->storage; local
491 struct _WsbmBufStorage *storage; local
620 struct _WsbmBufStorage *storage; local
746 struct _WsbmBufStorage *storage = buf->storage; local
774 struct _WsbmBufStorage *storage = buf->storage; local
820 struct _WsbmBufStorage *storage = buf->storage; local
883 struct _WsbmBufStorage *storage = buf->storage; local
935 struct _WsbmBufStorage *storage; local
1125 struct _WsbmBufStorage *storage = buf->storage; local
1158 struct _WsbmBufStorage *storage; local
1177 struct _WsbmBufStorage *storage; local
1197 struct _WsbmBufStorage *storage; local
1222 struct _WsbmBufStorage *storage; local
1250 struct _WsbmBufStorage *storage; local
1283 struct _WsbmBufStorage *storage; local
1354 struct _WsbmBufStorage *storage = buf->storage; local
    [all...]
wsbm_pool.h 86 wsbmBufStorageInit(struct _WsbmBufStorage *storage,
89 int ret = WSBM_MUTEX_INIT(&storage->mutex);
93 storage->pool = pool;
94 wsbmAtomicSet(&storage->refCount, 1);
95 wsbmAtomicSet(&storage->onList, 0);
96 storage->destroyContainer = NULL;
101 wsbmBufStorageTakedown(struct _WsbmBufStorage *storage)
103 WSBM_MUTEX_FREE(&storage->mutex);
109 struct _WsbmBufStorage *storage = *pStorage; local
112 if (storage == NULL
    [all...]
  /frameworks/base/core/jni/android/graphics/
CreateJavaOutputStreamAdaptor.h 17 * @param storage Java byte array for retrieving data from the
25 jbyteArray storage);
31 * @param storage Java byte array for retrieving data from the
37 jbyteArray storage);
40 jbyteArray storage);
  /external/mesa3d/src/glsl/
link_uniform_initializers.cpp 38 get_storage(gl_uniform_storage *storage, unsigned num_storage,
42 if (strcmp(name, storage[i].name) == 0)
43 return &storage[i];
50 copy_constant_to_storage(union gl_constant_value *storage,
58 storage[i].u = val->value.u[i];
62 storage[i].i = val->value.i[i];
65 storage[i].f = val->value.f[i];
68 storage[i].b = int(val->value.b[i]);
111 struct gl_uniform_storage *const storage = local
115 if (storage == NULL)
    [all...]
  /external/lldb/test/lang/objc/real-definition/
Bar.h 7 InternalClass *storage; variable
  /external/mesa3d/src/glsl/tests/
copy_constant_to_storage_tests.cpp 32 copy_constant_to_storage(union gl_constant_value *storage,
49 gl_constant_value storage[17]; member in class:copy_constant_to_storage
72 const unsigned red_zone_size = Elements(storage) - val->type->components();
73 fill_storage_array_with_sentinels(storage,
77 linker::copy_constant_to_storage(storage,
82 verify_data(storage, 0, val, red_zone_size);
91 const unsigned red_zone_size = Elements(storage) - val->type->components();
92 fill_storage_array_with_sentinels(storage,
96 linker::copy_constant_to_storage(storage,
101 verify_data(storage, 0, val, red_zone_size)
    [all...]
uniform_initializer_utils.h 31 fill_storage_array_with_sentinels(gl_constant_value *storage,
46 verify_data(gl_constant_value *storage, unsigned storage_array_size,
  /external/libcxx/test/std/atomics/atomics.flag/
default.pass.cpp 28 _ALIGNAS_TYPE(A) char storage[sizeof(A)] = {1}; local
29 A& zero = *new (storage) A();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/atomics/atomics.flag/
default.pass.cpp 26 _ALIGNAS_TYPE(A) char storage[sizeof(A)] = {1}; local
27 A& zero = *new (storage) A();
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
storage.h 7 #warning Your code should include objbase.h instead of storage.h header file.
  /external/v8/src/base/
lazy-instance.h 102 static T* MutableInstance(StorageType* storage) {
103 return reinterpret_cast<T*>(storage);
107 static void InitStorageUsingTrait(StorageType* storage) {
108 ConstructTrait::Construct(MutableInstance(storage));
117 static T* MutableInstance(StorageType* storage) {
118 return *storage;
122 static void InitStorageUsingTrait(StorageType* storage) {
123 *storage = CreateTrait::Create();
146 template <typename Function, typename Storage>
147 static void Init(OnceType* once, Function function, Storage storage)
    [all...]
  /frameworks/base/media/java/android/mtp/
MtpServer.java 59 public void addStorage(MtpStorage storage) {
60 native_add_storage(storage);
63 public void removeStorage(MtpStorage storage) {
64 native_remove_storage(storage.getStorageId());
73 private native final void native_add_storage(MtpStorage storage);
  /external/skia/src/core/
SkStreamPriv.h 17 * Copy the provided stream to memory allocated by storage.
19 * @param storage Allocator to hold the memory. Will be reset to be large
21 * storage->get() will point to data holding the SkStream's entire
23 * @param stream SkStream to be copied into storage.
25 * number of bytes pointed to by storage->get(). Returns 0 on failure.
27 size_t SkCopyStreamToStorage(SkAutoMalloc* storage, SkStream* stream);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_container.h 58 storage_t storage; member in struct:__anon22277

Completed in 6707 milliseconds

1 2 3 4 5 6 7 8 91011>>