| /openbsd/src/gnu/llvm/lldb/source/Plugins/Platform/MacOSX/ |
| D | PlatformRemoteDarwinDevice.cpp | 133 lldb_private::FileSpec &local_file) { in GetFileInSDK() argument 138 local_file.Clear(); in GetFileInSDK() 147 local_file.SetFile(sdkroot_path, FileSpec::Style::native); in GetFileInSDK() 149 local_file.AppendPathComponent(paths_to_try[i]); in GetFileInSDK() 150 local_file.AppendPathComponent(platform_file_path); in GetFileInSDK() 151 FileSystem::Instance().Resolve(local_file); in GetFileInSDK() 152 if (FileSystem::Instance().Exists(local_file)) { in GetFileInSDK() 157 local_file.Clear(); in GetFileInSDK() 166 FileSpec &local_file) { in GetSymbolFile() argument 176 local_file.SetFile(resolved_path, FileSpec::Style::native); in GetSymbolFile() [all …]
|
| D | PlatformRemoteDarwinDevice.h | 50 const UUID *uuid_ptr, FileSpec &local_file); 71 FileSpec &local_file);
|
| D | PlatformAppleSimulator.cpp | 453 FileSpec &local_file) { in GetSymbolFile() argument 464 local_file.SetFile(resolved_path, FileSpec::Style::native); in GetSymbolFile() 465 FileSystem::Instance().Resolve(local_file); in GetSymbolFile() 466 if (FileSystem::Instance().Exists(local_file)) in GetSymbolFile() 470 local_file.SetFile(platform_file_path, FileSpec::Style::native); in GetSymbolFile() 471 FileSystem::Instance().Resolve(local_file); in GetSymbolFile() 472 if (FileSystem::Instance().Exists(local_file)) in GetSymbolFile()
|
| D | PlatformAppleSimulator.h | 138 FileSpec &local_file);
|
| /openbsd/src/gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/ |
| D | Module.pm | 260 my $local_file = $self->inst_file; 263 if ($local_file) { 264 $manpage = $self->manpage_headline($local_file); 316 $local_file || "(not installed)"); 318 $self->inst_version) if $local_file; 321 if ($available_file && $available_file ne $local_file) { 331 my($self,$local_file) = @_; 332 my(@local_file) = $local_file; 333 $local_file =~ s/\.pm(?!\n)\Z/.pod/; 334 push @local_file, $local_file; [all …]
|
| D | Distribution.pm | 132 my($local_file); 141 unless ($local_file = 146 my $yaml = CPAN->_yaml_loadfile($local_file)->[0]; 402 my($local_file); 416 (my $packagedir,$local_file) = $self->run_preps_on_packagedir; 453 my($local_file); 463 unless ($local_file = 474 $self->debug("local_wanted[$local_wanted]local_file[$local_file]") if $CPAN::DEBUG; 475 $self->{localfile} = $local_file; 521 my $local_file = $self->{localfile}; [all …]
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/Platform/Android/ |
| D | AdbClient.h | 41 Status PullFile(const FileSpec &remote_file, const FileSpec &local_file); 43 Status PushFile(const FileSpec &local_file, const FileSpec &remote_file); 63 const FileSpec &local_file); 65 Status internalPushFile(const FileSpec &local_file,
|
| D | AdbClient.cpp | 427 const FileSpec &local_file) { in internalPullFile() argument 428 const auto local_file_path = local_file.GetPath(); in internalPullFile() 459 Status AdbClient::SyncService::internalPushFile(const FileSpec &local_file, in internalPushFile() argument 461 const auto local_file_path(local_file.GetPath()); in internalPushFile() 482 kDONE, llvm::sys::toTimeT(FileSystem::Instance().GetModificationTime(local_file)), in internalPushFile() 543 const FileSpec &local_file) { in PullFile() argument 544 return executeCommand([this, &remote_file, &local_file]() { in PullFile() 545 return internalPullFile(remote_file, local_file); in PullFile() 549 Status AdbClient::SyncService::PushFile(const FileSpec &local_file, in PushFile() argument 551 return executeCommand([this, &local_file, &remote_file]() { in PushFile() [all …]
|
| /openbsd/src/gnu/usr.bin/perl/cpan/CPAN/lib/ |
| D | CPAN.pm | 552 my($self,$local_file,$opt) = @_; 553 return +[] unless -s $local_file; 568 eval { @yaml = $code->($local_file); }; 571 die CPAN::Exception::yaml_process_error->new($yaml_module,$local_file,"parse",$@); 575 if (open FH, $local_file) { 581 … die CPAN::Exception::yaml_process_error->new($yaml_module,$local_file,"parse",$@); 584 $CPAN::Frontend->mywarn("Could not open '$local_file': $!"); 592 die CPAN::Exception::yaml_not_installed->new($yaml_module, $local_file, "parse"); 599 my($self,$local_file,@what) = @_; 603 if (UNIVERSAL::isa($local_file, "FileHandle")) { [all …]
|
| /openbsd/src/gnu/llvm/lldb/source/Target/ |
| D | RemoteAwarePlatform.cpp | 291 FileSpec &local_file) { in GetFileWithUUID() argument 294 local_file); in GetFileWithUUID() 297 local_file = platform_file; in GetFileWithUUID()
|
| D | Platform.cpp | 155 const UUID *uuid_ptr, FileSpec &local_file) { in GetFileWithUUID() argument 157 local_file = platform_file; in GetFileWithUUID() 1687 const lldb_private::FileSpec &local_file, in LoadImage() argument 1690 if (local_file && remote_file) { in LoadImage() 1693 if (IsRemote() || local_file != remote_file) { in LoadImage() 1694 error = Install(local_file, remote_file); in LoadImage() 1701 if (local_file) { in LoadImage() 1705 target_file.AppendPathComponent(local_file.GetFilename().AsCString()); in LoadImage() 1706 if (IsRemote() || local_file != target_file) { in LoadImage() 1707 error = Install(local_file, target_file); in LoadImage()
|
| D | Target.cpp | 2970 FileSpec local_file(module_sp->GetFileSpec()); in Install() local 2971 if (local_file) { in Install() 2982 error = platform_sp->Install(local_file, remote_file); in Install()
|
| /openbsd/src/gnu/llvm/lldb/include/lldb/Target/ |
| D | RemoteAwarePlatform.h | 65 FileSpec &local_file) override;
|
| D | Platform.h | 281 const UUID *uuid_ptr, FileSpec &local_file); 764 const lldb_private::FileSpec &local_file,
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/Platform/gdb-server/ |
| D | PlatformRemoteGDBServer.h | 49 FileSpec &local_file) override;
|
| D | PlatformRemoteGDBServer.cpp | 126 FileSpec &local_file) { in GetFileWithUUID() argument 128 local_file = platform_file; in GetFileWithUUID()
|