Searched refs:storage (Results 1 - 25 of 83) sorted by relevance

1234

/frameworks/base/core/java/android/os/storage/
H A DStorageVolume.aidl17 package 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 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 DOnObbStateChangeListener.java17 package android.os.storage;
/frameworks/base/core/jni/android/graphics/
H A DCreateJavaOutputStreamAdaptor.h9 jbyteArray storage, int markSize = 0);
11 jbyteArray storage);
H A DCreateJavaOutputStreamAdaptor.cpp146 jbyteArray storage, int markSize) {
177 return new JavaInputStreamAdaptor(env, stream, storage);
187 SkJavaOutputStream(JNIEnv* env, jobject stream, jbyteArray storage) argument
188 : fEnv(env), fJavaOutputStream(stream), fJavaByteArray(storage) {
189 fCapacity = env->GetArrayLength(storage);
194 jbyteArray storage = fJavaByteArray; local
202 env->SetByteArrayRegion(storage, 0, requested,
212 storage, 0, requested);
238 jbyteArray storage) {
255 return new SkJavaOutputStream(env, stream, storage);
145 CreateJavaInputStreamAdaptor(JNIEnv* env, jobject stream, jbyteArray storage, int markSize) argument
237 CreateJavaOutputStreamAdaptor(JNIEnv* env, jobject stream, jbyteArray storage) argument
[all...]
H A DNinePatch.cpp73 void* storage = alloca(chunkSize); local
75 reinterpret_cast<jbyte*>(storage));
78 Res_png_9patch* chunk = static_cast<Res_png_9patch*>(storage);
154 void* storage = alloca(chunkSize); local
156 reinterpret_cast<jbyte*>(storage));
159 Res_png_9patch* chunk = static_cast<Res_png_9patch*>(storage);
/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
H A DMtpStorage.java20 import android.os.storage.StorageVolume;
23 * This class represents a storage unit on an MTP device.
48 * Returns the storage ID for the storage unit
50 * @return the storage ID
57 * Generates a storage ID for storage of given index.
58 * Index 0 is for primary external storage
60 * @return the storage ID
63 // storage I
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_container.h58 storage_t storage; member in struct:__anon806
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...]
H A DH264SwDecApi.c157 rv = h264bsdInit(&pDecCont->storage, noOutputReordering);
213 pStorage = &(((decContainer_t *)decInst)->storage);
295 h264bsdShutdown(&pDecCont->storage);
385 pDecCont->storage.intraConcealmentFlag = pInput->intraConcealmentMethod;
397 decResult = h264bsdDecode(&pDecCont->storage, tmpStream, strmLen,
413 if(pDecCont->storage.dpb->flushed &&
414 pDecCont->storage.dpb->numOut !=
415 pDecCont->storage.dpb->outIndex)
419 pDecCont->storage.dpb->flushed = 0;
443 if ( !h264bsdCheckValidParamSets(&pDecCont->storage)
[all...]
/frameworks/base/core/tests/coretests/src/android/os/storage/
H A DStorageListener.java17 package android.os.storage;
/frameworks/base/core/java/android/webkit/
H A DViewStateSerializer.java77 OutputStream out, byte[] storage);
80 OutputStream stream, byte[] storage);
84 InputStream stream, byte[] storage);
76 nativeDumpLayerHierarchy(int baseLayer, int level, OutputStream out, byte[] storage) argument
79 nativeSerializeViewState(int baseLayer, OutputStream stream, byte[] storage) argument
83 nativeDeserializeViewState(int version, InputStream stream, byte[] storage) argument
/frameworks/base/core/jni/
H A Dandroid_view_HardwareRenderer.cpp111 jint* storage = env->GetIntArrayElements(size, NULL); local
114 storage[0] = value;
117 storage[1] = value;
119 env->ReleaseIntArrayElements(size, storage, 0);
/frameworks/base/libs/storage/
H A DIMountShutdownObserver.cpp17 #include <storage/IMountShutdownObserver.h>
H A DIMountServiceListener.cpp17 #include <storage/IMountServiceListener.h>
H A DIObbActionListener.cpp17 #include <storage/IObbActionListener.h>
/frameworks/base/include/storage/
H A DIMountService.h20 #include <storage/IMountServiceListener.h>
21 #include <storage/IMountShutdownObserver.h>
22 #include <storage/IObbActionListener.h>
/frameworks/base/graphics/java/android/graphics/
H A DPicture.java162 byte[] storage);
168 OutputStream stream, byte[] storage);
161 nativeCreateFromStream(InputStream stream, byte[] storage) argument
167 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/av/media/mtp/
H A DMtpServer.cpp117 void MtpServer::addStorage(MtpStorage* storage) { argument
120 mStorages.push(storage);
121 sendStoreAdded(storage->getStorageID());
124 void MtpServer::removeStorage(MtpStorage* storage) { argument
128 if (mStorages[i] == storage) {
130 sendStoreRemoved(storage->getStorageID());
140 MtpStorage* storage = mStorages[i]; local
141 if (storage->getStorageID() == id)
142 return storage;
517 MtpStorage* storage local
819 MtpStorage* storage = getStorage(storageID); local
[all...]
/frameworks/av/media/libstagefright/
H A DMetaData.cpp234 memcpy(storage(), from.storage(), mSize);
243 memcpy(storage(), from.storage(), mSize);
261 memcpy(storage(), data, size);
268 *data = storage();
293 const void *data = storage();
/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...]

Completed in 483 milliseconds

1234