Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/soap/command/
DSppCommand.java58 private static final Map<String, Integer> sCommands = new HashMap<>(); field in SppCommand
60 sCommands.put("exec", CommandId.EXEC);
61 sCommands.put("addMO", CommandId.ADD_MO);
62 sCommands.put("updateNode", CommandId.UPDATE_NODE);
63 sCommands.put("noMOUpdate", CommandId.NO_MO_UPDATE);
85 if (!sCommands.containsKey(soapResponse.getName())) { in SppCommand()
88 mSppCommandId = sCommands.get(soapResponse.getName()); in SppCommand()
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
DDicttool.java70 static HashMap<String, Class<? extends Command>> sCommands = new HashMap<>(); field in Dicttool
77 sCommands.put(commandName, cls); in addCommand()
82 return sCommands.get(commandName).newInstance(); in getCommandInstance()
92 for (final String commandName : sCommands.keySet()) { in help()
100 return sCommands.containsKey(commandName); in isCommand()