/external/arm-trusted-firmware/plat/xilinx/common/ |
D | ipi.c | 68 static inline int is_ipi_mb_within_range(uint32_t local, uint32_t remote) in is_ipi_mb_within_range() argument 72 if (remote >= ipi_total || local >= ipi_total) in is_ipi_mb_within_range() 87 int ipi_mb_validate(uint32_t local, uint32_t remote, unsigned int is_secure) in ipi_mb_validate() argument 91 if (!is_ipi_mb_within_range(local, remote)) in ipi_mb_validate() 95 else if (IPI_IS_SECURE(remote) && !is_secure) in ipi_mb_validate() 108 void ipi_mb_open(uint32_t local, uint32_t remote) in ipi_mb_open() argument 111 IPI_BIT_MASK(remote)); in ipi_mb_open() 113 IPI_BIT_MASK(remote)); in ipi_mb_open() 123 void ipi_mb_release(uint32_t local, uint32_t remote) in ipi_mb_release() argument 126 IPI_BIT_MASK(remote)); in ipi_mb_release() [all …]
|
/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/llvm-project/lldb/docs/use/ |
D | remote.rst | 7 process will be the remote system. 9 To enable remote debugging, LLDB employs a client-server architecture. The 10 client part runs on the local system and the remote system runs the server. The 11 client and server communicate using the gdb-remote protocol, usually 13 the LLDB-specific extensions are documented in docs/lldb-gdb-remote.txt file 14 inside LLDB source repository. Besides the gdb-remote stub, the server part of 16 advanced debugging operations, like copying files from/to the remote system and 17 can be used to execute arbitrary shell commands on the remote system. 19 In order to reduce code complexity and improve remote debugging experience LLDB 20 on Linux and macOS uses the remote debugging stub even when debugging a process [all …]
|
/external/llvm-project/lldb/tools/debugserver/source/ |
D | debugserver.cpp | 90 RNBRunLoopMode RNBRunLoopGetStartModeFromRemote(RNBRemote *remote) { in RNBRunLoopGetStartModeFromRemote() argument 93 if (remote) { in RNBRunLoopGetStartModeFromRemote() 94 RNBContext &ctx = remote->Context(); in RNBRunLoopGetStartModeFromRemote() 117 err = remote->HandleReceivedPacket(&type); in RNBRunLoopGetStartModeFromRemote() 195 RNBRunLoopMode RNBRunLoopLaunchInferior(RNBRemote *remote, in RNBRunLoopLaunchInferior() argument 200 RNBContext &ctx = remote->Context(); in RNBRunLoopLaunchInferior() 269 if (remote->Comm().IsConnected()) { in RNBRunLoopLaunchInferior() 282 err = remote->HandleReceivedPacket(&type); in RNBRunLoopLaunchInferior() 363 RNBRunLoopMode RNBRunLoopLaunchAttaching(RNBRemote *remote, in RNBRunLoopLaunchAttaching() argument 366 RNBContext &ctx = remote->Context(); in RNBRunLoopLaunchAttaching() [all …]
|
D | libdebugserver.cpp | 67 RNBRemote *remote = remoteSP.get(); in RNBRunLoopGetStartModeFromRemote() local 68 RNBContext &ctx = remote->Context(); in RNBRunLoopGetStartModeFromRemote() 85 err = remote->HandleReceivedPacket(&type); in RNBRunLoopGetStartModeFromRemote() 143 RNBRunLoopMode HandleProcessStateChange(RNBRemoteSP &remote, bool initialize) { in HandleProcessStateChange() argument 144 RNBContext &ctx = remote->Context(); in HandleProcessStateChange() 179 remote->FlushSTDIO(); in HandleProcessStateChange() 195 remote->NotifyThatProcessStopped(); in HandleProcessStateChange() 213 remote->HandlePacket_last_signal(NULL); in HandleProcessStateChange() 226 RNBRunLoopMode RNBRunLoopInferiorExecuting(RNBRemoteSP &remote) { in RNBRunLoopInferiorExecuting() argument 228 RNBContext &ctx = remote->Context(); in RNBRunLoopInferiorExecuting() [all …]
|
/external/webrtc/pc/ |
D | peer_connection_simulcast_unittest.cc | 129 PeerConnectionWrapper* remote, in ExchangeOfferAnswer() argument 135 EXPECT_TRUE(remote->SetRemoteDescription(std::move(offer), &err)) << err; in ExchangeOfferAnswer() 136 auto answer = remote->CreateAnswerAndSetAsLocal(); in ExchangeOfferAnswer() 332 auto remote = CreatePeerConnectionWrapper(); in TEST_F() local 343 EXPECT_TRUE(remote->SetRemoteDescription(std::move(offer), &error)) << error; in TEST_F() 344 auto answer = remote->CreateAnswerAndSetAsLocal(); in TEST_F() 364 auto remote = CreatePeerConnectionWrapper(); in TEST_F() local 378 EXPECT_TRUE(remote->SetRemoteDescription(std::move(offer), &error)) << error; in TEST_F() 379 auto answer = remote->CreateAnswerAndSetAsLocal(); in TEST_F() 399 auto remote = CreatePeerConnectionWrapper(); in TEST_F() local [all …]
|
D | composite_rtp_transport_test.cc | 261 rtc::FakePacketTransport remote("remote"); in TEST_F() local 262 remote.SetDestination(packet_transport_1_.get(), false); in TEST_F() 272 rtc::FakePacketTransport remote("remote"); in TEST_F() local 273 remote.SetDestination(packet_transport_1_.get(), false); in TEST_F() 285 rtc::FakePacketTransport remote("remote"); in TEST_F() local 286 remote.SetDestination(packet_transport_2_.get(), false); in TEST_F() 298 rtc::FakePacketTransport remote("remote"); in TEST_F() local 299 remote.SetDestination(packet_transport_1_.get(), false); in TEST_F() 309 rtc::FakePacketTransport remote("remote"); in TEST_F() local 310 remote.SetDestination(packet_transport_1_.get(), false); in TEST_F() [all …]
|
/external/arm-trusted-firmware/plat/xilinx/common/include/ |
D | ipi.h | 54 int ipi_mb_validate(uint32_t local, uint32_t remote, unsigned int is_secure); 57 void ipi_mb_open(uint32_t local, uint32_t remote); 60 void ipi_mb_release(uint32_t local, uint32_t remote); 63 int ipi_mb_enquire_status(uint32_t local, uint32_t remote); 66 void ipi_mb_notify(uint32_t local, uint32_t remote, uint32_t is_blocking); 69 void ipi_mb_ack(uint32_t local, uint32_t remote); 72 void ipi_mb_disable_irq(uint32_t local, uint32_t remote); 75 void ipi_mb_enable_irq(uint32_t local, uint32_t remote);
|
/external/chromium-trace/catapult/devil/devil/android/sdk/ |
D | gce_adb_wrapper.py | 46 def Push(self, local, remote, **kwargs): argument 55 self.Shell('mkdir -p %s' % cmd_helper.SingleQuote(remote)) 60 self._PushObject(os.path.join(local, f), os.path.join(remote, f)) 62 'chmod 777 %s' % cmd_helper.SingleQuote(os.path.join(remote, f))) 64 parent_dir = remote[0:remote.rfind('/')] 67 self._PushObject(local, remote) 68 self.Shell('chmod 777 %s' % cmd_helper.SingleQuote(remote)) 70 def _PushObject(self, local, remote): argument 80 'root@%s:%s' % (self._instance_ip, remote) 90 def Pull(self, remote, local, **kwargs): argument [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 …]
|
/external/toolchain-utils/ |
D | image_chromeos.py | 44 def CheckForCrosFlash(chromeos_root, remote, log_level): argument 50 command, chromeos_root=chromeos_root, machine=remote) 52 ret == 255, 'Failed ssh to %s (for checking cherrypy)' % remote) 55 'cros flash cannot work.'.format(remote)) 58 def DisableCrosBeeps(chromeos_root, remote, log_level): argument 66 command, chromeos_root=chromeos_root, machine=remote) 165 if options.remote is None: 171 board = cmd_executer.CrosLearnBoard(options.chromeos_root, options.remote) 198 list(options.remote.split()), options.chromeos_root) 211 command, chromeos_root=options.chromeos_root, machine=options.remote) [all …]
|
D | remote_test.py | 44 if options.remote is None: 52 command, chromeos_root=options.chromeos_root, machine=options.remote) 61 dest_machine=options.remote, 67 dest_machine=options.remote, 74 dest_machine=options.remote, 81 dest_machine=options.remote, 90 src_machine=options.remote, 97 src_machine=options.remote, 100 board = ce.CrosLearnBoard(options.chromeos_root, options.remote)
|
/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/llvm-project/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/toolchain-utils/crosperf/ |
D | schedv2_unittest.py | 95 self.assertIn('chromeos-daisy1.cros', self.exp.remote) 96 self.assertIn('chromeos-daisy2.cros', self.exp.remote) 97 self.assertIn('chromeos-daisy3.cros', self.exp.remote) 98 self.assertIn('chromeos-daisy4.cros', self.exp.remote) 99 self.assertIn('chromeos-daisy5.cros', self.exp.remote) 111 self.assertIn('chromeos-daisy1.cros', self.exp.remote) 112 self.assertIn('chromeos-daisy2.cros', self.exp.remote) 113 self.assertNotIn('chromeos-daisy3.cros', self.exp.remote) 114 self.assertIn('chromeos-daisy4.cros', self.exp.remote) 115 self.assertNotIn('chromeos-daisy5.cros', self.exp.remote) [all …]
|
/external/skia/tools/skqp/ |
D | make_apk_list.py | 78 for remote in check_output(['git', 'remote']).strip().split('\n'): 79 remote = remote.strip() 80 url = check_output(['git', 'remote', 'get-url', remote]).strip() 82 arg = remote + '/' + branch 87 def table(o, remote, branch, excludes): argument 92 commits = [rev_parse((remote, branch))] 96 o.write('<h2>Remote: %s<br>Branch: %s</h2>\n' % (remote, branch)) 112 commit_url = '%s/+/%s' % (remote, commit)
|
/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/curl/docs/cmdline-opts/ |
D | remote-name-all.d | 1 Long: remote-name-all 2 Help: Use the remote file name for all URLs 7 if --remote-name were used for each one. So if you want to disable that for a 8 specific URL after --remote-name-all has been used, you must use "-o -" or 9 --no-remote-name.
|
/external/curl/tests/data/ |
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 49 GET http://test.remote.example.com.1150:1234/path/ HTTP/1.1 50 Host: test.remote.example.com.1150:1234
|
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 65 GET http://different.remote.haxx.se.1421:8990/ HTTP/1.1 66 Host: different.remote.haxx.se.1421:8990
|
/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()
|