Searched refs:properties_values (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/chrome/browser/media_galleries/win/
H A Dmtp_device_operations_util.cc86 // Returns whether the object is a directory/folder/album. |properties_values|
88 bool IsDirectory(IPortableDeviceValues* properties_values) { argument
89 DCHECK(properties_values);
91 HRESULT hr = properties_values->GetGuidValue(WPD_OBJECT_CONTENT_TYPE,
105 // Returns the name of the object from |properties_values|. If the object has
107 base::string16 GetObjectName(IPortableDeviceValues* properties_values) { argument
108 DCHECK(properties_values);
111 HRESULT hr = properties_values->GetStringValue(WPD_OBJECT_ORIGINAL_FILE_NAME,
114 hr = properties_values->GetStringValue(WPD_OBJECT_NAME, &buffer);
121 // specified by the |properties_values|
123 GetLastModifiedTime(IPortableDeviceValues* properties_values, base::Time* last_modified_time) argument
153 GetObjectSize(IPortableDeviceValues* properties_values) argument
[all...]
/external/chromium_org/components/storage_monitor/
H A Dportable_device_watcher_win.cc195 bool GetStringPropertyValue(IPortableDeviceValues* properties_values, argument
198 DCHECK(properties_values);
201 HRESULT hr = properties_values->GetStringValue(key, &buffer);
233 base::win::ScopedComPtr<IPortableDeviceValues> properties_values;
236 properties_values.Receive()))) {
241 return GetStringPropertyValue(properties_values.get(), key, unique_id);

Completed in 3879 milliseconds