Searched refs:mTxtRecord (Results 1 – 2 of 2) sorted by relevance
46 private final ArrayMap<String, byte[]> mTxtRecord = new ArrayMap<String, byte[]>(); field in NsdServiceInfo224 mTxtRecord.put(key, value); in setAttribute()249 mTxtRecord.remove(key); in removeAttribute()259 return Collections.unmodifiableMap(mTxtRecord); in getAttributes()264 for (Map.Entry<String, byte[]> entry : mTxtRecord.entrySet()) { in getTxtRecordSize()282 for (Map.Entry<String, byte[]> entry : mTxtRecord.entrySet()) { in getTxtRecord()341 dest.writeInt(mTxtRecord.size()); in writeToParcel()342 for (String key : mTxtRecord.keySet()) { in writeToParcel()343 byte[] value = mTxtRecord.get(key); in writeToParcel()380 info.mTxtRecord.put(in.readString(), valueArray);
70 private final HashMap<String, String> mTxtRecord = new HashMap<String, String>(); field in WifiP2pDnsSdServiceResponse124 return mTxtRecord; in getTxtRecord()136 for (String key : mTxtRecord.keySet()) { in toString()137 sbuf.append(" key:").append(key).append(" value:").append(mTxtRecord.get(key)); in toString()276 mTxtRecord.put(keyVal[0], keyVal[1]); in readTxtData()