Lines Matching refs:map
262 Map<String, byte[]> map = getPkeyMap(); in installOthers() local
263 byte[] privatekey = map.get(key); in installOthers()
266 map.remove(key); in installOthers()
267 savePkeyMap(map); in installOthers()
293 Map<String, byte[]> map = getPkeyMap(); in saveKeyPair() local
294 map.put(key, privatekey); in saveKeyPair()
295 savePkeyMap(map); in saveKeyPair()
296 Log.d(TAG, "save privatekey: " + key + " --> #keys:" + map.size()); in saveKeyPair()
299 private void savePkeyMap(Map<String, byte[]> map) { in savePkeyMap() argument
300 if (map.isEmpty()) { in savePkeyMap()
306 byte[] bytes = Util.toBytes(map); in savePkeyMap()
315 Map<String, byte[]> map = in getPkeyMap() local
317 if (map != null) return map; in getPkeyMap()