If you run the data() command with a name in quotes, you will cause that particular data set to be loaded. For example
data("faithful")
If you run the data() function with no arguments, like this
data()
you will get a list of all data sets in the loaded packages. I think that is what you are after.