Lines Matching refs:RPath
162 StringRef RPath = getPayloadString(LC); in processLoadCommands() local
163 if (RPathsToRemove.count(RPath)) { in processLoadCommands()
164 RPathsToRemove.erase(RPath); in processLoadCommands()
176 for (StringRef RPath : MachOConfig.RPathsToRemove) { in processLoadCommands() local
177 if (RPathsToRemove.count(RPath)) in processLoadCommands()
180 RPath.str().c_str()); in processLoadCommands()
214 StringRef RPath = getPayloadString(LC); in processLoadCommands() local
215 StringRef NewRPath = MachOConfig.RPathsToUpdate.lookup(RPath); in processLoadCommands()
236 for (StringRef RPath : MachOConfig.RPathToAdd) { in processLoadCommands() local
237 if (RPaths.contains(RPath)) in processLoadCommands()
239 "rpath '" + RPath + in processLoadCommands()
241 RPaths.insert(RPath); in processLoadCommands()
242 Obj.LoadCommands.push_back(buildRPathLoadCommand(RPath)); in processLoadCommands()
245 for (StringRef RPath : MachOConfig.RPathToPrepend) { in processLoadCommands() local
246 if (RPaths.contains(RPath)) in processLoadCommands()
248 "rpath '" + RPath + in processLoadCommands()
251 RPaths.insert(RPath); in processLoadCommands()
253 buildRPathLoadCommand(RPath)); in processLoadCommands()