/external/sepolicy/ |
ping.te | 1 type ping, domain; 2 permissive ping; 4 domain_auto_trans(shell, ping_exec, ping) 5 unconfined_domain(ping)
|
/external/smack/src/org/jivesoftware/smackx/ping/packet/ |
Pong.java | 17 package org.jivesoftware.smackx.ping.packet; 24 * Composes a Pong packet from a received ping packet. This basically swaps 27 * @param ping 29 public Pong(Ping ping) { 31 setFrom(ping.getTo()); 32 setTo(ping.getFrom()); 33 setPacketID(ping.getPacketID());
|
Ping.java | 17 package org.jivesoftware.smackx.ping.packet; 20 import org.jivesoftware.smackx.ping.PingManager; 22 public class Ping extends IQ { 24 public Ping() { 27 public Ping(String from, String to) {
|
/external/chromium_org/chrome/test/functional/ |
chromeos_vpn.py | 22 """Attempt to ping a remote host. 25 True if the ping succeeds. 28 return subprocess.call(['ping', '-c', '1', '-W', 46 self.assertFalse(self._PingTest(vpn['ping']), 47 msg='VPN ping succeeded when not connected.') 61 self.assertTrue(self._PingTest(vpn['ping']), msg='VPN ping failed.') 63 self.assertFalse(self._PingTest(vpn['ping']), 64 msg='VPN ping succeeded when not connected.') 67 self.assertTrue(self._PingTest(vpn['ping']), msg='VPN ping failed.' [all...] |
/external/chromium_org/third_party/libjingle/source/talk/base/ |
win32_unittest.cc | 57 WinPing ping; local 58 ASSERT_TRUE(ping.IsValid()); 60 // Test valid ping cases. 61 WinPing::PingResult result = ping.Ping(IPAddress(INADDR_LOOPBACK), 20, 50, 1, 65 WinPing::PingResult v6result = ping.Ping(IPAddress(in6addr_loopback), 20, 71 ASSERT_EQ(WinPing::PING_INVALID_PARAMS, ping.Ping( 73 ASSERT_EQ(WinPing::PING_INVALID_PARAMS, ping.Ping [all...] |
/external/iputils/doc/ |
index.db | 3 <!ENTITY ping SYSTEM "ping.sgml"> 17 &ping;
|
/external/smack/src/org/jivesoftware/smackx/ping/ |
PingManager.java | 17 package org.jivesoftware.smackx.ping; 43 import org.jivesoftware.smackx.ping.packet.Ping; 44 import org.jivesoftware.smackx.ping.packet.Pong; 47 * Implements the XMPP Ping as defined by XEP-0199. This protocol offers an 48 * alternative to the traditional 'white space ping' approach of determining the 49 * availability of an entity. The XMPP Ping protocol allows ping messages to be 55 * Ping</a> 59 public static final String NAMESPACE = "urn:xmpp:ping"; 199 public IQ ping(String jid, long pingTimeout) { method in class:PingManager 224 public IQ ping(String jid) { method in class:PingManager [all...] |
/external/chromium_org/jingle/notifier/listener/ |
send_ping_task_unittest.cc | 36 "<ping:ping xmlns:ping=\"urn:xmpp:ping\"/></cli:iq>";
|
/external/chromium_org/rlz/lib/ |
financial_ping.h | 5 // Library functions related to the Financial Server ping. 25 // /pso/ping?as=swg&brand=GGLD&id=124&hl=en& 33 // Returns whether the time is right to send a ping. 34 // If no_delay is true, this should always ping if there are events, 36 // If no_delay is false, this should ping if current time < last_ping time 42 // Set the last ping time to be now. Writes to RlzValueStore. 45 // Clear the last ping time - should be called on uninstall. 49 // Ping the financial server with request. Writes to RlzValueStore.
|
/external/iputils/ |
Android.mk | 4 LOCAL_SRC_FILES:= ping.c ping_common.c 5 LOCAL_MODULE := ping
|
RELNOTES | 24 ping,ping6: Check outgoing device only if specified. 30 ping,tracepath doc: Fix missing end tags. 39 ping,rdisc: Optimize checksumming. 42 ping,rdisc: Use macro to get odd byte when checksumming. 47 ping,ping6: Allow printing usage without permission errors. 48 ping,ping6: Fix cap_t leakage. 49 arping,ping,ping6: Do not ideologically check return value from cap_free,cap_{set,get}_flag(). 65 ping: Exit on SO_BINDTODEVICE failure. 66 ping: Warn if kernel has selected source address from other interface. 67 ping: Clarify difference between -I device and -I addr [all...] |
/packages/apps/Exchange/src/com/android/exchange/service/ |
PingTask.java | 30 * Thread management class for Ping operations. 45 /** Start the ping loop. */ 50 /** Abort the ping loop (used when another operation interrupts the ping). */ 55 /** Restart the ping loop (used when a ping request happens during a ping). */ 62 LogUtils.i(TAG, "Ping task starting for %d", mOperation.getAccountId()); 70 // If we get any sort of exception here, treat it like the ping returned a connection 72 LogUtils.e(TAG, e, "Ping exception for account %d", mOperation.getAccountId()) [all...] |
/external/chromium_org/ppapi/native_client/tests/ppapi_browser/crash/ |
ppapi_crash_off_main_thread.cc | 34 // This will allow us to ping the nexe to detect a crash that occured 36 void Ping() { 37 LOG_TO_BROWSER("ping received"); 44 RegisterTest("Ping", Ping);
|
/external/smack/src/org/jivesoftware/smackx/ping/provider/ |
PingProvider.java | 17 package org.jivesoftware.smackx.ping.provider; 21 import org.jivesoftware.smackx.ping.packet.Ping; 27 // No need to use the ping constructor with arguments. IQ will already 29 return new Ping();
|
/external/chromium_org/content/test/data/workers/ |
worker_close.html | 14 worker.postMessage("ping"); 22 sharedWorker.port.postMessage("ping");
|
single_worker.html | 11 worker.postMessage("ping");
|
/external/smack/asmack-master/ |
CHANGELOG | 2 - Removed the whitespace ping code SMACK-412 5 - The default ping intervall is now configured in seconds and not milliseconds
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_openpty.py | 16 os.write(slave, 'Ping!') 17 self.assertEqual(os.read(master, 1024), 'Ping!')
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_openpty.py | 16 os.write(slave, 'Ping!') 17 self.assertEqual(os.read(master, 1024), 'Ping!')
|
/external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
pingtask.cc | 48 // Received a ping response of some sort (don't care what it is). 54 // If the ping timed out, signal. 60 // Send a ping if it's time. 70 // Wake ourselves up when it's time to send another ping or when the ping 80 // Get the task manager to run this task so we can send a ping or signal or 81 // process a ping response.
|
/development/samples/training/notify-user/res/values/ |
strings.xml | 25 <string name="notification">Ping Notification</string> 26 <string name="label">Ping Me</string> 29 <string name="ping">Ping!</string> 35 <string name="ping_text">Set Seconds Until Ping</string>
|
/external/chromium_org/rlz/win/lib/ |
machine_deal.h | 22 // Get the OEM Deal Confirmation Code from the registry. Used to ping 29 // Parses a ping response, checks if it is valid and sets the machine DCC 36 // Gets the new DCC to set from a ping response. Returns true if the ping 43 // Get the DCC cgi argument string to append to a daily or financial ping.
|
/external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/ |
Ping.java | 22 * A locally-originated ping. 24 public final class Ping { 29 Ping() { 50 * Returns the round trip time for this ping in nanoseconds, waiting for the 60 * Returns the round trip time for this ping in nanoseconds, or -1 if the
|
/external/okhttp/src/test/java/com/squareup/okhttp/internal/spdy/ |
SpdyConnectionTest.java | 109 peer.acceptFrame(); // PING 111 peer.sendFrame().ping(0, 1); 118 connection.ping().roundTripTime(); // Ensure that the SYN_REPLY has been received. 124 MockSpdyPeer.InFrame ping = peer.takeFrame(); local 125 assertEquals(TYPE_PING, ping.type); 193 MockSpdyPeer.InFrame ping = peer.takeFrame(); local 194 assertEquals(TYPE_NOOP, ping.type); 195 assertEquals(0, ping.flags); 200 peer.sendFrame().ping(0, 2); 201 peer.acceptFrame(); // PING 208 MockSpdyPeer.InFrame ping = peer.takeFrame(); local 224 Ping ping = connection.ping(); local [all...] |
/external/nist-sip/java/gov/nist/core/ |
ThreadAuditor.java | 9 * - Threads register with the auditor at startup and "ping" the auditor every so often. 11 * auditor reports if the threads are healthy or if any of them failed to ping and are 15 * the thread can periodically ping the auditor. 27 /// How often are threads supposed to ping 48 /// Called by the auditor thread to check the ping status of the thread 53 /// Called by the auditor thread to reset the ping status of the thread 63 // Helper function to allow threads to ping using this handle 64 public void ping() { method in class:ThreadAuditor.ThreadHandle 65 threadAuditor.ping(this); 68 // Helper function to allow threads to get the ping interval directly from this handl 118 public synchronized void ping(ThreadHandle threadHandle) { method in class:ThreadAuditor [all...] |