Searched refs:intNode (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
H A DMOManager.java933 private static int getInteger(OMANode intNode, int dflt) throws OMAException { argument
934 if (intNode == null) {
937 return getInteger(intNode);
940 private static int getInteger(OMANode intNode) throws OMAException { argument
941 if (intNode == null) {
945 return Integer.parseInt(intNode.getValue());
947 throw new OMAException("Invalid integer: " + intNode.getValue());
962 private static Long getOptionalInteger(OMANode intNode) throws OMAException { argument
963 if (intNode == null) {
967 return Long.parseLong(intNode
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
H A DPasspointManagementObjectManager.java892 private static int getInteger(OMANode intNode, int dflt) throws OMAException { argument
893 if (intNode == null) {
896 return getInteger(intNode);
899 private static int getInteger(OMANode intNode) throws OMAException { argument
900 if (intNode == null) {
904 return Integer.parseInt(intNode.getValue());
906 throw new OMAException("Invalid integer: " + intNode.getValue());
921 private static Long getOptionalInteger(OMANode intNode) throws OMAException { argument
922 if (intNode == null) {
926 return Long.parseLong(intNode
[all...]

Completed in 88 milliseconds