Searched defs:storage (Results 1 - 25 of 38) sorted by relevance

12

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_container.h58 storage_t storage; member in struct:__anon830
H A Dh264bsd_storage.c72 Initialize storage structure. Sets contents of the storage to '0'
108 Store sequence parameter set into the storage. If active SPS is
113 pStorage pointer to storage structure
192 Store picture parameter set into the storage. If active PPS is
197 pStorage pointer to storage structure
280 pStorage pointer to storage data structure
425 Reset contents of the storage. This should be called before
429 pStorage pointer to storage structure
474 pStorage pointer to storage structur
625 h264bsdCheckAccessUnitBoundary( strmData_t *strm, nalUnit_t *nuNext, storage_t *storage, u32 *accessUnitBoundaryFlag) argument
[all...]
/frameworks/base/core/java/android/os/storage/
H A DMountServiceListener.java17 package android.os.storage;
26 * USB Mass storage connection state has changed.
H A DStorageEventListener.java17 package android.os.storage;
27 * @param connected true if the USB mass storage is connected.
33 * Called when storage has changed state
34 * @param path the filesystem path for the storage
H A DOnObbStateChangeListener.java17 package android.os.storage;
H A DStorageResultCode.java17 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
59 * @see android.os.storage.StorageManager
65 * @see android.os.storage.StorageManager
71 * @see android.os.storage.StorageManager
H A DIMountServiceListener.java17 package android.os.storage;
28 * @hide - Applications should use IStorageEventListener for storage event
H A DIMountShutdownObserver.java17 package android.os.storage;
H A DIObbActionListener.java17 package android.os.storage;
H A DStorageVolume.java17 package android.os.storage;
27 * Description of a storage volume and its capabilities, including the
44 /** Maximum file size for the storage, or zero for no limit */
136 * Returns the MTP storage ID for the volume.
139 * @return MTP storage ID
149 // storage ID is 0x00010001 for primary storage,
158 * be added via MTP if there is less than this amount left free in the storage.
159 * If MTP has dedicated storage this value should be zero, but if MTP is
160 * sharing storage wit
[all...]
H A DStorageManager.java17 package android.os.storage;
44 * StorageManager is the interface to the systems storage service. The storage
45 * manager handles storage-related items such as Opaque Binary Blobs (OBBs).
51 * a shared storage pool accessible from all programs. The system does not
228 * Message sent on a USB mass storage connection change.
325 * Registers a {@link android.os.storage.StorageEventListener StorageEventListener}.
327 * @param listener A {@link android.os.storage.StorageEventListener StorageEventListener} object.
351 * Unregisters a {@link android.os.storage.StorageEventListener StorageEventListener}.
353 * @param listener A {@link android.os.storage
[all...]
/frameworks/base/core/tests/coretests/src/android/os/storage/
H A DStorageListener.java17 package android.os.storage;
H A DStorageManagerIntegrationTest.java17 package android.os.storage;
/frameworks/base/core/jni/
H A Dandroid_view_HardwareRenderer.cpp113 jint* storage = env->GetIntArrayElements(size, NULL); local
116 storage[0] = value;
119 storage[1] = value;
121 env->ReleaseIntArrayElements(size, storage, 0);
/frameworks/base/media/java/android/mtp/
H A DMtpServer.java54 public void addStorage(MtpStorage storage) { argument
55 native_add_storage(storage);
58 public void removeStorage(MtpStorage storage) { argument
59 native_remove_storage(storage.getStorageId());
67 private native final void native_add_storage(MtpStorage storage); argument
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBitmapFactory_Delegate.java91 /*package*/ static Bitmap nativeDecodeStream(InputStream is, byte[] storage, argument
93 return nativeDecodeStream(is, storage, padding, opts, false, 1.f);
97 /*package*/ static Bitmap nativeDecodeStream(InputStream is, byte[] storage, argument
/frameworks/base/core/java/com/android/internal/os/storage/
H A DExternalStorageFormatter.java1 package com.android.internal.os.storage;
14 import android.os.storage.IMountService;
15 import android.os.storage.StorageEventListener;
16 import android.os.storage.StorageManager;
17 import android.os.storage.StorageVolume;
25 * Takes care of unmounting and formatting external storage.
31 public static final String FORMAT_ONLY = "com.android.internal.os.storage.FORMAT_ONLY";
32 public static final String FORMAT_AND_FACTORY_RESET = "com.android.internal.os.storage.FORMAT_AND_FACTORY_RESET";
36 // If non-null, the volume to format. Otherwise, will use the default external storage directory
57 Log.i(TAG, "Received storage stat
[all...]
/frameworks/base/core/jni/android/graphics/
H A DNinePatch.cpp42 * int8_t* to allocate and free the backing storage.
71 int8_t* storage = new int8_t[chunkSize]; local
73 env->GetByteArrayRegion(obj, 0, chunkSize, reinterpret_cast<jbyte*>(storage));
75 return (int8_t*) Res_png_9patch::deserialize(storage);
H A DBitmapRegionDecoder.cpp140 jbyteArray storage, // byte[]
144 SkStreamRewindable* stream = CopyJavaInputStream(env, is, storage);
138 nativeNewInstanceFromStream(JNIEnv* env, jobject clazz, jobject is, jbyteArray storage, jboolean isShareable) argument
H A DCreateJavaOutputStreamAdaptor.cpp129 jbyteArray storage) {
130 return new JavaInputStreamAdaptor(env, stream, storage);
157 jbyteArray storage) {
158 SkAutoTUnref<SkStream> adaptor(CreateJavaInputStreamAdaptor(env, stream, storage));
172 SkJavaOutputStream(JNIEnv* env, jobject stream, jbyteArray storage) argument
173 : fEnv(env), fJavaOutputStream(stream), fJavaByteArray(storage) {
174 fCapacity = env->GetArrayLength(storage);
179 jbyteArray storage = fJavaByteArray; local
187 env->SetByteArrayRegion(storage, 0, requested,
197 storage,
128 CreateJavaInputStreamAdaptor(JNIEnv* env, jobject stream, jbyteArray storage) argument
156 CopyJavaInputStream(JNIEnv* env, jobject stream, jbyteArray storage) argument
222 CreateJavaOutputStreamAdaptor(JNIEnv* env, jobject stream, jbyteArray storage) argument
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DBitmapRegionDecoder.java120 // pass some temp storage down to the native code. 1024 is made up,
269 InputStream is, byte[] storage, boolean isShareable);
268 nativeNewInstance( InputStream is, byte[] storage, boolean isShareable) argument
H A DBitmapFactory.java312 * Temp storage to use for decoding. Suggest 16K or so.
594 * do a rewind as needed, and supplies temporary storage if necessary. is MUST NOT be null.
673 private static native Bitmap nativeDecodeStream(InputStream is, byte[] storage, argument
H A DPicture.java182 byte[] storage);
188 OutputStream stream, byte[] storage);
181 nativeCreateFromStream(InputStream stream, byte[] storage) argument
187 nativeWriteToStream(int nativePicture, OutputStream stream, byte[] storage) argument
/frameworks/base/media/jni/
H A Dandroid_mtp_MtpServer.cpp138 MtpStorage* storage = new MtpStorage(storageID, pathStr, descriptionStr, local
140 server->addStorage(storage);
159 MtpStorage* storage = server->getStorage(storageId); local
160 if (storage) {
161 server->removeStorage(storage);
162 delete storage;
/frameworks/ex/common/java/com/android/common/
H A DOperationScheduler.java27 * persistent storage and computes retry strategy accordingly. Handles
80 * @param storage to use for recording the state of operations across restarts/reboots
82 public OperationScheduler(SharedPreferences storage) { argument
83 mStorage = storage;

Completed in 7519 milliseconds

12