Home
last modified time | relevance | path

Searched refs:cmdOutput (Results 1 – 7 of 7) sorted by relevance

/cts/hostsidetests/car/src/android/car/cts/powerpolicy/
DSystemInfoParser.java32 public T apply(String cmdOutput) { in apply() argument
36 Object ret = m.invoke(null, cmdOutput); in apply()
39 CLog.wtf("ERROR: Apply failed with " + cmdOutput, e.getTargetException()); in apply()
41 CLog.wtf("ERROR: Apply failed with " + cmdOutput, e); in apply()
DLocationInfo.java34 public static LocationInfo parse(String cmdOutput) throws Exception { in parse() argument
35 return new LocationInfo(Boolean.parseBoolean(cmdOutput.trim())); in parse()
DWifiInfo.java36 public static WifiInfo parse(String cmdOutput) throws Exception { in parse() argument
37 String[] lines = cmdOutput.split("\n"); in parse()
DSilentModeInfo.java77 public static SilentModeInfo parse(String cmdOutput) throws Exception { in parse() argument
79 String[] lines = cmdOutput.split("\n"); in parse()
DCpmsSystemLayerStateInfo.java117 public static CpmsSystemLayerStateInfo parse(String cmdOutput) throws Exception { in parse() argument
118 String[] lines = cmdOutput.split("\n"); in parse()
DCpmsFrameworkLayerStateInfo.java203 public static CpmsFrameworkLayerStateInfo parse(String cmdOutput) in parse() argument
221 String[] lines = cmdOutput.split("\n"); in parse()
/cts/tests/bugreport/src/android/bugreport/cts/
DBugreportManagerTest.java261 String cmdOutput; in assertThatFileisNotEmpty() local
263 cmdOutput = runShellCommand(mUiAutomation, "ls -l " + file); in assertThatFileisNotEmpty()
279 cmdOutput = new String(FileUtils.readInputStreamFully(inputStream)); in assertThatFileisNotEmpty()
283 String[] fileInfo = cmdOutput.split(" "); in assertThatFileisNotEmpty()