Searched defs:storage_id (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/ui/views/focus/
H A Dview_storage.cc32 void ViewStorage::StoreView(int storage_id, View* view) { argument
34 std::map<int, View*>::iterator iter = id_to_view_.find(storage_id);
38 RemoveView(storage_id);
41 id_to_view_[storage_id] = view;
52 ids->push_back(storage_id);
55 View* ViewStorage::RetrieveView(int storage_id) { argument
56 std::map<int, View*>::iterator iter = id_to_view_.find(storage_id);
62 void ViewStorage::RemoveView(int storage_id) { argument
63 EraseView(storage_id, false);
81 void ViewStorage::EraseView(int storage_id, boo argument
[all...]
/external/chromium_org/components/storage_monitor/
H A Dmedia_transfer_protocol_device_observer_linux.cc46 const std::string storage_id = local
48 if (storage_id.empty())
58 storage_info.volume_identifier() + ":" + storage_id);
H A Dportable_device_watcher_win.cc245 // |storage_id|. On success, returns true and fills in |device_storage_id|.
247 const base::string16& storage_id,
249 if (device_serial_num.empty() && storage_id.empty())
255 base::UTF16ToUTF8(storage_id + L':' + device_serial_num));
625 const std::string& storage_id = storage_iter->object_persistent_id; local
626 DCHECK(!ContainsKey(storage_map_, storage_id));
630 MediaStorageUtil::RecordDeviceInfoHistogram(false, storage_id, name);
631 if (storage_id.empty() || name.empty())
638 StorageInfo info(storage_id, location, base::string16(), base::string16(),
640 storage_map_[storage_id]
246 ConstructDeviceStorageUniqueId(const base::string16& device_serial_num, const base::string16& storage_id, std::string* device_storage_id) argument
660 std::string storage_id = storage_object_iter->object_persistent_id; local
[all...]
/external/chromium_org/ui/views/
H A Dview_unittest.cc3660 const int storage_id = view_storage->CreateStorageID(); local
3663 view_storage->StoreView(storage_id, &view);
3665 EXPECT_TRUE(view_storage->RetrieveView(storage_id) == NULL);
H A Dview.cc2230 int storage_id = 0; local
2234 storage_id = view_storage->CreateStorageID();
2235 view_storage->StoreView(storage_id, this);
2250 if (storage_id != 0)
2251 CHECK_EQ(this, ViewStorage::GetInstance()->RetrieveView(storage_id));
/external/libmtp/src/
H A Dlibmtp.c2333 file->storage_id = ob->oi.StorageID;
3827 new->storage_id = 0;
3885 * arrange files into folders, you must dereference the <code>storage_id</code>
3941 file->storage_id = ob->oi.StorageID;
4081 file->storage_id = ob->oi.StorageID;
4171 new->storage_id = 0;
4437 * arrange tracks into folders, you must dereference the <code>storage_id</code>
4505 track->storage_id = ob->oi.StorageID;
4613 track->storage_id = ob->oi.StorageID;
4998 * or <code>metadata-&gt;storage_id</cod
6764 LIBMTP_Create_Folder(LIBMTP_mtpdevice_t *device, char *name, uint32_t parent_id, uint32_t storage_id) argument
[all...]
H A Dlibmtp.h614 uint32_t storage_id; /**< ID of storage holding this file */ member in struct:LIBMTP_file_struct
628 uint32_t storage_id; /**< ID of storage holding this track */ member in struct:LIBMTP_track_struct
657 uint32_t storage_id; /**< ID of storage holding this playlist */ member in struct:LIBMTP_playlist_struct
670 uint32_t storage_id; /**< ID of storage holding this album */ member in struct:LIBMTP_album_struct
686 uint32_t storage_id; /**< ID of storage holding this folder */ member in struct:LIBMTP_folder_struct

Completed in 4324 milliseconds