Home | History | Annotate | Download | only in phone

Lines Matching refs:itemID

2269      * @param itemID the ID of the item to read
2273 public String nvReadItem(int itemID) {
2275 if (DBG) log("nvReadItem: item " + itemID);
2276 String value = (String) sendRequest(CMD_NV_READ_ITEM, itemID);
2277 if (DBG) log("nvReadItem: item " + itemID + " is \"" + value + '"');
2285 * @param itemID the ID of the item to read
2290 public boolean nvWriteItem(int itemID, String itemValue) {
2292 if (DBG) log("nvWriteItem: item " + itemID + " value \"" + itemValue + '"');
2294 new Pair<Integer, String>(itemID, itemValue));
2295 if (DBG) log("nvWriteItem: item " + itemID + ' ' + (success ? "ok" : "fail"));