Lines Matching full:paths
40 """Test that we can load a module by providing a set of search paths."""
50 self, "Break here to do the load using paths", lldb.SBFileSpec("main.cpp")
54 paths = lldb.SBStringList()
55 paths.AppendString(self.wd)
56 paths.AppendString(os.path.join(self.wd, "no_such_dir"))
61 token = process.LoadImageUsingPaths(lib_spec, paths, out_spec, error)
73 # Now add the correct dir to the paths list and try again:
74 paths.AppendString(self.hidden_dir)
75 token = process.LoadImageUsingPaths(lib_spec, paths, out_spec, error)
109 paths.Clear()
110 paths.AppendString(os.path.join(self.wd, "no_such_dir"))
111 paths.AppendString(self.wd)
115 token = process.LoadImageUsingPaths(relative_spec, paths, out_spec, error)
129 paths.Clear()
130 paths.AppendString("")
131 paths.AppendString(os.path.join(self.wd, "no_such_dir"))
132 paths.AppendString(self.wd)
136 token = process.LoadImageUsingPaths(relative_spec, paths, out_spec, error)
152 # This should NOT work because we've taken hidden_dir off the paths:
155 token = process.LoadImageUsingPaths(lib_spec, paths, out_spec, error)
161 # Now add the correct dir to the paths list and try again:
162 paths.AppendString(self.hidden_dir)
163 token = process.LoadImageUsingPaths(lib_spec, paths, out_spec, error)