Home
last modified time | relevance | path

Searched refs:Path (Results 1 – 18 of 18) sorted by relevance

/Renode-v1.15.3-c57714d/src/Renode/PlatformDescription/UserInterface/
DPlatformDescriptionMachineExtensions.cs37 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/
DUsingsGraph.cs52 …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
DCreationDriver.cs61 …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/
DUsingEntry.cs18 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/
Dfile-paths.robot11 ${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/
DREADME.md29 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/
DcreateAssemblyInfo.ps114 Set-Content -Path "$FILE_NAME.cs"
/Renode-v1.15.3-c57714d/src/Renode/
DProgram.cs99 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/
Drenode_cache_interface.py12 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/
DCMakeLists.txt12 set(APP_SOURCES_DIR "" CACHE PATH "Path to the directory with Renode API client application sources…
/Renode-v1.15.3-c57714d/tools/tlib_helper/
Dgdbscript.py13 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/
Dexecution_tracer_reader.robot75 ${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/
DParserTests.cs41 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/
DVirtIO.robot26 ${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/
DTftpServerModule.cs61 name = name ?? Path.GetFileName(path); in ServeFile()
/Renode-v1.15.3-c57714d/src/Renode/RobotFrameworkEngine/
DRenodeKeywords.cs379 cachedLogFilePath = Path.Combine( in EnableLoggingToCache()
/Renode-v1.15.3-c57714d/tests/
Drenode-keywords.robot101 ${metrics_path}= Join Path ${RESULTS_DIRECTORY} profiler-${metrics_fname}
/Renode-v1.15.3-c57714d/tools/PeakRDL-renode/tests/
DSystemRDLGenTest.cs59 … var adhocPath = Path.Join(Assembly.GetExecutingAssembly().Location, "../../../../", meta.File); in LoadAssembly()