Lines Matching refs:apex_info
55 void InitializeWithApex(Namespace& ns, const ApexInfo& apex_info) { in InitializeWithApex() argument
56 ns.AddSearchPath(apex_info.path + "/${LIB}"); in InitializeWithApex()
57 if (apex_info.InVendor()) { in InitializeWithApex()
58 ns.AddSearchPath(apex_info.path + "/${LIB}/hw"); in InitializeWithApex()
59 ns.AddSearchPath(apex_info.path + "/${LIB}/egl"); in InitializeWithApex()
61 ns.AddPermittedPath(apex_info.path + "/${LIB}"); in InitializeWithApex()
64 for (const auto& permitted_path : apex_info.permitted_paths) { in InitializeWithApex()
67 if (apex_info.has_shared_lib) { in InitializeWithApex()
70 ns.AddProvides(apex_info.provide_libs); in InitializeWithApex()
71 ns.AddRequires(apex_info.require_libs); in InitializeWithApex()
72 ns.SetApexSource(apex_info.name); in InitializeWithApex()