/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/chrome/browser/storage_monitor/ |
portable_device_watcher_win.cc | 243 // |storage_id|. On success, returns true and fills in |device_storage_id|. 245 const base::string16& storage_id, 247 if (device_serial_num.empty() && storage_id.empty()) 253 UTF16ToUTF8(storage_id + L':' + device_serial_num)); 622 const std::string& storage_id = storage_iter->object_persistent_id; local 623 DCHECK(!ContainsKey(storage_map_, storage_id)); 627 MediaStorageUtil::RecordDeviceInfoHistogram(false, storage_id, name); 628 if (storage_id.empty() || name.empty()) 635 StorageInfo info(storage_id, storage_name, location, 637 storage_map_[storage_id] = info 657 std::string storage_id = storage_object_iter->object_persistent_id; local [all...] |
media_transfer_protocol_device_observer_linux.cc | 44 const std::string storage_id = local 46 if (storage_id.empty()) 56 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;
|