HomeSort by relevance Sort by last modified time
    Searched refs:storageId (Results 1 - 23 of 23) sorted by null

  /external/webkit/Source/WebCore/inspector/
InspectorDOMStorageAgent.h 62 void getDOMStorageEntries(ErrorString*, int storageId, RefPtr<InspectorArray>* entries);
63 void setDOMStorageItem(ErrorString*, int storageId, const String& key, const String& value, bool* success);
64 void removeDOMStorageItem(ErrorString*, int storageId, const String& key, bool* success);
67 int storageId(Storage*);
75 InspectorDOMStorageResource* getDOMStorageResourceForId(int storageId);
InspectorDOMStorageAgent.cpp 82 void InspectorDOMStorageAgent::getDOMStorageEntries(ErrorString*, int storageId, RefPtr<InspectorArray>* entries)
84 InspectorDOMStorageResource* storageResource = getDOMStorageResourceForId(storageId);
99 void InspectorDOMStorageAgent::setDOMStorageItem(ErrorString*, int storageId, const String& key, const String& value, bool* success)
101 InspectorDOMStorageResource* storageResource = getDOMStorageResourceForId(storageId);
109 void InspectorDOMStorageAgent::removeDOMStorageItem(ErrorString*, int storageId, const String& key, bool* success)
111 InspectorDOMStorageResource* storageResource = getDOMStorageResourceForId(storageId);
118 int InspectorDOMStorageAgent::storageId(Storage* storage)
132 InspectorDOMStorageResource* InspectorDOMStorageAgent::getDOMStorageResourceForId(int storageId)
134 DOMStorageResourcesMap::iterator it = m_resources.find(storageId);
InjectedScriptHost.idl 44 [Custom] int storageId(in DOMObject storage);
InjectedScriptHost.cpp 158 return m_domStorageAgent->storageId(storage);
InjectedScriptSource.js 84 var storageId = InjectedScriptHost.storageId(object)
85 if (storageId)
86 hints.domStorageId = storageId;
  /frameworks/base/media/java/android/mtp/
MtpDevice.java 135 * @param storageId the storage unit to query
140 public int[] getObjectHandles(int storageId, int format, int objectHandle) {
141 return native_get_object_handles(storageId, format, objectHandle);
175 * @param storageId the ID of the storage unit
178 public MtpStorageInfo getStorageInfo(int storageId) {
179 return native_get_storage_info(storageId);
246 private native MtpStorageInfo native_get_storage_info(int storageId);
247 private native int[] native_get_object_handles(int storageId, int format, int objectHandle);
MtpServer.java 68 private native final void native_remove_storage(int storageId);
MtpDatabase.java 260 int storageId, long size, long modified) {
288 values.put(Files.FileColumns.STORAGE_ID, storageId);
340 private Cursor createObjectQuery(int storageID, int format, int parent) throws RemoteException {
344 if (storageID == 0xFFFFFFFF) {
383 whereArgs = new String[] { Integer.toString(storageID) };
390 whereArgs = new String[] { Integer.toString(storageID),
398 whereArgs = new String[] { Integer.toString(storageID),
406 whereArgs = new String[] { Integer.toString(storageID),
439 private int[] getObjectList(int storageID, int format, int parent) {
442 c = createObjectQuery(storageID, format, parent)
    [all...]
  /frameworks/base/core/java/android/os/storage/
StorageVolume.java 59 boolean emulated, int mtpReserveSpace, int storageId,
67 mStorageId = storageId;
193 int storageId = in.readInt();
199 storageId, allowMassStorage == 1, maxFileSize);
  /external/webkit/Source/WebCore/inspector/front-end/
DOMStorage.js 85 updateDOMStorage: function(storageId)
87 WebInspector.panels.resources.updateDOMStorage(storageId);
ResourcesPanel.js 335 selectDOMStorage: function(storageId)
337 var domStorage = this._domStorageForId(storageId);
638 updateDOMStorage: function(storageId)
640 var domStorage = this._domStorageForId(storageId);
668 _domStorageForId: function(storageId)
675 if (domStorage.id == storageId)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
MtpDevice.java 78 private void collectJpegChildren(int storageId, int objectId,
82 queryChildren(storageId, objectId, result, dirChildren);
86 collectJpegChildren(storageId, info.getObjectHandle(), result);
90 private void queryChildren(int storageId, int objectId,
93 mDeviceName, storageId, objectId);
MtpClient.java 359 * @param storageId the ID of the storage unit to query, or zero for all
363 public List<MtpObjectInfo> getObjectList(String deviceName, int storageId, int objectHandle) {
372 int[] handles = device.getObjectHandles(storageId, 0, objectHandle);
  /external/webkit/Source/WebCore/bindings/js/
JSInjectedScriptHostCustom.cpp 136 JSValue JSInjectedScriptHost::storageId(ExecState* exec)
  /frameworks/base/media/jni/
android_mtp_MtpServer.cpp 127 jint storageID = env->GetIntField(jstorage, field_MtpStorage_storageId);
138 MtpStorage* storage = new MtpStorage(storageID, pathStr, descriptionStr,
153 android_mtp_MtpServer_remove_storage(JNIEnv *env, jobject thiz, jint storageId)
159 MtpStorage* storage = server->getStorage(storageId);
  /frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
MtpClient.java 337 * @param storageId the ID of the storage unit to query, or zero for all
341 public List<MtpObjectInfo> getObjectList(String deviceName, int storageId, int objectHandle) {
350 int[] handles = device.getObjectHandles(storageId, 0, objectHandle);
  /frameworks/av/media/mtp/
MtpDevice.cpp 337 MtpStorageInfo* MtpDevice::getStorageInfo(MtpStorageID storageID) {
341 mRequest.setParameter(1, storageID);
348 MtpStorageInfo* info = new MtpStorageInfo(storageID);
355 MtpObjectHandleList* MtpDevice::getObjectHandles(MtpStorageID storageID,
360 mRequest.setParameter(1, storageID);
513 MtpObjectHandle storageId = info->mStorageID;
515 return storageId;
  /external/libmtp/src/
libmtp.h 847 uint32_t storageId, uint32_t parentId);
    [all...]
libmtp.c 113 uint32_t storageid,
160 uint32_t const storageid,
    [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaProvider.java     [all...]
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 247 milliseconds