/external/python/cpython2/Demo/pdist/ |
D | cmptree.py | 31 remote = FSProxy.FSProxyClient(address, verbose) 32 compare(local, remote, mode) 33 remote._close() 50 def compare(local, remote, mode): argument 53 sums_id = remote._send('sumlist') 54 subdirs_id = remote._send('listsubdirs') 55 remote._flush() 61 sums = remote._recv(sums_id) 69 recvfile(local, remote, name) 74 rmtime = remote.mtime(name) [all …]
|
/external/ipsec-tools/src/racoon/ |
D | isakmp.c | 216 struct sockaddr_storage remote; local 218 unsigned int remote_len = sizeof(remote); 226 MSG_PEEK, (struct sockaddr *)&remote, &remote_len, 240 0, (struct sockaddr *)&remote, &remote_len)) != 1) { 283 plog(LLV_ERROR, LOCATION, (struct sockaddr *)&remote, 288 0, (struct sockaddr *)&remote, &remote_len)) < 0) { 301 0, (struct sockaddr *)&remote, &remote_len)) < 0) { 316 0, (struct sockaddr *)&remote, &remote_len)) < 0) { 325 0, (struct sockaddr *)&remote, &remote_len, 347 plog(LLV_ERROR, LOCATION, (struct sockaddr *)&remote, [all …]
|
D | handler.c | 145 getph1byaddr(local, remote, established) in getph1byaddr() argument 146 struct sockaddr *local, *remote; in getph1byaddr() 153 plog(LLV_DEBUG2, LOCATION, NULL, "remote: %s\n", saddr2str(remote)); 159 plog(LLV_DEBUG2, LOCATION, NULL, "p->remote: %s\n", saddr2str(p->remote)); 166 && CMPSADDR(remote, p->remote) == 0){ 178 getph1byaddrwop(local, remote) in getph1byaddrwop() argument 179 struct sockaddr *local, *remote; in getph1byaddrwop() 187 && cmpsaddrwop(remote, p->remote) == 0) 200 getph1bydstaddrwop(remote) in getph1bydstaddrwop() argument 201 struct sockaddr *remote; in getph1bydstaddrwop() [all …]
|
D | remoteconf.c | 97 getrmconf_strict(remote, allow_anon) in getrmconf_strict() argument 98 struct sockaddr *remote; in getrmconf_strict() 119 if (remote->sa_family != AF_UNSPEC && 120 extract_port(remote) != IPSEC_PORT_ANY) 124 if (remote->sa_family == AF_UNSPEC) 127 GETNAMEINFO(remote, addr, port); 135 if ((remote->sa_family == AF_UNSPEC 136 && remote->sa_family == p->remote->sa_family) 137 || (!withport && cmpsaddrwop(remote, p->remote) == 0) 138 || (withport && cmpsaddrstrict(remote, p->remote) == 0)) { [all …]
|
D | isakmp_inf.c | 272 plog(LLV_ERROR, LOCATION, iph1->remote, 304 plog(LLV_ERROR, LOCATION, iph1->remote, 310 plog(LLV_ERROR, LOCATION, iph1->remote, 377 plog(LLV_ERROR, LOCATION, iph1->remote, 382 plog(LLV_ERROR, LOCATION, iph1->remote, 387 plog(LLV_ERROR, LOCATION, iph1->remote, 394 plog(LLV_ERROR, LOCATION, iph1->remote, 406 plog(LLV_ERROR, LOCATION, iph1->remote, 412 plog(LLV_DEBUG, LOCATION, iph1->remote, 430 plog(LLV_ERROR, LOCATION, iph1->remote, [all …]
|
D | isakmp_ident.c | 141 isakmp_newcookie((caddr_t)&iph1->index, iph1->remote, iph1->local); 209 isakmp_printpacket(iph1->sendbuf, iph1->local, iph1->remote, 0); 286 plog(LLV_ERROR, LOCATION, iph1->remote, 306 plog(LLV_ERROR, LOCATION, iph1->remote, 316 plog(LLV_INFO, LOCATION, iph1->remote, 323 plog(LLV_ERROR, LOCATION, iph1->remote, 391 isakmp_printpacket(iph1->sendbuf, iph1->local, iph1->remote, 0); 400 if (add_recvdpkt(iph1->remote, iph1->local, iph1->sendbuf, msg) == -1) { 509 plog(LLV_ERROR, LOCATION, iph1->remote, 531 plog(LLV_ERROR, LOCATION, iph1->remote, [all …]
|
D | isakmp_base.c | 139 isakmp_newcookie((caddr_t)&iph1->index, iph1->remote, iph1->local); 249 isakmp_printpacket(iph1->sendbuf, iph1->local, iph1->remote, 0); 321 plog(LLV_ERROR, LOCATION, iph1->remote, 349 plog(LLV_ERROR, LOCATION, iph1->remote, 358 plog(LLV_ERROR, LOCATION, iph1->remote, 365 plog(LLV_ERROR, LOCATION, iph1->remote, 372 plog(LLV_INFO, LOCATION, iph1->remote, 379 plog(LLV_ERROR, LOCATION, iph1->remote, 531 if ((natd[0] = natt_hash_addr (iph1, iph1->remote)) == NULL) { 533 "NAT-D hashing failed for %s\n", saddr2str(iph1->remote)); [all …]
|
/external/chromium-trace/catapult/devil/devil/android/sdk/ |
D | gce_adb_wrapper.py | 47 def Push(self, local, remote, **kwargs): argument 56 self.Shell('mkdir -p %s' % cmd_helper.SingleQuote(remote)) 61 self._PushObject(os.path.join(local, f), os.path.join(remote, f)) 63 cmd_helper.SingleQuote(os.path.join(remote, f))) 65 parent_dir = remote[0:remote.rfind('/')] 68 self._PushObject(local, remote) 69 self.Shell('chmod 777 %s' % cmd_helper.SingleQuote(remote)) 71 def _PushObject(self, local, remote): argument 84 'root@%s:%s' % (self._instance_ip, remote) 93 def Pull(self, remote, local, **kwargs): argument [all …]
|
/external/webrtc/webrtc/base/ |
D | socketpool.cc | 42 const SocketAddress& remote, int* err) { in RequestConnectedStream() argument 43 LOG_F(LS_VERBOSE) << "(" << remote << ")"; in RequestConnectedStream() 46 if (remote == it->first) { in RequestConnectedStream() 57 if (StreamInterface* stream = pool_->RequestConnectedStream(remote, err)) { in RequestConnectedStream() 59 active_.push_front(ConnectedStream(remote, stream)); in RequestConnectedStream() 120 NewSocketPool::RequestConnectedStream(const SocketAddress& remote, int* err) { in RequestConnectedStream() argument 122 factory_->CreateAsyncSocket(remote.family(), SOCK_STREAM); in RequestConnectedStream() 128 if ((socket->Connect(remote) != 0) && !socket->IsBlocking()) { in RequestConnectedStream() 158 ReuseSocketPool::RequestConnectedStream(const SocketAddress& remote, int* err) { in RequestConnectedStream() argument 163 int family = remote.family(); in RequestConnectedStream() [all …]
|
/external/toolchain-utils/ |
D | image_chromeos.py | 40 def CheckForCrosFlash(chromeos_root, remote, log_level): argument 46 command, chromeos_root=chromeos_root, machine=remote) 48 ret == 255, 'Failed ssh to %s (for checking cherrypy)' % remote) 51 'cros flash cannot work.'.format(remote)) 54 def DisableCrosBeeps(chromeos_root, remote, log_level): argument 62 command, chromeos_root=chromeos_root, machine=remote) 161 if options.remote is None: 167 board = cmd_executer.CrosLearnBoard(options.chromeos_root, options.remote) 194 list(options.remote.split()), options.chromeos_root) 207 command, chromeos_root=options.chromeos_root, machine=options.remote) [all …]
|
D | remote_test.py | 40 if options.remote is None: 48 command, chromeos_root=options.chromeos_root, machine=options.remote) 57 dest_machine=options.remote, 63 dest_machine=options.remote, 70 dest_machine=options.remote, 77 dest_machine=options.remote, 86 src_machine=options.remote, 93 src_machine=options.remote, 96 board = ce.CrosLearnBoard(options.chromeos_root, options.remote)
|
/external/u-boot/arch/arm/dts/ |
D | imx6q.dtsi | 161 remote-endpoint = <&hdmi_mux_2>; 165 remote-endpoint = <&mipi_mux_2>; 169 remote-endpoint = <&lvds0_mux_2>; 173 remote-endpoint = <&lvds1_mux_2>; 183 remote-endpoint = <&hdmi_mux_3>; 187 remote-endpoint = <&mipi_mux_3>; 191 remote-endpoint = <&lvds0_mux_3>; 195 remote-endpoint = <&lvds1_mux_3>; 219 remote-endpoint = <&ipu2_di0_hdmi>; 227 remote-endpoint = <&ipu2_di1_hdmi>; [all …]
|
/external/toolchain-utils/crosperf/ |
D | schedv2_unittest.py | 88 self.assertIn('chromeos-daisy1.cros', self.exp.remote) 89 self.assertIn('chromeos-daisy2.cros', self.exp.remote) 90 self.assertIn('chromeos-daisy3.cros', self.exp.remote) 91 self.assertIn('chromeos-daisy4.cros', self.exp.remote) 92 self.assertIn('chromeos-daisy5.cros', self.exp.remote) 104 self.assertIn('chromeos-daisy1.cros', self.exp.remote) 105 self.assertIn('chromeos-daisy2.cros', self.exp.remote) 106 self.assertNotIn('chromeos-daisy3.cros', self.exp.remote) 107 self.assertIn('chromeos-daisy4.cros', self.exp.remote) 108 self.assertNotIn('chromeos-daisy5.cros', self.exp.remote) [all …]
|
D | experiment.py | 27 def __init__(self, name, remote, working_directory, chromeos_root, argument 33 self.remote = remote 57 if not remote: 82 for machine in self.remote: 87 self.remote = [m.name for m in self.machine_manager.GetAllMachines()] 88 if not self.remote: 94 label.remote = [r for r in label.remote if r in self.remote]
|
/external/swiftshader/third_party/LLVM/utils/bugpoint/ |
D | RemoteRunSafely.sh | 93 remote="./"$PROGRAM 97 'rm -f '$remote' ; ' \ 98 'cat > '$remote' ; chmod +x '$remote' ; '$remote' '$*' ; ' \ 99 'err=$? ; rm -f '$remote' ; exit $err'
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/bugpoint/ |
D | RemoteRunSafely.sh | 93 remote="./"$PROGRAM 97 'rm -f '$remote' ; ' \ 98 'cat > '$remote' ; chmod +x '$remote' ; '$remote' '$*' ; ' \ 99 'err=$? ; rm -f '$remote' ; exit $err'
|
/external/llvm/utils/bugpoint/ |
D | RemoteRunSafely.sh | 93 remote="./"$PROGRAM 97 'rm -f '$remote' ; ' \ 98 'cat > '$remote' ; chmod +x '$remote' ; '$remote' '$*' ; ' \ 99 'err=$? ; rm -f '$remote' ; exit $err'
|
/external/testng/src/test/java/test/remote/ |
D | RemoteTest.java | 1 package test.remote; 6 import org.testng.remote.RemoteTestNG; 7 import org.testng.remote.strprotocol.IMessage; 8 import org.testng.remote.strprotocol.IMessageSender; 9 import org.testng.remote.strprotocol.MessageHub; 10 import org.testng.remote.strprotocol.SerializedMessageSender; 11 import org.testng.remote.strprotocol.StringMessageSender;
|
/external/vogar/src/vogar/ |
D | Target.java | 82 public abstract void push(File local, File remote); in push() argument 83 public abstract void pull(File remote, File local); in pull() argument 85 public final Task pushTask(final File local, final File remote) { in pushTask() argument 86 return new Task("push " + remote) { in pushTask() 88 push(local, remote); in pushTask() 94 public final Task rmTask(final File remote) { 95 return new Task("rm " + remote) { 97 rm(remote);
|
D | LocalTarget.java | 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/curl/docs/cmdline-opts/ |
D | remote-name-all.d | 1 Long: remote-name-all 2 Help: Use the remote file name for all URLs 6 if --remote-name were used for each one. So if you want to disable that for a 7 specific URL after --remote-name-all has been used, you must use "-o -" or 8 --no-remote-name.
|
/external/curl/tests/data/ |
D | test1421 | 36 --proxy http://%HOSTIP:%HTTPPORT http://test.remote.haxx.se.1421:8990/ http://different.remote.haxx… 59 GET http://test.remote.haxx.se.1421:8990/ HTTP/1.1 60 Host: test.remote.haxx.se.1421:8990 64 GET http://different.remote.haxx.se.1421:8990/ HTTP/1.1 65 Host: different.remote.haxx.se.1421:8990
|
D | test1150 | 33 --proxy http://%HOSTIP:%HTTPPORT http://test.remote.example.com.1150:150/path http://test.remote.ex… 43 GET http://test.remote.example.com.1150:150/path HTTP/1.1 44 Host: test.remote.example.com.1150:150 48 GET http://test.remote.example.com.1150:1234/path/ HTTP/1.1 49 Host: test.remote.example.com.1150:1234
|
D | test1241 | 41 …STIP:%HTTPPORT http://test.remote.haxx.se.1241:8990/../../hej/but/who/../1241?stupid=me/../1241#so… 52 GET http://test.remote.haxx.se.1241:8990/../../hej/but/who/../1241?stupid=me/../1241 HTTP/1.1 53 Host: test.remote.haxx.se.1241:8990 57 GET http://test.remote.haxx.se.1241:8990/../../hej/but/who/../12410001 HTTP/1.1 58 Host: test.remote.haxx.se.1241:8990
|
/external/tensorflow/tensorflow/core/grappler/graph_analyzer/ |
D | sig_node.h | 86 CombineHash(port_hasher(tag.remote), &hval); in operator() 93 : local(a_local), remote(a_remote) {} in LinkTag() 98 LinkTag() : local(false, 99), remote(false, 99) {} in LinkTag() 103 GenNode::Port remote; member 106 return local == other.local && remote == other.remote; 110 (local == other.local && remote < other.remote);
|