Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/Platform/Android/
DAdbClient.cpp432 const auto local_file_path = local_file.GetPath(); in internalPullFile() local
433 llvm::FileRemover local_file_remover(local_file_path); in internalPullFile()
436 llvm::raw_fd_ostream dst(local_file_path, EC, llvm::sys::fs::OF_None); in internalPullFile()
438 return Status("Unable to open local file %s", local_file_path.c_str()); in internalPullFile()
457 return Status("Failed to write file %s", local_file_path.c_str()); in internalPullFile()
465 const auto local_file_path(local_file.GetPath()); in internalPushFile() local
466 std::ifstream src(local_file_path.c_str(), std::ios::in | std::ios::binary); in internalPushFile()
468 return Status("Unable to open local file %s", local_file_path.c_str()); in internalPushFile()
508 return Status("Failed read on %s", local_file_path.c_str()); in internalPushFile()
/external/llvm-project/lldb/source/Commands/
DCommandObjectPlatform.cpp857 const char *local_file_path = args.GetArgumentAtIndex(1); in DoExecute() local
859 FileSpec(local_file_path)); in DoExecute()
863 remote_file_path, local_file_path); in DoExecute()