/external/oprofile/libutil/ |
op_lockfile.h | 25 * Write the pid into the given lock file. Stale
|
op_lockfile.c | 52 fprintf(stderr, "Removing stale lock file %s\n",
|
/external/webkit/LayoutTests/fast/events/touch/ |
touch-stale-node-crash.html | 12 <script src="resources/touch-stale-node-crash.js"></script>
|
/external/chromium/chrome/browser/chromeos/notifications/ |
notification_panel.h | 41 // stale: one of new notifications became stale. 49 // [CLOSE]<-(event=close)-+ +--(event=stale, cond=has new|sticky) 54 // | | (event=stale, V 68 // (event=close) +-------(event=stale)(event=new) 149 // (that the view is associated with) becomes stale after a timeout. 155 // Mark the given notification as stale. 184 // Stale timeout. 222 // Sets the timeout for a notification to become stale. 225 // Mark the given notification as stale [all...] |
balloon_view.h | 60 // True if the notification is stale. False if the notification is new. 61 bool stale() const { return stale_; } function in class:chromeos::BalloonViewImpl 63 // Makes the notification stale.
|
/dalvik/vm/mterp/armv5te/ |
alt_stub.S | 6 * stale rIBASE if breakFlags==0. Always refresh rIBASE here, and then
|
/dalvik/vm/mterp/mips/ |
alt_stub.S | 6 * stale rIBASE if breakFlags==0. Always refresh rIBASE here, and then
|
/external/kernel-headers/original/linux/ |
errno.h | 18 #define EBADCOOKIE 523 /* Cookie is stale */
|
/external/nist-sip/java/javax/sip/header/ |
AuthorizationHeader.java | 37 void setStale(boolean stale);
|
/frameworks/base/core/java/android/database/ |
StaleDataException.java | 20 * This exception is thrown when a Cursor contains stale data and must be
|
/external/qemu/android/utils/ |
filelock.c | 50 ** the filelock_lock() function can also detect stale file locks that can linger 131 D( "no pid file in '%s', assuming stale directory", lock->lock ); 281 /* check the lockfile to see if it is stale */ 287 int stale = 2; /* means don't know */ 311 stale = 0; 313 stale = 1; 316 if (stale == 2) { 317 /* no pid, stale if the file is older than 1 minute */ 318 stale = (now >= st.st_mtime + 60); 321 if (stale) { [all...] |
filelock.h | 26 ** function can detect stale file locks that can longer when the emulator
|
/frameworks/av/media/libstagefright/wifi-display/source/ |
RepeaterSource.cpp | 138 bool stale = false; local 151 stale = true; 162 if (!stale) {
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
AuthenticationHeader.java | 62 public static final String STALE = ParameterNames.STALE; 395 * Sets the value of the stale parameter of the WWWAuthenicateHeader to the 396 * <var>stale</var> parameter value. 398 * @param stale - 399 * the Boolean.valueOf value of the stale parameter. 402 public void setStale(boolean stale) { 403 setParameter(new NameValue(ParameterNames.STALE, Boolean.valueOf(stale))); 410 * @return the boolean representing if the challenge is stale [all...] |
/external/kernel-headers/original/linux/netfilter/ |
nf_conntrack_tcp.h | 45 /* For detecting stale connections */
|
/external/kernel-headers/original/linux/nfsd/ |
stats.h | 18 unsigned int fh_stale; /* FH stale error */
|
/external/webkit/Source/WebCore/manual-tests/inspector/ |
dom-mutation.html | 22 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=6590">Bug 6590: Web Inspector shows stale DOM tree if the DOM changes after the inspector has loaded</a>.</p>
|
/frameworks/base/tests/TileBenchmark/res/values/ |
colors.xml | 19 <!-- The color of tiles with stale / invalid textures -->
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/nfsd/ |
stats.h | 18 unsigned int fh_stale; /* FH stale error */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/nfsd/ |
stats.h | 18 unsigned int fh_stale; /* FH stale error */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/nfsd/ |
stats.h | 18 unsigned int fh_stale; /* FH stale error */
|
/external/smack/asmack-master/static-src/novell-openldap-jldap/com/novell/sasl/client/ |
DigestChallenge.java | 106 else if (name.equals("stale")) 124 throw new SaslException("Unexpected stale flag"); 305 * This function implements the semenatics of the stale directive. 309 * @exception SaslException If an error occurs due to Too many stale 310 * directives or Invalid stale directive value 316 throw new SaslException("Too many stale directives."); 321 throw new SaslException("Invalid stale directive value: " +
|
/external/smack/src/com/novell/sasl/client/ |
DigestChallenge.java | 106 else if (name.equals("stale")) 124 throw new SaslException("Unexpected stale flag"); 305 * This function implements the semenatics of the stale directive. 309 * @exception SaslException If an error occurs due to Too many stale 310 * directives or Invalid stale directive value 316 throw new SaslException("Too many stale directives."); 321 throw new SaslException("Invalid stale directive value: " +
|
/external/apache-http/src/org/apache/http/params/ |
HttpConnectionParams.java | 191 * Tests whether stale connection check is to be used. Disabling 192 * stale connection check may result in slight performance improvement 196 * @return <tt>true</tt> if stale connection check is to be used, 208 * Defines whether stale connection check is to be used. Disabling 209 * stale connection check may result in slight performance improvement 213 * @param value <tt>true</tt> if stale connection check is to be used,
|
/frameworks/base/core/java/android/net/http/ |
HttpResponseCache.java | 100 * contains a stale copy of the response, the client will issue a conditional 135 * This technique works even better in situations where a stale response is 136 * better than no response. To permit stale cached responses, use the {@code 137 * max-stale} directive with the maximum staleness in seconds: <pre> {@code 138 * int maxStale = 60 * 60 * 24 * 28; // tolerate 4-weeks stale 139 * connection.addRequestProperty("Cache-Control", "max-stale=" + maxStale);
|