| /third_party/cups/backend/ |
| D | snmp.txt | 1 snmp.txt - 2006-04-19 2 --------------------- 6 snmpwalk -v 1 -c public HOST .1 14 SNMPv2-MIB::sysDescr.0 = STRING: HP ETHERNET MULTI-ENVIRONMENT,ROM J.sp.00,JETDIRECT EX,JD28,EEPROM… 15 SNMPv2-MIB::sysName.0 = STRING: 16 HOST-RESOURCES-MIB::hrDeviceType.1 = OID: HOST-RESOURCES-TYPES::hrDevicePrinter 17 HOST-RESOURCES-MIB::hrDeviceType.2 = OID: HOST-RESOURCES-TYPES::hrDevicePrinter 18 HOST-RESOURCES-MIB::hrDeviceType.3 = OID: HOST-RESOURCES-TYPES::hrDevicePrinter 19 HOST-RESOURCES-MIB::hrDeviceDescr.1 = STRING: Hewlett-Packard hp LaserJet 3380 20 HOST-RESOURCES-MIB::hrDeviceDescr.2 = STRING: Axis AXIS 5600 [all …]
|
| /third_party/cares/src/lib/ |
| D | ares_addrinfo2hostent.c | 27 * SPDX-License-Identifier: MIT 50 static size_t hostent_nalias(const struct hostent *host) in hostent_nalias() argument 53 for (i=0; host->h_aliases != NULL && host->h_aliases[i] != NULL; i++) in hostent_nalias() 64 for (cname = ai->cnames; cname != NULL; cname=cname->next) { in ai_nalias() 71 static size_t hostent_naddr(const struct hostent *host) in hostent_naddr() argument 74 for (i=0; host->h_addr_list != NULL && host->h_addr_list[i] != NULL; i++) in hostent_naddr() 85 for (node = ai->nodes; node != NULL; node=node->ai_next) { in ai_naddr() 86 if (af != AF_UNSPEC && af != node->ai_family) in ai_naddr() 95 struct hostent **host) in ares_addrinfo2hostent() argument 106 if (ai == NULL || host == NULL) { in ares_addrinfo2hostent() [all …]
|
| /third_party/curl/docs/libcurl/opts/ |
| D | CURLOPT_CONNECT_TO.md | 1 --- 3 SPDX-License-Identifier: curl 7 See-also: 8 - CURLOPT_FOLLOWLOCATION (3) 9 - CURLOPT_HTTPPROXYTUNNEL (3) 10 - CURLOPT_RESOLVE (3) 11 - CURLOPT_URL (3) 13 - All 14 --- 18 CURLOPT_CONNECT_TO - connect to another host and port instead [all …]
|
| /third_party/libunwind/ |
| D | .travis.yml | 5 - HOST=x86_64-linux-gnu 6 - HOST=x86-linux-gnu 7 - HOST=arm-linux-gnueabihf 8 - HOST=aarch64-linux-gnu 9 - HOST=mipsel-linux-gnu 11 #- HOST=powerpc64-linux-gnu 13 linux-s390x: &linux-s390x 16 env: BUILD=s390x-linux-gnu HOST=s390x-linux-gnu 18 - autoreconf -i 19 - ./configure [all …]
|
| /third_party/mesa3d/.gitlab-ci/windows/ |
| D | mesa_deps_libva.ps1 | 1 # Compiling libva/libva-utils deps 4 $MyPath = $MyInvocation.MyCommand.Path | Split-Path -Parent 7 Remove-Item -Recurse -Force -ErrorAction SilentlyContinue "deps" | Out-Null 8 $depsInstallPath="C:\mesa-deps" 10 Write-Host "Cloning libva at:" 11 Get-Date 14 Write-Host "Failed to clone libva repository" 18 Write-Host "Cloning libva finished at:" 19 Get-Date 21 Write-Host "Building libva at:" [all …]
|
| D | mesa_deps_build.ps1 | 2 $MyPath = $MyInvocation.MyCommand.Path | Split-Path -Parent 7 [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 -bor [Net.SecurityP… 9 Remove-Item -Recurse -Force -ErrorAction SilentlyContinue "deps" | Out-Null 11 $depsInstallPath="C:\mesa-deps" 13 Get-Date 14 Write-Host "Cloning DirectX-Headers" 15 git clone -b v1.614.1 --depth=1 https://github.com/microsoft/DirectX-Headers deps/DirectX-Headers 17 Write-Host "Failed to clone DirectX-Headers repository" 20 Write-Host "Building DirectX-Headers" 21 $dxheaders_build = New-Item -ItemType Directory -Path ".\deps\DirectX-Headers" -Name "build" [all …]
|
| /third_party/cares/test/ |
| D | ares-test-parse-ptr.cc | 3 * Copyright (c) The c-ares project and its contributors 24 * SPDX-License-Identifier: MIT 26 #include "ares-test.h" 27 #include "dns-proto.h" 39 .add_question(new DNSQuestion("64.48.32.16.in-addr.arpa", T_PTR)) in TEST_F() 40 .add_answer(new DNSPtrRR("64.48.32.16.in-addr.arpa", 100, "other.com")); in TEST_F() 43 struct hostent *host = nullptr; in TEST_F() local 45 addrv4, sizeof(addrv4), AF_INET, &host)); in TEST_F() 46 ASSERT_NE(nullptr, host); in TEST_F() 48 ss << HostEnt(host); in TEST_F() [all …]
|
| D | ares-test-parse-a.cc | 3 * Copyright (c) The c-ares project and its contributors 24 * SPDX-License-Identifier: MIT 26 #include "ares-test.h" 27 #include "dns-proto.h" 43 0x84, // response + query + AA + not-TC + not-RD in TEST_F() 44 0x00, // not-RA + not-Z + not-AD + not-CD + rc=NoError in TEST_F() 75 struct hostent *host = nullptr; in TEST_F() local 79 &host, info, &count)); in TEST_F() 85 ASSERT_NE(nullptr, host); in TEST_F() 87 ss << HostEnt(host); in TEST_F() [all …]
|
| /third_party/rust/rust/src/tools/rust-analyzer/crates/ide/src/ |
| D | fixture.rs | 8 pub(crate) fn file(ra_fixture: &str) -> (Analysis, FileId) { in file() 9 let mut host = AnalysisHost::default(); in file() localVariable 11 host.db.enable_proc_attr_macros(); in file() 12 host.db.apply_change(change_fixture.change); in file() 13 (host.analysis(), change_fixture.files[0]) in file() 16 /// Creates analysis from a multi-file fixture, returns positions marked with $0. 17 pub(crate) fn position(ra_fixture: &str) -> (Analysis, FilePosition) { in position() 18 let mut host = AnalysisHost::default(); in position() localVariable 20 host.db.enable_proc_attr_macros(); in position() 21 host.db.apply_change(change_fixture.change); in position() [all …]
|
| /third_party/typescript/tests/baselines/reference/ |
| D | import_var-referencing-an-imported-module-alias.js | 1 //// [tests/cases/compiler/import_var-referencing-an-imported-module-alias.ts] //// 3 //// [host.ts] 4 export class Host { } class 7 import host = require("host"); 8 var hostVar = host; 9 var v = new hostVar.Host(); 12 //// [host.js] 16 exports.Host = void 0; 17 var Host = /** @class */ (function () { class 18 function Host() { class in anonymousFunction1083dc690100.Host [all …]
|
| /third_party/grpc/src/android/test/interop/app/src/main/cpp/ |
| D | grpc-interop.cc | 9 * http://www.apache.org/licenses/LICENSE-2.0 27 std::shared_ptr<grpc::testing::InteropClient> GetClient(const char* host, in GetClient() argument 36 std::string host_port = absl::StrFormat("%s:%d", host, port); in GetClient() 49 const char* host = env->GetStringUTFChars(host_raw, (jboolean*)0); in Java_io_grpc_interop_cpp_InteropActivity_doEmpty() local 53 jboolean result = GetClient(host, port, use_tls)->DoEmpty(); in Java_io_grpc_interop_cpp_InteropActivity_doEmpty() 54 env->ReleaseStringUTFChars(host_raw, host); in Java_io_grpc_interop_cpp_InteropActivity_doEmpty() 64 const char* host = env->GetStringUTFChars(host_raw, (jboolean*)0); in Java_io_grpc_interop_cpp_InteropActivity_doLargeUnary() local 68 jboolean result = GetClient(host, port, use_tls)->DoLargeUnary(); in Java_io_grpc_interop_cpp_InteropActivity_doLargeUnary() 69 env->ReleaseStringUTFChars(host_raw, host); in Java_io_grpc_interop_cpp_InteropActivity_doLargeUnary() 79 const char* host = env->GetStringUTFChars(host_raw, (jboolean*)0); in Java_io_grpc_interop_cpp_InteropActivity_doEmptyStream() local [all …]
|
| /third_party/grpc/src/core/util/ |
| D | host_port.cc | 9 // http://www.apache.org/licenses/LICENSE-2.0 30 std::string JoinHostPort(absl::string_view host, int port) { in JoinHostPort() argument 31 if (!host.empty() && host[0] != '[' && host.rfind(':') != host.npos) { in JoinHostPort() 33 return absl::StrFormat("[%s]:%d", host, port); in JoinHostPort() 35 // Ordinary non-bracketed host:port. in JoinHostPort() 36 return absl::StrFormat("%s:%d", host, port); in JoinHostPort() 40 bool DoSplitHostPort(absl::string_view name, absl::string_view* host, in DoSplitHostPort() argument 44 // Parse a bracketed host, typically an IPv6 literal. in DoSplitHostPort() 50 if (rbracket == name.size() - 1) { in DoSplitHostPort() 55 *port = name.substr(rbracket + 2, name.size() - rbracket - 2); in DoSplitHostPort() [all …]
|
| /third_party/typescript/src/compiler/ |
| D | moduleSpecifiers.ts | 124 function getPreferences(host: ModuleSpecifierResolutionHost, { importModuleSpecifierPreference, imp… 128 importModuleSpecifierPreference === "non-relative" ? RelativePreference.NonRelative : 129 … importModuleSpecifierPreference === "project-relative" ? RelativePreference.ExternalNonRelative : 138 …|| isFormatRequiringExtensions(compilerOptions, importingSourceFile.path, host) ? Ending.JsExtensi… 144 …mpilerOptions, oldImportSpecifier: string, importingSourceFileName: Path, host: ModuleSpecifierRes… 147 …ldImportSpecifier) || isFormatRequiringExtensions(compilerOptions, importingSourceFileName, host) ? 153 …tensions(compilerOptions: CompilerOptions, importingSourceFileName: Path, host: ModuleSpecifierRes… 158 …edNodeFormatForFile(importingSourceFileName, host.getPackageJsonInfoCache?.(), getModuleResolution… 161 function getModuleResolutionHost(host: ModuleSpecifierResolutionHost): ModuleResolutionHost { 163 fileExists: host.fileExists, [all …]
|
| /third_party/vk-gl-cts/external/vulkancts/modules/vulkan/conditional_rendering/ |
| D | vktConditionalRenderingTestUtil.hpp | 3 /*------------------------------------------------------------------------ 5 * ------------------------ 14 * http://www.apache.org/licenses/LICENSE-2.0 25 *//*--------------------------------------------------------------------*/ 38 enum ConditionalBufferMemory { LOCAL, HOST }; enumerator 59 { true, false, false, false, 1, false, false, false, true, HOST }, 60 { true, false, false, false, 0, false, false, false, false, HOST }, 61 { true, false, true, false, 0, false, false, false, true, HOST }, 62 { true, false, true, false, 1, false, false, false, false, HOST }, 63 { true, false, false, true, 1, false, false, false, true, HOST }, [all …]
|
| /third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/conditional_rendering/ |
| D | vktConditionalRenderingTestUtil.hpp | 3 /*------------------------------------------------------------------------ 5 * ------------------------ 14 * http://www.apache.org/licenses/LICENSE-2.0 25 *//*--------------------------------------------------------------------*/ 38 enum ConditionalBufferMemory { LOCAL, HOST }; enumerator 59 { true, false, false, false, 1, false, false, false, true, HOST }, 60 { true, false, false, false, 0, false, false, false, false, HOST }, 61 { true, false, true, false, 0, false, false, false, true, HOST }, 62 { true, false, true, false, 1, false, false, false, false, HOST }, 63 { true, false, false, true, 1, false, false, false, true, HOST }, [all …]
|
| /third_party/grpc/tools/interop_matrix/testcases/ |
| D | cxx__master | 4 echo "Testing ${docker_image:=grpc_interop_cxx:eadcc0fd-5683-411b-aed5-084fbb3159ee}" 5 …-i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "cmake/build/interop_client -… 6 …-i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "cmake/build/interop_client -… 7 …-i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "cmake/build/interop_client -… 8 …-i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "cmake/build/interop_client -… 9 …-i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "cmake/build/interop_client -… 10 …-i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "cmake/build/interop_client -… 11 …-i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "cmake/build/interop_client -… 12 …-i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "cmake/build/interop_client -… 13 …-i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "cmake/build/interop_client -… [all …]
|
| D | cxx__v1.31.1 | 4 echo "Testing ${docker_image:=grpc_interop_cxx:f5a2f91d-342a-4bc8-a5ca-eb113dd3a8a2}" 5 …-i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "bins/opt/interop_client --se… 6 …-i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "bins/opt/interop_client --se… 7 …-i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "bins/opt/interop_client --se… 8 …-i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "bins/opt/interop_client --se… 9 …-i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "bins/opt/interop_client --se… 10 …-i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "bins/opt/interop_client --se… 11 …-i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "bins/opt/interop_client --se… 12 …-i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "bins/opt/interop_client --se… 13 …-i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "bins/opt/interop_client --se… [all …]
|
| D | php__master | 4 echo "Testing ${docker_image:=grpc_interop_php:e00a3b45-27f0-4143-8c23-128cb4ffc46a}" 5 …-i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/interop_client.s… 6 …-i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/interop_client.s… 7 …-i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/interop_client.s… 8 …-i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/interop_client.s… 9 …-i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/interop_client.s… 10 …-i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/interop_client.s… 11 …-i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/interop_client.s… 12 …-i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/interop_client.s… 13 …-i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/interop_client.s… [all …]
|
| /third_party/typescript/src/testRunner/unittests/tscWatch/ |
| D | moduleResolution.ts | 4 describe("unittests:: tsc-watch:: moduleResolution", () => { 7 subScenario: `watches for changes to package-json main fields`, 57 commandLineArgs: ["--project", "./packages/pkg1/tsconfig.json", "-w", "--traceResolution"], 116 commandLineArgs: ["-w", "--traceResolution"], 158 …commandLineArgs: ["--w", "--p", "src", "--extendedDiagnostics", "-traceResolution", "--explainFile… 166 timeouts: host => { 167 host.runQueuedTimeoutCallbacks(); // Failed lookup updates 168 host.runQueuedTimeoutCallbacks(); // Actual update 174 timeouts: host => { 175 host.runQueuedTimeoutCallbacks(); // Failed lookup updates [all …]
|
| /third_party/typescript/src/testRunner/unittests/tsserver/events/ |
| D | projectUpdatedInBackground.ts | 32 …function verifyProjectsUpdatedInBackgroundEvent(scenario: string, createSession: (host: ts.project… 51 …const host = ts.projectSystem.createServerHost([commonFile1, ts.projectSystem.libFile, configFile]… constant 52 … const { verifyProjectsUpdatedInBackgroundEventHandler, verifyInitialOpen } = createSession(host); 55 host.writeFile(commonFile2.path, commonFile2.content); 56 host.runQueuedTimeoutCallbacks(); 64 host.writeFile(commonFile3.path, commonFile3.content); 65 host.runQueuedTimeoutCallbacks(); 74 describe("with --out or --outFile setting", () => { 94 const host = ts.projectSystem.createServerHost(files); constant 95 … const { verifyInitialOpen, verifyProjectsUpdatedInBackgroundEventHandler } = createSession(host); [all …]
|
| /third_party/grpc/src/python/grpcio/grpc/beta/ |
| D | implementations.py | 1 # Copyright 2015-2016 gRPC authors. 7 # http://www.apache.org/licenses/LICENSE-2.0 17 import threading # pylint: disable=unused-import 26 from grpc.beta import interfaces # pylint: disable=unused-import 27 from grpc.framework.common import cardinality # pylint: disable=unused-import 28 from grpc.framework.interfaces.face import face # pylint: disable=unused-import 30 # pylint: disable=too-many-arguments 65 """A channel to a remote host through which RPCs may be conducted. 100 def insecure_channel(host, port): argument 101 """Creates an insecure Channel to a remote host. [all …]
|
| /third_party/curl/tests/data/ |
| D | test1088 | 9 --anyauth 10 --location-trusted 15 # Server-side 19 WWW-Authenticate: Basic 20 Content-Type: text/plain 21 Content-Length: 0 27 Server: test-server/fake swsclose 28 Content-Type: text/plain 29 Funny-head: yesyes 30 Location: http://goto.second.host.now/%TESTNUMBER1002 [all …]
|
| D | test1087 | 9 --anyauth 14 # Server-side 18 WWW-Authenticate: Basic 19 Content-Type: text/plain 20 Content-Length: 0 26 Server: test-server/fake swsclose 27 Content-Type: text/plain 28 Funny-head: yesyes 29 Location: http://goto.second.host.now/%TESTNUMBER1002 30 Content-Length: 0 [all …]
|
| /third_party/typescript/src/testRunner/unittests/tsserver/ |
| D | symLinks.ts | 43 const host = ts.projectSystem.createServerHost(files); constant 44 …t session = ts.projectSystem.createSession(host, { logger: ts.projectSystem.createLoggerWithInMemo… 60 const recognizersDateTime = `${packages}/recognizers-date-time`; 61 const recognizersText = `${packages}/recognizers-text`; 63 const moduleName = "@microsoft/recognizers-text"; 91 path: `${recognizersDateTime}/node_modules/@microsoft/recognizers-text`, 95 path: `${recognizersText}/src/recognizers-text.ts`, 99 path: `${recognizersTextDist}/types/recognizers-text.d.ts`, 105 typings: "dist/types/recognizers-text.d.ts" 109 function createSessionAndOpenFile(host: ts.projectSystem.TestServerHost) { [all …]
|
| /third_party/python/Lib/urllib/ |
| D | request.py | 5 below). It opens the URL and returns the results as file-like 13 non-error returns. The HTTPRedirectHandler automatically deals with 17 urlopen(url, data=None) -- Basic usage is the same as original 19 get a file-like object back. One difference is that you can also pass 24 build_opener -- Function that creates a new OpenerDirector instance. 30 install_opener -- Installs a new opener as the default opener. 34 OpenerDirector -- Sets up the User Agent as the Python-urllib client and manages 37 Request -- An object that encapsulates the state of a request. The 39 headers, e.g. a User-Agent. 41 BaseHandler -- [all …]
|