/Renode-v1.15.3-c57714d/src/Renode/PlatformDescription/UserInterface/ |
D | PlatformDescriptionMachineExtensions.cs | 37 if(Path.IsPathRooted(argument)) in Resolve() 39 … return Path.GetFullPath(argument); // No existence check, but resolve "a/../b" and the like in Resolve() 43 … var components = argument.Split(Path.DirectorySeparatorChar, Path.AltDirectorySeparatorChar); in Resolve() 47 var includingFileDirectory = Path.GetDirectoryName(includingFile); in Resolve() 48 var relativePath = Path.Combine(includingFileDirectory, argument); in Resolve() 49 … return Path.GetFullPath(relativePath); // No existence check, the path was resolved in Resolve() 54 var fullPath = Path.GetFullPath(Path.Combine(prefix, argument)); in Resolve()
|
/Renode-v1.15.3-c57714d/src/Renode/PlatformDescription/ |
D | UsingsGraph.cs | 52 …var filePath = Path.GetFullPath(creationDriver.usingResolver.Resolve(usingEntry.Path, currentFile.… in TraverseDepthFirst() 55 … creationDriver.HandleError(ParsingError.UsingFileNotFound, usingEntry.Path, in TraverseDepthFirst() 56 … string.Format("Using '{0}' resolved as '{1}' does not exist.", usingEntry.Path, filePath), true); in TraverseDepthFirst() 73 if(fileCurrentlyProcessed[node.FileId] || node.Path == currentFile.Path) in TraverseDepthFirst() 135 if(!used.Add(usingEntry.Prefix + usingEntry.Path)) in ValidateDescriptionUsings() 146 Path = path; in GraphNode() 166 public string Path { get; } property in Antmicro.Renode.PlatformDescription.CreationDriver.UsingsGraph.GraphNode
|
D | CreationDriver.cs | 61 …usingsBeingProcessed.Push(Path.GetFullPath(path)); // don't need to pop since stack is cleared wit… in ProcessFile()
|
/Renode-v1.15.3-c57714d/src/Renode/PlatformDescription/Syntax/ |
D | UsingEntry.cs | 18 Path = path; in UsingEntry() 24 return new[] { Path }; in Visit() 27 public StringWithPosition Path { get; private set; } property in Antmicro.Renode.PlatformDescription.Syntax.UsingEntry
|
/Renode-v1.15.3-c57714d/tests/unit-tests/ |
D | file-paths.robot | 11 ${path}= Join Path ${TEMPDIR} robot-${dirname} 30 ${file_path}= Join Path ${SUITE_TEMPDIR} ${repl_filename} 42 ${base_file}= Join Path ${SUITE_TEMPDIR} file 48 ${next_file}= Join Path ${SUITE_TEMPDIR} file.1 54 ${base_file}= Join Path ${SUITE_TEMPDIR} logfile 58 ${next_file}= Join Path ${SUITE_TEMPDIR} logfile.1
|
/Renode-v1.15.3-c57714d/tools/gdb_compare/ |
D | README.md | 29 Path to the '.resc' script 37 Path to ELF file with symbols 39 Path to the Renode runscript 41 Path to the GDB binary to be run
|
/Renode-v1.15.3-c57714d/tools/building/ |
D | createAssemblyInfo.ps1 | 14 Set-Content -Path "$FILE_NAME.cs"
|
/Renode-v1.15.3-c57714d/src/Renode/ |
D | Program.cs | 99 var localConfig = Path.Combine(rootDir, "renode.config"); in ConfigureEnvironment() 106 … ConfigurationManager.Initialize(configFile ?? Path.Combine(Emulator.UserDirectoryPath, "config")); in ConfigureEnvironment()
|
/Renode-v1.15.3-c57714d/tools/guest_cache/src/ |
D | renode_cache_interface.py | 12 from pathlib import Path 20 def __init__(self, file: Path): argument 107 def save_results(self, filename: Path) -> None: argument
|
/Renode-v1.15.3-c57714d/tools/external_control_client/ |
D | CMakeLists.txt | 12 set(APP_SOURCES_DIR "" CACHE PATH "Path to the directory with Renode API client application sources…
|
/Renode-v1.15.3-c57714d/tools/tlib_helper/ |
D | gdbscript.py | 13 from pathlib import Path 55 start_path = Path(cmdline[1]) 58 start_path = Path(f'/proc/{inferior.pid}/exe').resolve() 60 path = Path(start_path)
|
/Renode-v1.15.3-c57714d/tests/tools/ |
D | execution_tracer_reader.robot | 75 ${path_fragments}= Split Path ${temporary_file} 76 ${new_path}= Join Path ${path_fragments}[0] ${filename}
|
/Renode-v1.15.3-c57714d/tests/unit-tests/RenodeTests/PlatformDescription/ |
D | ParserTests.cs | 41 var usingEntries = result.Value.Usings.Select(x => x.Path.Value); in ShouldParseUsingEntry() 428 Assert.AreEqual("file1", usings[0].Path.Value); in ShouldHandlePrefixedUsing() 429 Assert.AreEqual("file2", usings[1].Path.Value); in ShouldHandlePrefixedUsing() 490 Assert.AreEqual("other_file", usingEntry.Path.Value); in ShouldParseUsingAndEntry()
|
/Renode-v1.15.3-c57714d/tests/peripherals/ |
D | VirtIO.robot | 26 ${DIR} ${FILE_NAME}= Split Path ${TEMP_DRIVE} 30 ${DIR} ${FILE_NAME}= Split Path ${TEMP_FS}
|
/Renode-v1.15.3-c57714d/src/Renode/Network/NetworkServer/Modules/ |
D | TftpServerModule.cs | 61 name = name ?? Path.GetFileName(path); in ServeFile()
|
/Renode-v1.15.3-c57714d/src/Renode/RobotFrameworkEngine/ |
D | RenodeKeywords.cs | 379 cachedLogFilePath = Path.Combine( in EnableLoggingToCache()
|
/Renode-v1.15.3-c57714d/tests/ |
D | renode-keywords.robot | 101 ${metrics_path}= Join Path ${RESULTS_DIRECTORY} profiler-${metrics_fname}
|
/Renode-v1.15.3-c57714d/tools/PeakRDL-renode/tests/ |
D | SystemRDLGenTest.cs | 59 … var adhocPath = Path.Join(Assembly.GetExecutingAssembly().Location, "../../../../", meta.File); in LoadAssembly()
|