Lines Matching refs:getAttribute
109 ret.mcc_mnc = (apn_node.getAttribute('mcc') + apn_node.getAttribute('mnc'))
110 mvno_type = apn_node.getAttribute('mvno_type')
111 mvno_data = apn_node.getAttribute('mvno_match_data')
205 apn.name = node.getAttribute('carrier')
206 apn.value = node.getAttribute('apn')
207 apn.type.extend(map_apntype(node.getAttribute('type')))
210 setattr(apn, key, APN_PROTOCOL_MAP[node.getAttribute(key).lower()])
215 setattr(apn, 'bearer_bitmask', node.getAttribute(key))
218 setattr(apn, key, APN_SKIPXLAT_MAP[int(node.getAttribute(key))])
221 setattr(apn, key, node.getAttribute(key))
224 setattr(apn, APN_REMAP_KEYS[key], node.getAttribute(key))
227 setattr(apn, key, int(node.getAttribute(key)))
230 setattr(apn, key, BOOL_MAP[node.getAttribute(key).lower()])