Lines Matching full:version
4 # Licensed under the Apache License, Version 2.0 (the "License");
73 """Loads the name of the data directory for devices with no VNDK version.
87 logging.error("Cannot load default VNDK version.")
91 def GetAbiDumpDirectory(data_file_path, version, binder_bitness, abi_name, argument
97 version: A string, the VNDK version.
104 None if there is no directory for the version and ABI.
112 version_dir = (version if version else
149 def GetAbiDumpPathsFromResources(version, binder_bitness, abi_name, abi_bitness): argument
153 version: A string, the VNDK version.
161 If there is no dump for the version and ABI, this function returns an
177 dump_dir = "/".join((version, str(binder_bitness), arch_name,
235 def LoadVndkLibraryLists(data_file_path, version, *tags): argument
240 version: A string, the VNDK version.
247 None if the spreadsheet for the version is not found.
249 version_dir = (version if version else
275 def LoadVndkLibraryListsFromResources(version, *tags): argument
279 version: A string, the VNDK version.
286 None if the VNDK list for the version is not found.
292 version_str = (version if version and re.match("\\d+", version) else