Home
last modified time | relevance | path

Searched refs:start (Results 1 – 25 of 53) sorted by relevance

123

/test/vts/drivers/resource/hidl_memory_driver/
DVtsHidlMemoryDriver.cpp86 bool VtsHidlMemoryDriver::UpdateRange(MemoryId mem_id, uint64_t start, in UpdateRange() argument
90 (mem_info->memory)->updateRange(start, length); in UpdateRange()
101 bool VtsHidlMemoryDriver::ReadRange(MemoryId mem_id, uint64_t start, in ReadRange() argument
105 (mem_info->memory)->readRange(start, length); in ReadRange()
110 uint64_t length, uint64_t start) { in UpdateBytes() argument
115 memcpy(memory_char_ptr + start, write_data, length); in UpdateBytes()
120 uint64_t length, uint64_t start) { in ReadBytes() argument
125 memcpy(read_data, memory_char_ptr + start, length); in ReadBytes()
/test/vts/utils/python/mirror/
Dresource_mirror.py446 def readRange(self, start, length): argument
463 request_msg.start = start
494 def updateRange(self, start, length): argument
511 request_msg.start = start
522 def readBytes(self, length, start=0): argument
540 request_msg.start = start
551 def updateBytes(self, data, length, start=0): argument
571 request_msg.start = start
/test/mlts/benchmark/src/com/android/nn/crashtest/core/test/
DPerformanceDegradationTest.java172 final CountDownLatch start = new CountDownLatch(totalThreadCount); in testDegradationForModels() local
174 () -> new ModelCompiler(start, mContext, mAcceleratorName, in testDegradationForModels()
180 modelPerformanceCollector(inferenceModelEntry, start); in testDegradationForModels()
227 final TestModels.TestModelEntry inferenceModelEntry, final CountDownLatch start) { in modelPerformanceCollector() argument
232 if (start != null) { in modelPerformanceCollector()
233 start.countDown(); in modelPerformanceCollector()
234 start.await(); in modelPerformanceCollector()
251 ModelCompiler(final CountDownLatch start, final Context context,
253 mStart = start;
/test/vts/drivers/resource/include/hidl_memory_driver/
DVtsHidlMemoryDriver.h108 bool UpdateRange(MemoryId mem_id, uint64_t start, uint64_t length);
125 bool ReadRange(MemoryId mem_id, uint64_t start, uint64_t length);
137 uint64_t start = 0);
150 uint64_t start = 0);
/test/vts/testcases/host/kernel_proc_file_api_test/
Dproc_utils.py90 start = time.time()
94 if time.time() - start >= timeout:
122 start = time.time()
123 while (time.time() - start) <= timeout:
171 _timer.start()
Dtarget_file_utils.py45 start = groupIndex
48 start = 0
51 for i in range(start, end):
/test/vts/drivers/hal/libcodecoverage/
DGcdaFile.cpp60 if (base - gcov_var_.start <= gcov_var_.length) { in Sync()
61 gcov_var_.offset = base - gcov_var_.start; in Sync()
65 gcov_var_.start = ftell(gcov_var_.file) >> 2; in Sync()
108 gcov_var_.start += gcov_var_.offset; in ReadWords()
159 gcov_var_.start += size; in WriteBlock()
DGcdaFile.h70 return gcov_var_.start + gcov_var_.offset; in Position()
/test/vts/utils/python/file/
Dtarget_file_utils.py173 start = groupIndex
176 start = 0
179 for i in range(start, end):
/test/vts/utils/python/controllers/
Dandroid_device_test.py39 self.dut.start()
51 self.dut.start()
Dandroid_device.py859 start = time.time()
868 if time.time() - start >= timeout:
964 def start(self, start_native_server=True): member in AndroidDevice
1008 start = time.time()
1015 if time.time() - start >= timeout_secs:
1063 start = time.time()
1065 if time.time() - start >= timeout_secs:
/test/vts/tools/vts-core-tradefed/src/com/android/tradefed/util/
DTargetFileUtils.java103 int start = groupIndex; in hasPermission() local
106 start = 0; in hasPermission()
110 for (int i = start; i < end; i++) { in hasPermission()
/test/vts/testcases/host/kernel_proc_file_api_test/proc_tests/
DProcUidConcurrentTimeTests.py29 start = 'uid_active_time_table' variable in ProcUidConcurrentActiveTimeTest
70 start = 'uid_policy_time_table' variable in ProcUidConcurrentPolicyTimeTest
DProcUidIoStatsTest.py28 start = 'lines' variable in ProcUidIoStatsTest
DProcVmstatTest.py26 start = 'lines' variable in ProcVmstat
DProcMiscTest.py28 start = 'drivers' variable in ProcMisc
DProcShowUidStatTest.py27 start = 'lines' variable in ProcShowUidStatTest
DProcUidTimeInStateTest.py28 start = 'uid_time_table' variable in ProcUidTimeInStateTest
DProcAsoundTests.py34 start = 'soundcards' variable in ProcAsoundCardsTest
DProcStatTest.py24 start = 'stat' variable in ProcStatTest
DProcCpuFileTests.py34 start = 'lines' variable in ProcCpuInfoTest
/test/vts/drivers/resource/resource_manager/
DVtsResourceManager.cpp182 uint64_t start = hidl_memory_request.start(); in ProcessHidlMemoryCommand() local
199 success = hidl_memory_driver_.ReadRange(mem_id, start, length); in ProcessHidlMemoryCommand()
207 success = hidl_memory_driver_.UpdateRange(mem_id, start, length); in ProcessHidlMemoryCommand()
212 length, start); in ProcessHidlMemoryCommand()
217 success = hidl_memory_driver_.ReadBytes(mem_id, read_data, length, start); in ProcessHidlMemoryCommand()
/test/vts-testcase/security/system_property/
Dvts_treble_sys_prop_test.py57 start = groupIndex
60 start = 0
63 for i in range(start, end):
/test/app_compat/csuite/harness/src/main/java/com/android/compatibility/testtype/
DAppLaunchTest.java168 long start = System.currentTimeMillis(); in run() local
171 mLogcat.start(); in run()
181 System.currentTimeMillis() - start, new HashMap<String, Metric>()); in run()
/test/vts-testcase/security/avb/
DVtsSecurityAvbTest.cpp877 size_t start = str.find_first_not_of(whitespaces, *pos); in NextWord() local
878 if (start == std::string::npos) { in NextWord()
879 return start; in NextWord()
881 *pos = str.find_first_of(whitespaces, start); in NextWord()
885 return start; in NextWord()

123