Home
last modified time | relevance | path

Searched refs:total (Results 1 – 25 of 27) sorted by relevance

12

/tools/test/connectivity/tools/lab/
DREADME.md21 total: total space in 1k blocks (int)
22 used: total used in 1k blocks (int)
23 avail: total available in 1k blocks (int)
37 total: total physical RAM available in KB (int)
38 used: total RAM used by system in KB (int)
39 free: total RAM free for new process in KB (int)
40 buffers: total RAM buffered by different applications in KB
41 cached: total RAM for caching of data in KB
64 total: total number of offline, recovery, question or unauthorized devices
/tools/tradefederation/core/tests/res/testtype/
Dgtest_output4.txt7 [----------] 1 test from CommandLineFlagsTest (0 ms total)
14 [----------] 2 tests from GetTypeIdTest (0 ms total)
19 [----------] 1 test from GetTestTypeIdTest (0 ms total)
26 [----------] 2 tests from NullLiteralTest (1 ms total)
41 [----------] 6 tests from CodePointToUtf8Test (2 ms total)
58 [----------] 7 tests from WideStringToUtf8Test (2 ms total)
69 [----------] 4 tests from ListTest (2 ms total)
100 [----------] 14 tests from StringTest (10 ms total)
107 [----------] 2 tests from TestPropertyTest (1 ms total)
114 [----------] 2 tests from ScopedFakeTestPartResultReporterTest (4 ms total)
[all …]
Dgtest_output6.txt6 [----------] 1 test from BarDeathTest (2 ms total)
17 [----------] 2 tests from FooTest (2 ms total)
34 [----------] 7 tests from MyParamSequence/MyParamTest (5 ms total)
37 [==========] 10 tests from 3 test cases ran. (10 ms total)
Dgtest_output1.txt21 [----------] 8 tests from TestPartResultTest (2 ms total)
30 [----------] 3 tests from TestPartResultArrayTest (1 ms total)
33 [==========] 11 tests from 2 test cases ran. (3 ms total)
Dgtest_output7.txt22 [----------] 8 tests from TestPartResultTest (2 ms total)
31 [----------] 3 tests from TestPartResultArrayTest (1 ms total)
34 [==========] 11 tests from 2 test cases ran. (3 ms total)
Dgtest_output5.txt6 [----------] 1 test from BarDeathTest (0 ms total)
17 [----------] 2 tests from FooTest (1 ms total)
46 [----------] 10 tests from MyParamSequence/MyParamTest (4 ms total)
49 [==========] 13 tests from 3 test cases ran. (8 ms total)
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/util/
DRamDisk.java61 int total = 0; in readGzipped() local
64 total += read; in readGzipped()
69 if (total < DEFAULT_SECTOR_SIZE) throw new IOException( in readGzipped()
70 "read only " + total + " bytes"); //NOI18N in readGzipped()
72 final ByteBuffer bb = ByteBuffer.wrap(bos.toByteArray(), 0, total); in readGzipped()
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
DJarHostTestTest.java152 int total = 0; in testGetTestShard_withJar() local
158 total += ((HostTest) shard1).countTestCases(); in testGetTestShard_withJar()
165 total += ((HostTest) shard2).countTestCases(); in testGetTestShard_withJar()
172 total += ((HostTest) shard3).countTestCases(); in testGetTestShard_withJar()
179 total += ((HostTest) shard4).countTestCases(); in testGetTestShard_withJar()
186 total += ((HostTest) shard5).countTestCases(); in testGetTestShard_withJar()
188 assertEquals(238, total); in testGetTestShard_withJar()
/tools/test/connectivity/acts/tests/google/wifi/
DWifiRttManagerTest.py256 total = aborted = failure = invalid = out_of_range = 0
265 total += 1
317 (len(events), aborted, failure, total, invalid,
319 asserts.assert_true(total > 0, "No RTT response received.")
321 valid_total = float(total - invalid)
322 valid_response_rate = valid_total / total
329 valid_value_rate = (total - invalid - out_of_range) / valid_total
352 total = self.stress_num
355 for i in range(total):
/tools/loganalysis/src/com/android/loganalysis/item/
DTopItem.java168 public void setTotal(int total) { in setTotal() argument
169 setAttribute(TOTAL, total); in setTotal()
/tools/dexter/testdata/expected/
Dexit_hooks.regs_usage18 Histogram: Method extra registers (total - parameters) [max_count=3]
Dhello.regs_usage17 Histogram: Method extra registers (total - parameters) [max_count=4]
Dlarge.regs_usage101 Histogram: Method extra registers (total - parameters) [max_count=11132]
Dentry_hooks.regs_usage21 Histogram: Method extra registers (total - parameters) [max_count=4]
Dmedium.regs_usage76 Histogram: Method extra registers (total - parameters) [max_count=1098]
Dhello_nodebug.regs_usage16 Histogram: Method extra registers (total - parameters) [max_count=4]
Dtry_catch.regs_usage12 Histogram: Method extra registers (total - parameters) [max_count=3]
Dmin.regs_usage10 Histogram: Method extra registers (total - parameters) [max_count=1]
/tools/tradefederation/core/tests/src/com/android/tradefed/result/
DCollectingTestListenerTest.java241 int total = mCollectingTestListener.getNumTotalTests(); in testGetNumTotalTests() local
242 assertEquals(2, total); in testGetNumTotalTests()
244 total = mCollectingTestListener.getNumTotalTests(); in testGetNumTotalTests()
245 assertEquals(3, total); in testGetNumTotalTests()
/tools/tradefederation/core/prod-tests/src/com/android/build/tests/
DImageStats.java243 long total = 0; in performAggregation() local
247 total += stat.getValue(); in performAggregation()
282 ret.put(LABEL_TOTAL, Long.toString(total)); in performAggregation()
283 ret.put(LABEL_CATEGORIZED, Long.toString(total - uncategorized)); in performAggregation()
/tools/tradefederation/core/src/com/android/tradefed/result/
DCollectingTestListener.java261 int total = 0; in getNumTotalTests() local
265 total += mStatusCounts[s.ordinal()]; in getNumTotalTests()
267 return total; in getNumTotalTests()
/tools/tradefederation/core/prod-tests/src/com/android/wireless/tests/
DWifiStressTest.java316 int total = Integer.parseInt(capture.get(0).get(1)); in parseOutputFile() local
318 if (total != 0) { in parseOutputFile()
319 quality = (100 * count) / total; in parseOutputFile()
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
DCentralDirectory.java436 int total = 0; in computeByteRepresentation() local
445 total += F_OFFSET.endOffset() + encodedFileNames[idx].length in computeByteRepresentation()
450 ByteBuffer out = ByteBuffer.allocate(total); in computeByteRepresentation()
/tools/tradefederation/core/res/jacoco/
Djacocoant.jar ... .tools.ant.types.Resource resource int total org.jacoco.core.instr.Instrumenter instrumenter ...
/tools/test/connectivity/acts/framework/acts/test_utils/bt/
Dbluetooth.proto131 // Buffer overruns total.

12