HomeSort by relevance Sort by last modified time
    Searched refs:storageId (Results 1 - 21 of 21) 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 179 int storageId, long size, long modified) {
204 values.put(Files.FileColumns.STORAGE_ID, storageId);
256 private Cursor createObjectQuery(int storageID, int format, int parent) throws RemoteException {
257 if (storageID == 0xFFFFFFFF) {
292 new String[] { Integer.toString(storageID) }, null);
299 new String[] { Integer.toString(storageID), Integer.toString(parent) },
306 new String[] { Integer.toString(storageID), Integer.toString(format) },
314 new String[] { Integer.toString(storageID),
322 private int[] getObjectList(int storageID, int format, int parent) {
325 c = createObjectQuery(storageID, format, parent)
    [all...]
  /frameworks/base/core/java/android/os/storage/
StorageVolume.java 58 boolean emulated, int mtpReserveSpace, int storageId,
66 mStorageId = storageId;
188 int storageId = in.readInt();
194 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 362 * @param storageId the ID of the storage unit to query, or zero for all
366 public List<MtpObjectInfo> getObjectList(String deviceName, int storageId, int objectHandle) {
375 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);
  /packages/providers/MediaProvider/src/com/android/providers/media/
MtpService.java 165 int storageId = MtpStorage.getStorageId(i);
MediaProvider.java     [all...]
  /frameworks/base/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;
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/14/
android.jar 

Completed in 1064 milliseconds