Lines Matching refs:RPath
173 StringRef RPath = getPayloadString(LC); in processLoadCommands() local
174 if (RPathsToRemove.count(RPath)) { in processLoadCommands()
175 RPathsToRemove.erase(RPath); in processLoadCommands()
187 for (StringRef RPath : MachOConfig.RPathsToRemove) { in processLoadCommands() local
188 if (RPathsToRemove.count(RPath)) in processLoadCommands()
191 RPath.str().c_str()); in processLoadCommands()
225 StringRef RPath = getPayloadString(LC); in processLoadCommands() local
226 StringRef NewRPath = MachOConfig.RPathsToUpdate.lookup(RPath); in processLoadCommands()
247 for (StringRef RPath : MachOConfig.RPathToAdd) { in processLoadCommands() local
248 if (RPaths.contains(RPath)) in processLoadCommands()
250 "rpath '" + RPath + in processLoadCommands()
252 RPaths.insert(RPath); in processLoadCommands()
253 Obj.LoadCommands.push_back(buildRPathLoadCommand(RPath)); in processLoadCommands()
256 for (StringRef RPath : MachOConfig.RPathToPrepend) { in processLoadCommands() local
257 if (RPaths.contains(RPath)) in processLoadCommands()
259 "rpath '" + RPath + in processLoadCommands()
262 RPaths.insert(RPath); in processLoadCommands()
264 buildRPathLoadCommand(RPath)); in processLoadCommands()