Home | History | Annotate | Download | only in nfc

Lines Matching refs:object_path

28 NfcPeerChromeOS::NfcPeerChromeOS(const dbus::ObjectPath& object_path)
29 : object_path_(object_path),
109 void NfcPeerChromeOS::RecordAdded(const dbus::ObjectPath& object_path) {
113 VLOG(1) << "Record added: " << object_path.value() << ". Waiting until "
117 void NfcPeerChromeOS::RecordRemoved(const dbus::ObjectPath& object_path) {
118 NdefRecordMap::iterator iter = records_.find(object_path);
121 VLOG(1) << "Lost remote NDEF record object: " << object_path.value()
130 const dbus::ObjectPath& object_path) {
131 VLOG(1) << "Record properties received for: " << object_path.value();
140 if (*iter == object_path) {
146 VLOG(1) << "Record \"" << object_path.value() << "\" doesn't belong to this"
151 AddRecord(object_path);
166 void NfcPeerChromeOS::AddRecord(const dbus::ObjectPath& object_path) {
168 if (records_.find(object_path) != records_.end()) {
169 VLOG(1) << "Record object for remote \"" << object_path.value()
176 GetProperties(object_path);
183 << "path \"" << object_path.value() << "\"";
189 records_[object_path] = record;