Searched refs:version_str (Results 1 – 10 of 10) sorted by relevance
/test/vts/drivers/hal/replayer/ |
D | VtsHidlHalReplayer.cpp | 62 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/ |
D | VtsProfilingInterface.cpp | 112 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/ |
D | NfcClientCallback.profiler.cpp | 22 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()
|
D | MemoryTest.profiler.cpp | 25 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()
|
D | Nfc.profiler.cpp | 22 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()
|
D | TestMsgQ.profiler.cpp | 30 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()
|
D | Bar.profiler.cpp | 33 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/ |
D | VtsHalDriverManager.cpp | 500 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/ |
D | InterfaceSpecUtil.cpp | 145 string version_str = str.substr(0, str.find("::")); in GetVersion() local 146 return version_str; in GetVersion()
|
/test/vts/runners/host/tcp_client/ |
D | vts_tcp_client.py | 609 [package, version_str] = imported_interface.split("@") 611 version_minor] = (version_str.split("::")[0]).split(".")
|