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

  /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...]
  /system/connectivity/shill/wimax/
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.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;
  /system/connectivity/shill/cellular/
cellular.cc 658 string storage_id = base::StringPrintf( local
661 service()->SetStorageIdentifier(storage_id);
    [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...]
  /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...]

Completed in 1264 milliseconds