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

  /external/chromium_org/ui/views/focus/
view_storage.h 37 // Associates |view| with the specified |storage_id|.
38 void StoreView(int storage_id, View* view);
40 // Returns the view associated with |storage_id| if any, NULL otherwise.
41 View* RetrieveView(int storage_id);
43 // Removes the view associated with |storage_id| if any.
44 void RemoveView(int storage_id);
57 // Removes the view associated with |storage_id|. If |remove_all_ids| is true,
59 void EraseView(int storage_id, bool remove_all_ids);
view_storage.cc 32 void ViewStorage::StoreView(int storage_id, View* view) {
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) {
56 std::map<int, View*>::iterator iter = id_to_view_.find(storage_id);
62 void ViewStorage::RemoveView(int storage_id) {
63 EraseView(storage_id, false);
81 void ViewStorage::EraseView(int storage_id, bool remove_all_ids)
    [all...]
  /external/chromium_org/components/storage_monitor/
portable_device_watcher_win.cc 245 // |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] = info
660 std::string storage_id = storage_object_iter->object_persistent_id; local
    [all...]
media_transfer_protocol_device_observer_linux.cc 46 const std::string storage_id = local
48 if (storage_id.empty())
58 storage_info.volume_identifier() + ":" + storage_id);
  /external/libmtp/examples/
files.c 45 printf(" Storage ID: 0x%08X\n", file->storage_id);
newplaylist.c 94 playlist->storage_id = 0;
sendfile.c 78 genfile->storage_id = 0;
albumart.c 137 album->storage_id = 0;
sendtr.c 60 fprintf(stderr, " -d <duration in seconds> -s <storage_id> <local path> <remote path>\n");
147 albuminfo->storage_id = trackmeta->storage_id;
346 trackmeta->storage_id = storageid;
  /external/libmtp/src/
libmtp.h 614 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
    [all...]
libmtp.h.in 612 uint32_t storage_id; /**< ID of storage holding this file */
626 uint32_t storage_id; /**< ID of storage holding this track */
655 uint32_t storage_id; /**< ID of storage holding this playlist */
668 uint32_t storage_id; /**< ID of storage holding this album */
684 uint32_t storage_id; /**< ID of storage holding this folder */
libmtp.c     [all...]
playlist-spl.c 128 pl->storage_id = oi->StorageID;
223 f->storage_id = pl->storage_id;
  /external/chromium_org/ui/views/
view.cc 2285 int storage_id = 0; local
    [all...]
view_unittest.cc 3927 const int storage_id = view_storage->CreateStorageID(); local
    [all...]

Completed in 212 milliseconds