Home
last modified time | relevance | path

Searched refs:SystemPropsItem (Results 1 – 5 of 5) sorted by relevance

/tools/loganalysis/tests/src/com/android/loganalysis/item/
DSystemPropsItemTest.java32 SystemPropsItem item = new SystemPropsItem(); in testToJson()
40 assertTrue(output.has(SystemPropsItem.LINES)); in testToJson()
41 assertTrue(output.get(SystemPropsItem.LINES) instanceof JSONObject); in testToJson()
42 assertTrue(output.has(SystemPropsItem.TEXT)); in testToJson()
43 assertEquals("[foo]: [123]\n[bar]: [456]", output.get(SystemPropsItem.TEXT)); in testToJson()
45 JSONObject lines = output.getJSONObject(SystemPropsItem.LINES); in testToJson()
/tools/loganalysis/src/com/android/loganalysis/parser/
DSystemPropsParser.java18 import com.android.loganalysis.item.SystemPropsItem;
38 public SystemPropsItem parse(List<String> lines) { in parse()
44 SystemPropsItem item = new SystemPropsItem(); in parse()
DBugreportParser.java30 import com.android.loganalysis.item.SystemPropsItem;
208 mBugreport.setSystemProps((SystemPropsItem) getSection(mSystemPropsParser)); in commit()
/tools/loganalysis/src/com/android/loganalysis/item/
DBugreportItem.java181 public SystemPropsItem getSystemProps() { in getSystemProps()
182 return (SystemPropsItem) getAttribute(SYSTEM_PROPS); in getSystemProps()
188 public void setSystemProps(SystemPropsItem systemProps) { in setSystemProps()
DSystemPropsItem.java25 public class SystemPropsItem extends GenericMapItem<String> { class