Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/lldb/source/Plugins/Platform/Android/
DAdbClient.cpp428 const auto local_file_path = local_file.GetPath(); in internalPullFile() local
429 llvm::FileRemover local_file_remover(local_file_path); in internalPullFile()
432 llvm::raw_fd_ostream dst(local_file_path, EC, llvm::sys::fs::OF_None); in internalPullFile()
434 return Status("Unable to open local file %s", local_file_path.c_str()); in internalPullFile()
453 return Status("Failed to write file %s", local_file_path.c_str()); in internalPullFile()
461 const auto local_file_path(local_file.GetPath()); in internalPushFile() local
462 std::ifstream src(local_file_path.c_str(), std::ios::in | std::ios::binary); in internalPushFile()
464 return Status("Unable to open local file %s", local_file_path.c_str()); in internalPushFile()
504 return Status("Failed read on %s", local_file_path.c_str()); in internalPushFile()
/openbsd/src/gnu/llvm/lldb/source/Commands/
DCommandObjectPlatform.cpp852 const char *local_file_path = args.GetArgumentAtIndex(1); in DoExecute() local
854 FileSpec(local_file_path)); in DoExecute()
858 remote_file_path, local_file_path); in DoExecute()