HomeSort by relevance Sort by last modified time
    Searched refs:ping (Results 1 - 25 of 67) sorted by null

1 2 3

  /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/ping/
Android.mk 4 LOCAL_SRC_FILES:= ping.c ping_common.c
5 LOCAL_MODULE := ping
  /external/smack/src/org/jivesoftware/smackx/ping/
PingFailedListener.java 17 package 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...]
ServerPingTask.java 17 package org.jivesoftware.smackx.ping;
72 // Ping was successful, wind-up the periodic task again
  /external/webkit/Source/WebKit/chromium/tests/
CCThreadTest.cpp 41 void ping(CCCompletionEvent* completion) function in class:__anon17958::PingPongUsingCondition
56 thread->postTask(createCCThreadTask(&target, &PingPongUsingCondition::ping, &completion));
64 void ping() function in class:__anon17958::PingPongTestUsingTasks
84 thread->postTask(createCCThreadTask(&target, &PingPongTestUsingTasks::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/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/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyConnection.java 103 private Map<Integer, Ping> pings;
237 * Sends a ping frame to the peer. Use the returned object to await the
238 * ping's response and observe its round trip time.
240 public Ping ping() throws IOException { method in class:SpdyConnection
241 Ping ping = new Ping(); local
249 if (pings == null) pings = new HashMap<Integer, Ping>();
250 pings.put(pingId, ping);
543 @Override public void ping(int flags, int streamId) { method in class:SpdyConnection.Reader
548 Ping ping = removePing(streamId); local
    [all...]
SpdyReader.java 265 handler.ping(flags, id);
310 void ping(int flags, int streamId); method in interface:SpdyReader.Handler
  /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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/
MonitorStartup.java 37 Job pingJob = new Job("Android SDK Ping") {
47 ping(stats, toolsPath);
55 private static void ping(SdkStatsService stats, String toolsLocation) { method in class:MonitorStartup
79 stats.ping("ddms", revision); //$NON-NLS-1$
82 // couldn't find the file? don't ping.
84 // couldn't find the file? don't ping.
  /frameworks/base/media/tests/players/
invoke_mock_media_player.cpp 47 const char *kPing = "ping";
52 enum TestType {TEST_UNKNOWN, PING};
65 mTest = PING;
92 void ping(const Parcel& request, Parcel *reply);
101 case PING:
102 ping(request, reply);
109 void Player::ping(const Parcel& request, Parcel *reply) function in class:__anon19827::Player
  /external/webkit/Source/WebCore/html/
HTMLAreaElement.idl 29 attribute [Reflect] DOMString ping;
HTMLAnchorElement.idl 30 attribute [Reflect] DOMString ping;
  /build/target/product/
base.mk 89 ping \
  /external/kernel-headers/original/linux/
watchdog.h 48 #define WDIOF_KEEPALIVEPING 0x8000 /* Keep alive ping reply */
66 * @ping: The routine that sends a keepalive ping to the watchdog device.
83 int (*ping)(struct watchdog_device *); member in struct:watchdog_ops
  /cts/tests/tests/media/src/android/media/cts/
MediaRandomTest.java 104 * w.ping();
106 * w.ping();
149 public synchronized void ping() { method in class:MediaRandomTest.Watchdog
199 watchdog.ping();
283 watchdog.ping();
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
wpagui.h 51 virtual void ping();
  /prebuilts/devtools/tools/lib/
sdkstats.jar 
  /external/iproute2/ip/
ifcfg 142 if ping -q -c 2 -w 4 $peer ; then
  /external/quake/quake/src/QW/server/
sv_main.c 244 float ping; local
249 ping = 0;
255 ping += frame->ping_time;
261 ping /= count;
263 return ping*1000;
345 int ping; local
360 ping = SV_CalcPing (cl);
363 ping, cl->name, Info_ValueForKey (cl->userinfo, "skin"), top, bottom);
793 if (!strcmp(c, "ping") || ( c[0] == A2A_PING && (c[1] == 0 || c[1] == '\n')) )
    [all...]
  /development/samples/training/notify-user/src/com/example/android/pingme/
PingService.java 55 // ping, snooze, and dismiss.
88 .setContentText(getString(R.string.ping))
  /external/nist-sip/java/gov/nist/javax/sip/stack/
UDPMessageProcessor.java 186 threadHandle.ping();
247 // This socket timeout alows us to ping the thread auditor periodically

Completed in 2789 milliseconds

1 2 3