HomeSort by relevance Sort by last modified time
    Searched full:stale (Results 1 - 25 of 246) sorted by null

1 2 3 4 5 6 7 8 910

  /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/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
  /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...]
Challenge.java 53 private static String STALE = ParameterNames.STALE;
149 return (String) authParams.getValue(STALE);
ParameterNames.java 81 public static final String STALE = "stale";
  /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/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>
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/nfsd/
stats.h 18 unsigned int fh_stale; /* FH stale error */
  /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,
CoreConnectionPNames.java 100 * Determines whether stale connection check is to be used. Disabling
101 * stale connection check may result in slight performance improvement
  /dalvik/vm/
JarFile.c 159 LOGE("%s odex has stale dependencies\n", fileName);
215 LOGE("%s odex has stale dependencies\n", fileName);
231 * Pre-created .odex absent or stale. Look inside the jar for a
244 * If a stale .odex file is present and classes.dex exists in
272 * or the cached version was stale), generate the optimized DEX.
  /frameworks/base/core/java/android/net/http/
HttpAuthHeader.java 34 private final static String STALE_TOKEN = "stale";
52 * rejected because the nonce value was stale. If stale is TRUE
190 * the client was rejected because the nonce value was stale.
395 * Parses and initializes the 'stale' paramer value. Any value
  /dalvik/tests/061-out-of-memory/src/
Main.java 58 * GC may see a stale pointer to it in a register.
  /external/chromium/net/http/
http_response_info.h 28 // stale content (perhaps un-cacheable) may be fetched from cache subject to
  /external/webkit/WebKit/chromium/public/win/
WebInputEventFactory.h 54 // information is known to be stale and needs to be reset; that is the
  /packages/apps/Email/src/com/android/exchange/adapter/
PingParser.java 79 // Status of 7 or 4 indicate a stale folder list
  /external/webkit/WebCore/platform/network/
ResourceRequestBase.h 43 ReturnCacheDataElseLoad, // back/forward or encoding change - allow stale data
44 ReturnCacheDataDontLoad, // results of a post - allow stale data and only use cache
  /external/webkit/WebKit/chromium/public/
WebURLRequest.h 55 ReturnCacheDataElseLoad, // back/forward or encoding change - allow stale data
56 ReturnCacheDataDontLoad, // results of a post - allow stale data and only use cache
  /libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
HttpConnection.java 236 return true; // the socket is reporting all data read; it's stale
238 return false; // the connection is not stale; hooray
240 return true; // the connection is stale, the read or soTimeout failed.

Completed in 464 milliseconds

1 2 3 4 5 6 7 8 910