/system/connectivity/shill/vpn/ |
vpn_provider.cc | 140 string storage_id = VPNService::CreateStorageIdentifier(args, error); local 141 if (storage_id.empty()) { 148 service = CreateService(type, name, storage_id, error); 234 const string& storage_id, 237 << " storage id " << storage_id; local 269 service->set_storage_id(storage_id); 281 const string& storage_id, 283 VPNServiceRefPtr service = CreateServiceInner(type, name, storage_id, error); 315 string storage_id = VPNService::CreateStorageIdentifier(args, error); local 316 if (storage_id.empty()) [all...] |
mock_vpn_driver.h | 39 const std::string& storage_id)); 41 const std::string& storage_id,
|
vpn_driver.cc | 63 bool VPNDriver::Load(StoreInterface* storage, const string& storage_id) { 74 if (storage->GetStringList(storage_id, property, &value)) { 82 storage->GetCryptedString(storage_id, property, &value) : 83 storage->GetString(storage_id, property, &value); 95 const string& storage_id, 108 storage->DeleteKey(storage_id, property); 112 storage->SetStringList(storage_id, property, value); 116 storage->DeleteKey(storage_id, property); 121 storage->SetCryptedString(storage_id, property, value); 123 storage->SetString(storage_id, property, value) [all...] |
vpn_provider.h | 86 // Create a service of type |type| and storage identifier |storage_id| 92 const std::string& storage_id, 99 const std::string& storage_id,
|
vpn_driver.h | 55 virtual bool Load(StoreInterface* storage, const std::string& storage_id); 57 const std::string& storage_id,
|
third_party_vpn_driver.cc | 117 const std::string& storage_id) { 118 bool return_value = VPNDriver::Load(storage, storage_id); 120 storage->GetString(storage_id, kObjectPathSuffixProperty, 128 const std::string& storage_id, 130 bool return_value = VPNDriver::Save(storage, storage_id, save_credentials); 131 storage->SetString(storage_id, kObjectPathSuffixProperty,
|
third_party_vpn_driver.h | 82 bool Load(StoreInterface* storage, const std::string& storage_id) override; 83 bool Save(StoreInterface* storage, const std::string& storage_id,
|
vpn_provider_unittest.cc | 252 MATCHER_P(ServiceWithStorageId, storage_id, "") { 253 return arg->GetStorageIdentifier() == storage_id;
|
/system/connectivity/shill/wimax/ |
wimax_provider.cc | 237 string storage_id = WiMaxService::CreateStorageIdentifier(id, name); local 238 WiMaxServiceRefPtr service = FindService(storage_id); 277 for (const auto& storage_id : storage->GetGroupsWithProperties(args)) { 281 storage_id, 287 if (FindService(storage_id)) { 293 LOG(ERROR) << "Could not configure service: " << storage_id; 418 WiMaxServiceRefPtr WiMaxProvider::FindService(const string& storage_id) const { 419 SLOG(this, 2) << __func__ << "(" << storage_id << ")"; local 421 services_.find(storage_id); 426 LOG_IF(ERROR, storage_id != service->GetStorageIdentifier()) 433 string storage_id = WiMaxService::CreateStorageIdentifier(id, name); local [all...] |
wimax_service.cc | 303 string storage_id = base::ToLowerASCII( local 306 replace_if(storage_id.begin(), storage_id.end(), &Service::IllegalChar, '_'); 307 return storage_id;
|
wimax_service_unittest.cc | 235 string storage_id = service_->GetStorageIdentifier(); local 236 EXPECT_CALL(storage, SetString(storage_id, _, _)) 238 EXPECT_CALL(storage, DeleteKey(storage_id, _)).WillRepeatedly(Return(true)); 239 EXPECT_CALL(storage, SetString(storage_id,
|
wimax_provider.h | 120 // Finds and returns the service identified by |storage_id|. Returns nullptr 122 WiMaxServiceRefPtr FindService(const std::string& storage_id) const;
|
/system/connectivity/shill/ |
static_ip_parameters.h | 45 // Load static IP parameters from a persistent store with id |storage_id|. 46 void Load(StoreInterface* storage, const std::string& storage_id); 48 // Save static IP parameters to a persistent store with id |storage_id|. 49 void Save(StoreInterface* storage, const std::string& storage_id);
|
static_ip_parameters.cc | 151 StoreInterface* storage, const string& storage_id) { 159 if (storage->GetInt(storage_id, name, &value)) { 169 if (storage->GetString(storage_id, name, &value)) { 181 if (storage->GetString(storage_id, name, &value)) { 198 StoreInterface* storage, const string& storage_id) { 207 storage->SetInt(storage_id, name, args_.GetInt(property.name)); 213 storage->SetString(storage_id, name, args_.GetString(property.name)); 222 storage_id, name, 231 storage->DeleteKey(storage_id, name);
|
/external/libmtp/examples/ |
newplaylist.c | 94 playlist->storage_id = 0;
|
sendfile.c | 78 genfile->storage_id = 0;
|
albumart.c | 137 album->storage_id = 0;
|
files.c | 45 printf(" Storage ID: 0x%08X\n", file->storage_id);
|
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...] |
/system/connectivity/shill/wifi/ |
wifi_service_unittest.cc | 282 const string kStorageId = "storage_id"; 930 const string storage_id = service->GetStorageIdentifier(); local 951 const string storage_id = service->GetStorageIdentifier(); local 1264 const string storage_id = service->GetStorageIdentifier(); local 1279 const string storage_id = service->GetStorageIdentifier(); local [all...] |
/frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/ |
MtpDatabaseConstants.java | 65 static final String COLUMN_STORAGE_ID = "storage_id";
|
/frameworks/base/media/java/android/mtp/ |
MtpPropertyGroup.java | 95 column = Files.FileColumns.STORAGE_ID; 136 column = Files.FileColumns.STORAGE_ID;
|