OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PROCESSES
(Results
1 - 5
of
5
) sorted by null
/cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
DeviceInfoConstants.java
28
public static final String
PROCESSES
= "
processes
";
DeviceInfoInstrument.java
122
//
processes
123
String
processes
= getProcesses();
local
124
addResult(
PROCESSES
,
processes
);
271
* Return a semi-colon-delimited list of the root
processes
that were running on the phone
283
Log.e(TAG, "Error getting
processes
: " + exception.getMessage(), exception);
/cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/result/
DeviceInfoResultTest.java
64
addMetric(DeviceInfoConstants.
PROCESSES
, processString, serializedInfo);
68
DeviceInfoConstants.
PROCESSES
));
91
addMetric(DeviceInfoConstants.
PROCESSES
, "proc", info);
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
DeviceInfoResult.java
85
String processData = getMetric(metricsCopy, DeviceInfoConstants.
PROCESSES
);
154
* Prints XML data indicating what particular
processes
of interest were running on the device.
210
// store
processes
into metrics map, in the same format as when collected from
212
mMetrics.put(DeviceInfoConstants.
PROCESSES
, parseProcess(parser));
/cts/tools/host/src/com/android/cts/
TestDevice.java
815
* Get
processes
.
817
* @return
Processes
.
820
return mInfoMap.get(
PROCESSES
);
[
all
...]
Completed in 228 milliseconds