| /external/vogar/src/vogar/android/ |
| D | AdbTarget.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 67 .args("adb", "wait-for-device") in waitForDevice() 83 .args("adb", "shell", "ls", pathArgument) in ensureDirectory() 88 // the Command class understand a non-zero exit code from an adb shell command. in ensureDirectory() 108 (int) ((deadline - System.currentTimeMillis()) / millisPerSecond); in waitForNonEmptyDirectory() 110 .args("adb", "shell", "ls", pathArgument) in waitForNonEmptyDirectory() 135 @Override public List<File> ls(File directory) throws FileNotFoundException { in ls() method in AdbTarget 136 return deviceFilesystem.ls(directory); in ls() 141 // DeviceRuntime uses this to set "user.name" manually with -D. in getDeviceUserName() 143 // TODO: use 'id -un' when we don't need to support anything older than M in getDeviceUserName() [all …]
|
| D | AdbChrootTarget.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 33 * All "remote" pathnames (as java.io.File objects) passed as 46 private static String TARGET_PROCESS_WRAPPER = "sh -c"; 61 public List<File> ls(File directory) throws FileNotFoundException { in ls() method in AdbChrootTarget 63 List<File> files = super.ls(chrootToRoot(directory)); in ls() 71 // This should never happen, as `file` is derived from a chroot-based pathname. in ls() 89 public void push(File local, File remote) { in push() argument 90 super.push(local, chrootToRoot(remote)); in push() 94 public void pull(File remote, File local) { in pull() argument 95 super.pull(chrootToRoot(remote), local); in pull()
|
| D | DeviceFilesystem.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 32 * Make directories on a remote filesystem. 47 // Do some directory bootstrapping since "mkdir -p" doesn't work in adb shell. Don't bother in mkdirs() 82 public List<File> ls(File dir) throws FileNotFoundException { in ls() method in DeviceFilesystem 85 args.add("ls"); in ls() 98 // ls: <path>: No such file or directory in ls()
|
| /external/grpc-grpc/tools/internal_ci/linux/ |
| D | grpc_e2e_performance_gke_experiment.sh | 8 # http://www.apache.org/licenses/LICENSE-2.0 15 set -ex 27 GRPC_DOTNET_REPO=grpc/grpc-dotnet 29 GRPC_GO_REPO=grpc/grpc-go 31 GRPC_JAVA_REPO=grpc/grpc-java 33 GRPC_NODE_REPO=grpc/grpc-node 35 TEST_INFRA_REPO=grpc/test-infra 40 # pre-built images in the optimization. 41 gcloud auth configure-docker 43 # Connect to benchmarks-prod2 cluster. [all …]
|
| D | grpc_e2e_performance_gke.sh | 8 # http://www.apache.org/licenses/LICENSE-2.0 15 set -ex 27 GRPC_DOTNET_REPO=grpc/grpc-dotnet 29 GRPC_GO_REPO=grpc/grpc-go 31 GRPC_JAVA_REPO=grpc/grpc-java 33 GRPC_NODE_REPO=grpc/grpc-node 35 TEST_INFRA_REPO=grpc/test-infra 40 # pre-built images in the optimization. 41 gcloud auth configure-docker 43 # Connect to benchmarks-prod2 cluster. [all …]
|
| /external/linux-kselftest/tools/testing/selftests/ntb/ |
| D | ntb_test.sh | 2 # SPDX-License-Identifier: GPL-2.0-or-later 10 DEBUGFS=${DEBUGFS-/sys/kernel/debug} 26 echo "use the -r option to specify the hostname for the remote" 27 echo "device. SSH will then be used to test the remote side." 32 echo " -C don't cleanup ntb modules on exit" 33 echo " -h show this help message" 34 echo " -l list available local and remote PCI ids" 35 echo " -r REMOTE_HOST specify the remote's hostname to connect" 37 echo " -m MW_SIZE memory window size for ntb_tool" 39 echo " -d run dma tests for ntb_perf" [all …]
|
| /external/rust/crates/grpcio-sys/grpc/tools/internal_ci/linux/ |
| D | grpc_e2e_performance_gke.sh | 8 # http://www.apache.org/licenses/LICENSE-2.0 15 set -ex 24 # pre-built images in the optimization. 25 gcloud auth configure-docker 27 # Connect to benchmarks-prod2 cluster. 28 gcloud config set project grpc-testing 29 gcloud container clusters get-credentials benchmarks-prod2 \ 30 --zone us-central1-b --project grpc-testing 35 if [[ "${KOKORO_BUILD_INITIATOR%%-*}" == kokoro ]]; then 44 PREBUILT_IMAGE_PREFIX="gcr.io/grpc-testing/e2etest/prebuilt/${LOAD_TEST_PREFIX}" [all …]
|
| D | grpc_e2e_performance_gke_experiment.sh | 8 # http://www.apache.org/licenses/LICENSE-2.0 15 set -ex 27 GRPC_DOTNET_REPO=grpc/grpc-dotnet 29 GRPC_GO_REPO=grpc/grpc-go 31 GRPC_JAVA_REPO=grpc/grpc-java 33 TEST_INFRA_REPO=grpc/test-infra 38 # pre-built images in the optimization. 39 gcloud auth configure-docker 41 # Connect to benchmarks-prod2 cluster. 42 gcloud config set project grpc-testing [all …]
|
| /external/autotest/client/common_lib/cros/ |
| D | path_utils.py | 3 # Use of this source code is governed by a BSD-style license that can be 14 Checks if a file exists on a remote machine in one of several paths. 17 @param host Host object representing the remote machine. 35 result = host.run('ls %s 2> /dev/null' % ' '.join(glob_list), 43 Asserts that cmd is installed on a remote machine at some path and raises 47 @param host Host object representing the remote machine. 54 if run('ls %s >/dev/null 2>&1' % cmd,
|
| /external/vogar/src/vogar/ |
| D | SshTarget.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 31 * Runs actions on a remote host using SSH. 44 if (colon != -1) { in SshTarget() 51 sshCommandPrefixList = ImmutableList.of("ssh", "-p", Integer.toString(port), host, "-C"); in SshTarget() 69 .args("rm", "-r", file.getPath()) in rm() 77 // DeviceDalvikVm uses this to set "user.name" manually with -D. in getDeviceUserName() 82 // TODO: use 'id -un' when we don't need to support anything older than M in getDeviceUserName() 93 new Command(log, "ssh", "-p", Integer.toString(port), host, in forwardTcp() 94 "-L", port + ":" + host + ":" + port, "-N").start(); in forwardTcp() 100 @Override public void push(File local, File remote) { in push() argument [all …]
|
| D | LocalTarget.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 33 private static final ImmutableList<String> TARGET_PROCESS_PREFIX = ImmutableList.of("sh", "-c"); 66 @Override public List<File> ls(File directory) throws FileNotFoundException { in ls() method in LocalTarget 82 @Override public void push(File local, File remote) { in push() argument 83 if (remote.equals(local)) { in push() 87 if (remote.exists()) { in push() 90 new Command(log, "cp", "-r", local.toString(), remote.toString()).execute(); in push() 93 @Override public void pull(File remote, File local) { in pull() argument 94 new Command(log, "cp", remote.getPath(), local.getPath()).execute(); in pull()
|
| /external/tcpdump/tests/ |
| D | ospf-gmpls.out | 2 40.35.1.2 > 224.0.0.5: OSPFv2, LS-Update, length 152 3 Router-ID 10.255.245.35, Backbone Area, Authentication Type: none (0), 1 LSA 6 Area Local Opaque LSA (10), Opaque-Type Traffic Engineering LSA (1), Opaque-ID 8 9 Link Type subTLV (1), length: 1, Point-to-point (1) 12 Remote Interface IP address subTLV (4), length: 4, 10.9.142.2 17 TE-Class 0: 622.080 Mbps 18 TE-Class 1: 622.080 Mbps 19 TE-Class 2: 622.080 Mbps 20 TE-Class 3: 622.080 Mbps 21 TE-Class 4: 622.080 Mbps [all …]
|
| /external/grpc-grpc/doc/ |
| D | command_line_tool.md | 11 > to grpc-tools repository as a stand alone application once it is mature 13 > user-friendliness. Other tools in the ecosystem, for example, 20 - Send unary rpc. 21 - Attach metadata and display received metadata. 22 - Handle common authentication to server. 23 - Infer request/response types from server reflection result. 24 - Find the request/response types from a given proto file. 25 - Read proto request in text form. 26 - Read request in wire form (for protobuf messages, this means serialized 28 - Display proto response in text form. [all …]
|
| D | server_reflection_tutorial.md | 3 gRPC Server Reflection provides information about publicly-accessible gRPC 13 C++ Server Reflection is an add-on library, `libgrpc++_reflection`. To enable C++ 18 `--no-as-needed` is needed for dynamic linking and `--whole-archive` is 36 - Setup an example server 43 $ make -C examples/cpp/helloworld 47 - Build gRPC CLI 59 `grpc_cli ls` command lists services and methods exposed at a given port 61 - List all the services exposed at a given port 64 $ grpc_cli ls localhost:50051 73 - List one service with details [all …]
|
| /external/toolchain-utils/ |
| D | remote_test.py | 2 # -*- coding: utf-8 -*- 5 # Use of this source code is governed by a BSD-style license that can be 33 "-c", 34 "--chromeos_root", 39 "-r", "--remote", dest="remote", help="Remote chromeos device." 45 if options.remote is None: 46 Usage(parser, "remote must be given") 50 command = "ls -lt /" 53 command, chromeos_root=options.chromeos_root, machine=options.remote 63 dest_machine=options.remote, [all …]
|
| /external/compiler-rt/test/builtins/Unit/ |
| D | test | 4 REMOTE=0 8 LIBS="-lSystem" 9 REMOTE=1 10 mkdir -p remote 13 LIBS="-lSystem" 16 LIBS="-lc -lm" 20 CFLAGS="-Os -nodefaultlibs -I../../lib" 22 CFLAGS="-arch $ARCH $CFLAGS" 24 for FILE in $(ls *.c); do 25 # Use -nodefaultlibs to avoid using libgcc.a [all …]
|
| /external/aws-sdk-java-v2/buildspecs/ |
| D | release-to-github.yml | 5 runtime-versions: 10 - git config --global user.name "AWS" 11 - git config --global user.email "<>" 12 - 'STAGING_REPOSITORY_URL="https://$GITHUB_ACCESS_TOKEN@github.com/$STAGING_REPOSITORY.git"' 13 - 'PUBLIC_REPOSITORY_URL="https://$GITHUB_ACCESS_TOKEN@github.com/aws/aws-sdk-java-v2.git"' 17 - mkdir release 18 - cd release 19 - 20 - git clone -o staging -b release $STAGING_REPOSITORY_URL . 21 …- RELEASE_VERSION=`mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive … [all …]
|
| /external/cronet/third_party/protobuf/examples/ |
| D | BUILD | 3 # include protobuf repo as remote repositories in your WORKSPACE file. See 16 # Remote repository "com_google_protobuf" must be defined to use this rule. 28 # Remote repository "com_google_protobuf_cc" must be defined to use this rule. 49 # Remote repository "com_google_protobuf_java" must be defined to use this rule. 71 # Remote repository "com_google_protobuf_javalite" must be defined to use this 86 # $ ls -l bazel-bin/*_deploy.jar 87 # -r-xr-xr-x 1 xiaofeng eng 1230797 Sep 8 12:24 bazel-bin/add_person_java_deploy.jar 88 # -r-xr-xr-x 1 xiaofeng eng 236166 Sep 8 12:24 bazel-bin/add_person_java_lite_deploy.jar
|
| /external/grpc-grpc-java/documentation/ |
| D | server-reflection-tutorial.md | 3 gRPC Server Reflection provides information about publicly-accessible gRPC 8 proto-based services. 12 gRPC-Java Server Reflection is implemented by 13 `io.grpc.protobuf.services.ProtoReflectionService` in the `grpc-services` 22 --- a/examples/build.gradle 24 @@ -27,6 +27,7 @@ 26 compile "io.grpc:grpc-netty-shaded:${grpcVersion}" 27 compile "io.grpc:grpc-protobuf:${grpcVersion}" 28 + compile "io.grpc:grpc-services:${grpcVersion}" 29 compile "io.grpc:grpc-stub:${grpcVersion}" [all …]
|
| /external/protobuf/examples/ |
| D | BUILD.bazel | 3 # include protobuf repo as remote repositories in your WORKSPACE file. See 17 # Remote repository "com_google_protobuf" must be defined to use this rule. 29 # Remote repository "com_google_protobuf_cc" must be defined to use this rule. 50 # Remote repository "com_google_protobuf_java" must be defined to use this rule. 72 # Remote repository "com_google_protobuf_javalite" must be defined to use this 87 # $ ls -l bazel-bin/*_deploy.jar 88 # -r-xr-xr-x 1 xiaofeng eng 1230797 Sep 8 12:24 bazel-bin/add_person_java_deploy.jar 89 # -r-xr-xr-x 1 xiaofeng eng 236166 Sep 8 12:24 bazel-bin/add_person_java_lite_deploy.jar
|
| /external/chromium-trace/catapult/devil/docs/ |
| D | adb_wrapper.md | 30 The output of the disable-verity command as a string. 55 The output of the enable-verity command as a string. 61 Forward socket connections from the local socket to the remote socket. 69 jdwp:<process pid> (remote only) 73 remote: The device socket. 90 The output of adb forward --list as a string. 114 The device path (e.g. usb:3-4) 146 forward_lock: (optional) If set forward-locks the app. 165 forward_lock: (optional) If set forward-locks the app. 233 ### AdbWrapper.Ls [all …]
|
| /external/angle/build/android/ |
| D | connect_lldb.sh | 4 # Use of this source code is governed by a BSD-style license that can be 12 # Use --help to print full usage instructions. 21 # Location of Chromium-top-level sources. 35 log "Killing lldb-server process on-device: $LLDB_SERVER_PID" 39 log "Killing background lldb-server process: $LLDB_SERVER_JOB_PID" 40 kill -9 $LLDB_SERVER_JOB_PID >/dev/null 2>&1 41 rm -f "$LLDB_SERVER_JOB_PIDFILE" 44 log "Removing target lldb-server binary: $TARGET_LLDB_SERVER." 49 rm -rf "$TMPDIR" 55 # Ensure clean exit on Ctrl-C or normal exit. [all …]
|
| /external/cronet/build/android/ |
| D | connect_lldb.sh | 4 # Use of this source code is governed by a BSD-style license that can be 12 # Use --help to print full usage instructions. 21 # Location of Chromium-top-level sources. 35 log "Killing lldb-server process on-device: $LLDB_SERVER_PID" 39 log "Killing background lldb-server process: $LLDB_SERVER_JOB_PID" 40 kill -9 $LLDB_SERVER_JOB_PID >/dev/null 2>&1 41 rm -f "$LLDB_SERVER_JOB_PIDFILE" 44 log "Removing target lldb-server binary: $TARGET_LLDB_SERVER." 49 rm -rf "$TMPDIR" 55 # Ensure clean exit on Ctrl-C or normal exit. [all …]
|
| /external/libcups/man/ |
| D | ippfind.1 | 4 .\" Copyright © 2013-2019 by Apple Inc. 11 ippfind \- find internet printing protocol printers 28 .B \-\-help 31 .B \-\-version 59 …-\-exec\fR, \fI\-l\fR, \fI\-\-ls\fR, \fI\-p\fR, \fI\-\-print\fR, \fI\-\-print\-name\fR, \fI\-q\fR,… 62 \fB\-d \fIregex\fR 64 \fB\-\-domain \fIregex\fR 67 .B \-\-false 70 \fB\-h \fIregex\fR 72 \fB\-\-host \fIregex\fR [all …]
|
| /external/linux-kselftest/tools/testing/selftests/drivers/net/netdevsim/ |
| D | udp_tunnel_nic.sh | 2 # SPDX-License-Identifier: GPL-2.0-only 30 [ -e /sys/class/net/$dev ] && ip link del dev $dev 36 if [ -e $NSIM_DEV_SYS ]; then 58 [ "$ipver" != '6' ] || ipfl="-6" 83 [ "$ipver" != '6' ] && remote=1.1.1.2 || group=::2 84 [ "$ipver" != '6' ] || ipfl="-6" 89 remote $remote \ 118 echo -e "port: $((val >> 16))\ttype: $((val & 0xffff))" 134 type_name="vxlan-gpe" 146 local -n expected=$2 [all …]
|