/tools/tradefederation/core/src/com/android/tradefed/device/ |
StubDevice.java | 395 public void pushFile(String local, String remote) throws IOException, 404 public void pullFile(String remote, String local) throws IOException,
|
/tools/tradefederation/core/ |
tradefed_win.bat | 31 :: check debug flag and set up remote debugging
|
/external/libmojo/third_party/catapult/devil/devil/android/sdk/ |
adb_wrapper.py | 371 def Push(self, local, remote, timeout=60 * 5, retries=DEFAULT_RETRIES): 376 remote: Path on the device filesystem. 381 self._RunDeviceAdbCmd(['push', local, remote], timeout, retries) 383 def Pull(self, remote, local, timeout=60 * 5, retries=DEFAULT_RETRIES): 387 remote: Path on the device filesystem. 392 cmd = ['pull', remote, local] 537 def Forward(self, local, remote, allow_rebind=False, 539 """Forward socket connections from the local socket to the remote socket. 547 jdwp:<process pid> (remote only) 551 remote: The device socket [all...] |
/external/webrtc/webrtc/tools/rtcbot/ |
botmanager.js | 115 this.dnode_.on('remote', this.onRemoteFromDnode_.bind(this)); 119 onRemoteFromDnode_: function (remote) { 120 this.onbotready_(remote);
|
/prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/internal/symbolizer/ |
symbolizer_test.go | 130 "remote", 142 "remote:demangle=full", 150 "force:remote",
|
/prebuilts/go/darwin-x86/src/syscall/ |
zerrors_windows.go | 260 EREMCHG - APPLICATION_ERROR: "remote address changed", 261 EREMOTE - APPLICATION_ERROR: "object is remote", 262 EREMOTEIO - APPLICATION_ERROR: "remote I/O error",
|
/prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/internal/symbolizer/ |
symbolizer_test.go | 130 "remote", 142 "remote:demangle=full", 150 "force:remote",
|
/prebuilts/go/linux-x86/src/syscall/ |
zerrors_windows.go | 260 EREMCHG - APPLICATION_ERROR: "remote address changed", 261 EREMOTE - APPLICATION_ERROR: "object is remote", 262 EREMOTEIO - APPLICATION_ERROR: "remote I/O error",
|
/prebuilts/tools/common/m2/repository/org/apache/maven/shared/maven-common-artifact-filters/1.4/ |
maven-common-artifact-filters-1.4.jar | |
/prebuilts/tools/common/m2/repository/org/testng/testng/6.9.10/ |
testng-6.9.10.jar | |
/system/core/adb/ |
test_device.py | 203 # listen on localhost:forward_port, connect to remote:forward_port 206 # listen on remote:forward_port, connect to localhost:reverse_port 255 The remote exit code. 338 the corresponding shell allocated a remote PTY. 723 self.device.push(local=tmp.name, remote=self.DEVICE_TEMP_FILE) [all...] |
/external/iproute2/misc/ |
ss.c | 674 inet_prefix remote; member in struct:sockstat 1157 return unix_match(&s->remote, &a->addr); 1162 if (!inet2_addr_match(&s->remote, &a->addr, a->addr.bitlen)) [all...] |
/external/webrtc/webrtc/p2p/base/ |
port.cc | 556 << "Received a remote ping with high retransmit count: " 918 // The packet had the right local username, but the remote username 919 // was not the right one for the remote address. 1175 const Candidate& remote = remote_candidate(); local [all...] |
/prebuilts/misc/common/android-support-test/espresso/ |
espresso_core_release_no_deps.jar | |
/external/iproute2/ip/ |
link_gre.c | 29 "Usage: ... { gre | gretap | erspan } [ remote ADDR ]\n" 249 } else if (!matches(*argv, "remote")) { 394 const char *remote = "any"; local 402 remote = format_host(AF_INET, 4, &addr); 405 print_string(PRINT_ANY, "remote", "remote %s ", remote);
|
link_gre6.c | 36 "Usage: ... { ip6gre | ip6gretap } [ remote ADDR ]\n" 248 } else if (!matches(*argv, "remote")) { 254 invarg("\"remote\" address family is AF_UNSPEC", *argv); 403 const char *remote = "any"; local 425 remote = format_host(AF_INET6, sizeof(addr), &addr); 428 print_string(PRINT_ANY, "remote", "remote %s ", remote);
|
link_iptnl.c | 32 "Usage: ... %s [ remote ADDR ]\n" 194 if (strcmp(*argv, "remote") == 0) { 388 const char *remote = "any"; local 398 remote = format_host(AF_INET, 4, &addr); 401 print_string(PRINT_ANY, "remote", "remote %s ", remote);
|
/external/ipsec-tools/src/racoon/ |
gssapi.c | 154 gssapi_get_default_name(struct ph1handle *iph1, int remote, gss_name_t *service) 162 sa = remote ? iph1->remote : iph1->local;
|
/external/libunwind/doc/ |
libunwind.tex | 127 Normally, \Prog{libunwind} supports both local and remote unwinding 167 \section{Remote Unwinding} 169 \Prog{Libunwind} can also be used to unwind a stack in a ``remote'' 170 process. Here, ``remote'' may mean another process on the same 172 one that is running \Prog{libunwind}. Remote unwinding is typically 175 Before you can unwind a remote process, you need to create a new 181 communicate with the remote process. In particular, there are 250 signal-safe). For remote-unwinding, \emph{none} of the
|
unw_init_local.tex | 61 version of \Prog{libunwind} which supports remote unwinding only
|
/frameworks/rs/tests/lldb/tests/harness/ |
util_android.py | 98 # remote invocation 497 '''Reboot the remote device. 554 def forward_port(self, local, remote): 559 remote: The integer that is the remote port to which to forward. 561 cmd = 'forward tcp:%s tcp:%s' % (str(local), str(remote)) 636 # if the remote is an emulator do not even try to reboot 712 # timeout hit, the remote process has not fulfilled our request by 724 '''Entry point for the remote process.
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/ |
NdkGdbLaunchDelegate.java | 330 // setup port forwarding between local port & remote (device) unix domain socket 371 private void pull(IDevice device, String remote, IPath solibFolder) throws 373 String remoteFileName = new Path(remote).toFile().getName(); 375 device.pullFile(remote, targetFile);
|
/cts/tests/tests/externalservice/src/android/externalservice/cts/ |
ExternalServiceTest.java | 141 Messenger remote = new Messenger(mConnection.service); local 142 ServiceIdentity id = identifyService(remote); 191 fail("Unexpected remote exception" + e); 318 fail("Unexpected remote exception: " + e);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_ssl.py | 156 remote = ("svn.python.org", 443)
157 with test_support.transient_internet(remote[0]):
160 s.connect(remote)
163 s.connect(remote)
169 s.connect(remote)
342 remote = ("sha256.tbs-internet.com", 443)
349 s.connect(remote)
352 (remote, s.cipher()))
[all...] |
/external/curl/docs/cmdline-opts/ |
quote.d | 7 Send an arbitrary command to the remote FTP or SFTP server. Quote commands are
|