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

1 2

  /external/webkit/Source/WebKit/chromium/tests/
CCThreadTest.cpp 41 void ping(CCCompletionEvent* completion) function in class:__anon16320::PingPongUsingCondition
56 thread->postTask(createCCThreadTask(&target, &PingPongUsingCondition::ping, &completion));
64 void ping() function in class:__anon16320::PingPongTestUsingTasks
84 thread->postTask(createCCThreadTask(&target, &PingPongTestUsingTasks::ping));
  /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 38 Job pingJob = new Job("Android SDK Ping") {
48 ping(stats, toolsPath);
56 private static void ping(SdkStatsService stats, String toolsLocation) { method in class:MonitorStartup
80 stats.ping("ddms", revision); //$NON-NLS-1$
83 // couldn't find the file? don't ping.
85 // 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:__anon18321::Player
  /sdk/ddms/app/src/com/android/ddms/
Main.java 87 // the "ping" argument means to check in with the server and exit
89 if (args.length >= 3 && args[0].equals("ping")) {
90 stats.ping(args);
106 // we're past the point where ddms can be called just to send a ping, so we can
107 // ping for ddms itself.
108 ping(stats, ddmsParentLocation); method
139 private static void ping(SdkStatsService stats, String ddmsParentLocation) { method in class:Main
163 stats.ping("ddms", sRevision); //$NON-NLS-1$
166 // couldn't find the file? don't ping.
168 // couldn't find the file? don't ping
    [all...]
  /sdk/sdkstats/tests/com/android/sdkstats/
SdkStatsServiceTest.java 85 // 2- check the ping time,
87 // 4- create the ping URL
88 // 5- and send the network ping in a thread.
90 // obvious we don't check the ping time in the prefs nor send the actual ping.
313 // Send emulator ping with just emulator version, no GL stuff
314 m.ping("emulator", "12");
325 // Send emulator ping with just emulator version, no GL stuff.
326 // This is the same request but using the variable string list API, arg 0 is the "ping" app.
327 m.ping(new String[] { "ping", "emulator", "12" })
    [all...]
  /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/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
  /external/nist-sip/java/gov/nist/javax/sip/
EventScanner.java 482 threadHandle.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
UDPMessageChannel.java 273 threadHandle.ping();
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui/
wpagui.ui.h 36 connect(timer, SIGNAL(timeout()), SLOT(ping()));
527 void WpaGui::ping() function in class:WpaGui
558 if (ctrlRequest("PING", buf, &len) < 0) {
559 printf("PING failed - trying to reconnect\n");
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardSelectorView.java 168 mGlowPadView.ping();
  /frameworks/base/services/java/com/android/server/pm/
Installer.java 314 public boolean ping() { method in class:Installer
315 if (execute("ping") < 0) {
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
LockScreen.java 57 private static final int ON_RESUME_PING_DELAY = 500; // delay first ping until the screen is on
120 // Animate the widget if it supports ping()
121 public void ping(); method in interface:LockScreen.UnlockWidgetCommonMethods
190 public void ping() { method in class:LockScreen.SlidingTabMethods
239 public void ping() { method in class:LockScreen.WaveViewMethods
380 public void ping() { method in class:LockScreen.GlowPadViewMethods
381 mGlowPadView.ping();
597 mUnlockWidgetMethods.ping();
  /external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
tst_qscriptvalue.cpp 666 QScriptValue nstring("ping");
677 QTest::newRow("native string") << nstring << QString("ping");
769 QScriptValue ping = engine.evaluate("( function() {return 'ping';} )"); local
778 QVERIFY(ping.isValid());
779 QVERIFY(ping.isFunction());
780 result = ping.call();
782 QCOMPARE(result.toString(), QString::fromUtf8("ping"));
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmAlertFullScreen.java 64 // Parameters for the GlowPadView "ping" animation; see triggerPing().
185 mGlowPadView.ping();
  /sdk/sdkstats/src/com/android/sdkstats/
SdkStatsService.java 35 /** Utility class to send "ping" usage reports to the server. */
43 /** Minimum interval between ping, in milliseconds. */
54 * Send a "ping" to the Google toolbar server, if enough time has
55 * elapsed since the last ping, and if the user has not opted out.
57 * This is a simplified version of {@link #ping(String[])} that only
61 * @param app The application name that reports the ping (e.g. "emulator" or "ddms".)
64 * @see #ping(String[])
66 public void ping(String app, String version) { method in class:SdkStatsService
71 * Send a "ping" to the Google toolbar server, if enough time has
72 * elapsed since the last ping, and if the user has not opted out
98 public void ping(String[] arguments) { method in class:SdkStatsService
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
physicalsocketserver.cc 407 WinPing ping; local
408 if (!ping.IsValid()) {
415 WinPing::PingResult result = ping.Ping(addr.ip(), size, 0, 1, false);
    [all...]
win32socketserver.cc 511 WinPing ping; local
512 if (!ping.IsValid()) {
519 WinPing::PingResult result = ping.Ping(addr.ip(), size, 0, 1, false);
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/
wpagui.cpp 167 connect(timer, SIGNAL(timeout()), SLOT(ping()));
744 void WpaGui::ping() function in class:WpaGui
776 if (ctrlRequest("PING", buf, &len) < 0) {
777 printf("PING failed - trying to reconnect\n");
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
wpagui.cpp 159 connect(timer, SIGNAL(timeout()), SLOT(ping()));
767 void WpaGui::ping() function in class:WpaGui
799 if (ctrlRequest("PING", buf, &len) < 0) {
800 printf("PING failed - trying to reconnect\n");
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
SearchPanelView.java 240 mGlowPadView.ping();
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
EmulatorConsole.java 214 // if the console exist, we ping the emulator to check the connection.
215 if (console.ping() == false) {
300 * Ping the emulator to check if the connection is still alive.
303 private synchronized boolean ping() { method in class:EmulatorConsole
  /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...]

Completed in 925 milliseconds

1 2