/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 | 261 int storageId, long size, long modified) { 289 values.put(Files.FileColumns.STORAGE_ID, storageId); 342 private Cursor createObjectQuery(int storageID, int format, int parent) throws RemoteException { 346 if (storageID == 0xFFFFFFFF) { 385 whereArgs = new String[] { Integer.toString(storageID) }; 392 whereArgs = new String[] { Integer.toString(storageID), 400 whereArgs = new String[] { Integer.toString(storageID), 408 whereArgs = new String[] { Integer.toString(storageID), 442 private int[] getObjectList(int storageID, int format, int parent) { 445 c = createObjectQuery(storageID, format, parent) [all...] |
/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...] |
/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/apps/Gallery2/src/com/android/gallery3d/data/ |
MtpClient.java | 363 * @param storageId the ID of the storage unit to query, or zero for all 367 public List<MtpObjectInfo> getObjectList(String deviceName, int storageId, int objectHandle) { 376 int[] handles = device.getObjectHandles(storageId, 0, objectHandle);
|
/packages/apps/Gallery2/src/com/android/gallery3d/ingest/ |
MtpDeviceIndex.java | 485 for (int storageId : mDevice.getStorageIds()) { 492 for (int objectHandle : mDevice.getObjectHandles(storageId, 0, dirHandle)) {
|
/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 | 848 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...] |
/external/robolectric/lib/main/ |
h2-1.2.147.jar | |
/prebuilts/sdk/12/ |
android.jar | |
/prebuilts/sdk/14/ |
android.jar | |
/prebuilts/sdk/17/ |
android.jar | |