Home
last modified time | relevance | path

Searched refs:temp_fd (Results 1 – 2 of 2) sorted by relevance

/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangUtilityFunction.cpp43 int temp_fd = -1; in ClangUtilityFunction() local
45 llvm::sys::fs::createTemporaryFile("lldb", "expr", temp_fd, result_path); in ClangUtilityFunction()
46 if (temp_fd != -1) { in ClangUtilityFunction()
47 lldb_private::NativeFile file(temp_fd, File::eOpenOptionWriteOnly, true); in ClangUtilityFunction()
H A DClangExpressionParser.cpp1234 int temp_fd = -1; in RewriteExpression()
1239 llvm::sys::fs::createUniqueFile(temp_source_path, temp_fd, result_path); in RewriteExpression()
1241 llvm::sys::fs::createTemporaryFile("lldb", "expr", temp_fd, result_path); in RewriteExpression()
1244 if (temp_fd != -1) { in RewriteExpression()
1245 lldb_private::NativeFile file(temp_fd, File::eOpenOptionWriteOnly, true); in RewriteExpression()
1038 int temp_fd = -1; ParseInternal() local