Home
last modified time | relevance | path

Searched refs:CMD_TO_STR (Results 1 – 2 of 2) sorted by relevance

/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/
H A DIkeSessionStateMachine.java343 private static final SparseArray<String> CMD_TO_STR; field in IkeSessionStateMachine
346 CMD_TO_STR = new SparseArray<>();
347 CMD_TO_STR.put(CMD_RECEIVE_IKE_PACKET, "Rcv packet"); in CMD_TO_STR.put()
354 CMD_TO_STR.put(CMD_RETRANSMIT, "Retransmit"); in CMD_TO_STR.put()
355 CMD_TO_STR.put(CMD_EAP_START_EAP_AUTH, "Start EAP"); in CMD_TO_STR.put()
357 CMD_TO_STR.put(CMD_EAP_ERRORED, "EAP errored"); in CMD_TO_STR.put()
358 CMD_TO_STR.put(CMD_EAP_FAILED, "EAP failed"); in CMD_TO_STR.put()
360 CMD_TO_STR.put(CMD_ALARM_FIRED, "Alarm Fired"); in CMD_TO_STR.put()
365 CMD_TO_STR.put(CMD_LOCAL_REQUEST_INFO, "Info"); in CMD_TO_STR.put()
366 CMD_TO_STR.put(CMD_LOCAL_REQUEST_DPD, "DPD"); in CMD_TO_STR.put()
[all …]
H A DChildSessionStateMachine.java149 private static final SparseArray<String> CMD_TO_STR; field in ChildSessionStateMachine
152 CMD_TO_STR = new SparseArray<>();
153 CMD_TO_STR.put(CMD_HANDLE_FIRST_CHILD_EXCHANGE, "Handle First Child"); in CMD_TO_STR.put()
154 CMD_TO_STR.put(CMD_HANDLE_RECEIVED_REQUEST, "Rcv request"); in CMD_TO_STR.put()
155 CMD_TO_STR.put(CMD_HANDLE_RECEIVED_RESPONSE, "Rcv response"); in CMD_TO_STR.put()
156 CMD_TO_STR.put(CMD_KILL_SESSION, "Kill session"); in CMD_TO_STR.put()
689 return CMD_TO_STR.get(cmd); in getCmdString()