HomeSort by relevance Sort by last modified time
    Searched full:storageid (Results 1 - 25 of 43) sorted by null

1 2

  /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);
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheResource.h 54 void setStorageID(unsigned storageID) { m_storageID = storageID; }
55 unsigned storageID() const { return m_storageID; }
ApplicationCacheStorage.cpp 62 void add(T* resource, unsigned storageID)
64 m_records.append(Record(resource, storageID));
76 Record(T* resource, unsigned storageID) : m_resource(resource), m_storageID(storageID) { }
339 ASSERT(!group->storageID());
349 if (!group->storageID())
492 int64_t excludingCacheIdentifier = cache ? cache->storageID() : 0;
671 ASSERT(group->storageID() == 0);
697 ASSERT(cache->storageID() == 0);
698 ASSERT(cache->group()->storageID() != 0)
    [all...]
ApplicationCache.h 89 void setStorageID(unsigned storageID) { m_storageID = storageID; }
90 unsigned storageID() const { return m_storageID; }
ApplicationCacheGroup.h 75 void setStorageID(unsigned storageID) { m_storageID = storageID; }
76 unsigned storageID() const { return m_storageID; }
ApplicationCacheStorage.h 105 PassRefPtr<ApplicationCache> loadCache(unsigned 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...]
  /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);
  /external/webkit/Source/WebCore/inspector/front-end/
DOMStorage.js 85 updateDOMStorage: function(storageId)
87 WebInspector.panels.resources.updateDOMStorage(storageId);
  /frameworks/av/media/mtp/
MtpDatabase.h 48 virtual MtpObjectHandleList* getObjectList(MtpStorageID storageID,
52 virtual int getNumObjects(MtpStorageID storageID,
MtpDevice.h 82 MtpStorageInfo* getStorageInfo(MtpStorageID storageID);
83 MtpObjectHandleList* getObjectHandles(MtpStorageID storageID, MtpObjectFormat format,
MtpServer.cpp 547 MtpStorageID storageID = mRequest.getParameter(1); // 0xFFFFFFFF for all storage
552 if (!hasStorage(storageID))
555 MtpObjectHandleList* handles = mDatabase->getObjectList(storageID, format, parent);
564 MtpStorageID storageID = mRequest.getParameter(1); // 0xFFFFFFFF for all storage
568 if (!hasStorage(storageID))
571 int count = mDatabase->getNumObjects(storageID, format, parent);
818 MtpStorageID storageID = mRequest.getParameter(1);
819 MtpStorage* storage = getStorage(storageID);
881 ALOGD("path: %s parent: %d storageID: %08X", (const char*)path, parent, storageID);
    [all...]
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;
  /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);
  /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);
android_mtp_MtpDevice.cpp 187 android_mtp_MtpDevice_get_storage_info(JNIEnv *env, jobject thiz, jint storageID)
192 MtpStorageInfo* storageInfo = device->getStorageInfo(storageID);
222 jint storageID, jint format, jint objectID)
227 MtpObjectHandleList* handles = device->getObjectHandles(storageID, format, objectID);
  /external/libmtp/examples/
sendtr.c 164 int sendtrack_function(char * from_path, char * to_path, char *partist, char *palbumartist, char *ptitle, char *pgenre, char *palbum, char *pcomposer, uint16_t tracknum, uint16_t length, uint16_t year, uint32_t storageid)
333 if (pds->id == storageid)
341 printf("Storage ID: %s (%u)\n", desc, storageid);
345 printf("Storage ID: %u\n", storageid);
346 trackmeta->storage_id = storageid;
387 uint32_t storageid = 0; local
415 storageid = (uint32_t) strtoul(optarg, NULL, 0);
441 printf("%s,%s,%s,%s,%s,%s,%s,%s,%d%d,%d,%u\n",argv[0],argv[1],partist,palbumartist,ptitle,pgenre,palbum,pcomposer,tracknum, length, year, storageid);
442 sendtrack_function(argv[0],argv[1],partist,palbumartist,ptitle,pgenre,palbum,pcomposer, tracknum, length, year, storageid);
  /external/libmtp/src/
ptp-pack.c 471 htod32a(&oidata[PTP_oi_StorageID],oi->StorageID);
572 oi->StorageID=dtoh32a(&data[PTP_oi_StorageID]);
1833 uint32_t storageid; local
    [all...]
ptp.h 734 uint32_t StorageID;
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSInjectedScriptHostCustom.cpp 136 JSValue JSInjectedScriptHost::storageId(ExecState* exec)

Completed in 671 milliseconds

1 2