Home
last modified time | relevance | path

Searched refs:version_str (Results 1 – 10 of 10) sorted by relevance

/test/vts/drivers/hal/replayer/
DVtsHidlHalReplayer.cpp62 string version_str = GetVersionString(msg.version()); in ListTestServices() local
63 version_major = GetVersionMajor(version_str); in ListTestServices()
64 version_minor = GetVersionMinor(version_str); in ListTestServices()
123 string version_str = std::to_string(call_msg.version()); in ReplayTrace() local
124 version_major = GetVersionMajor(version_str); in ReplayTrace()
125 version_minor = GetVersionMinor(version_str); in ReplayTrace()
/test/vts/utils/native/libprofiling/
DVtsProfilingInterface.cpp112 std::string version_str = std::string(version); in AddTraceEvent() local
113 int version_major = stoi(version_str.substr(0, version_str.find('.'))); in AddTraceEvent()
114 int version_minor = stoi(version_str.substr(version_str.find('.') + 1)); in AddTraceEvent()
/test/vts/compilation_tools/vtsc/test/golden/PROFILER/
DNfcClientCallback.profiler.cpp22 std::string version_str = std::string(version); in HIDL_INSTRUMENTATION_FUNCTION_android_hardware_nfc_V1_0_INfcClientCallback() local
23 int major_version = stoi(version_str.substr(0, version_str.find('.'))); in HIDL_INSTRUMENTATION_FUNCTION_android_hardware_nfc_V1_0_INfcClientCallback()
24 int minor_version = stoi(version_str.substr(version_str.find('.') + 1)); in HIDL_INSTRUMENTATION_FUNCTION_android_hardware_nfc_V1_0_INfcClientCallback()
DMemoryTest.profiler.cpp25 std::string version_str = std::string(version); in HIDL_INSTRUMENTATION_FUNCTION_android_hardware_tests_memory_V1_0_IMemoryTest() local
26 int major_version = stoi(version_str.substr(0, version_str.find('.'))); in HIDL_INSTRUMENTATION_FUNCTION_android_hardware_tests_memory_V1_0_IMemoryTest()
27 int minor_version = stoi(version_str.substr(version_str.find('.') + 1)); in HIDL_INSTRUMENTATION_FUNCTION_android_hardware_tests_memory_V1_0_IMemoryTest()
DNfc.profiler.cpp22 std::string version_str = std::string(version); in HIDL_INSTRUMENTATION_FUNCTION_android_hardware_nfc_V1_0_INfc() local
23 int major_version = stoi(version_str.substr(0, version_str.find('.'))); in HIDL_INSTRUMENTATION_FUNCTION_android_hardware_nfc_V1_0_INfc()
24 int minor_version = stoi(version_str.substr(version_str.find('.') + 1)); in HIDL_INSTRUMENTATION_FUNCTION_android_hardware_nfc_V1_0_INfc()
DTestMsgQ.profiler.cpp30 std::string version_str = std::string(version); in HIDL_INSTRUMENTATION_FUNCTION_android_hardware_tests_msgq_V1_0_ITestMsgQ() local
31 int major_version = stoi(version_str.substr(0, version_str.find('.'))); in HIDL_INSTRUMENTATION_FUNCTION_android_hardware_tests_msgq_V1_0_ITestMsgQ()
32 int minor_version = stoi(version_str.substr(version_str.find('.') + 1)); in HIDL_INSTRUMENTATION_FUNCTION_android_hardware_tests_msgq_V1_0_ITestMsgQ()
DBar.profiler.cpp33 std::string version_str = std::string(version); in HIDL_INSTRUMENTATION_FUNCTION_android_hardware_tests_bar_V1_0_IBar() local
34 int major_version = stoi(version_str.substr(0, version_str.find('.'))); in HIDL_INSTRUMENTATION_FUNCTION_android_hardware_tests_bar_V1_0_IBar()
35 int minor_version = stoi(version_str.substr(version_str.find('.') + 1)); in HIDL_INSTRUMENTATION_FUNCTION_android_hardware_tests_bar_V1_0_IBar()
/test/vts/drivers/hal/common/driver_manager/
DVtsHalDriverManager.cpp500 string version_str = GetVersion(type_name); in PreprocessHidlHalFunctionCallArgs() local
501 int version_major = GetVersionMajor(version_str, true); in PreprocessHidlHalFunctionCallArgs()
502 int version_minor = GetVersionMinor(version_str, true); in PreprocessHidlHalFunctionCallArgs()
641 string version_str = GetVersion(type_name); in SetHidlHalFunctionCallResults() local
642 int version_major = GetVersionMajor(version_str, true); in SetHidlHalFunctionCallResults()
643 int version_minor = GetVersionMinor(version_str, true); in SetHidlHalFunctionCallResults()
/test/vts/drivers/hal/common/utils/
DInterfaceSpecUtil.cpp145 string version_str = str.substr(0, str.find("::")); in GetVersion() local
146 return version_str; in GetVersion()
/test/vts/runners/host/tcp_client/
Dvts_tcp_client.py609 [package, version_str] = imported_interface.split("@")
611 version_minor] = (version_str.split("::")[0]).split(".")