Home | History | Annotate | Download | only in cellular

Lines Matching full:path

37                            const string& path,
41 path_(path),
68 bool ModemManager::ModemExists(const std::string& path) const {
70 if (ContainsKey(modems_, path)) {
71 LOG(INFO) << "ModemExists: " << path << " already exists.";
79 modems_[modem->path()] = modem;
82 void ModemManager::RemoveModem(const string& path) {
83 LOG(INFO) << "Remove modem: " << path;
85 modems_.erase(path);
98 const string& path,
100 : ModemManager(control_interface, service, path, modem_info) {}
112 path(),
136 void ModemManagerClassic::AddModemClassic(const string& path) {
137 if (ModemExists(path)) {
141 path,
159 control_interface()->CreateDBusPropertiesProxy(modem->path(),
167 void ModemManagerClassic::OnDeviceAdded(const string& path) {
168 AddModemClassic(path);
171 void ModemManagerClassic::OnDeviceRemoved(const string& path) {
172 RemoveModem(path);