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

1 2

  /external/chromium_org/third_party/openssl/openssl/apps/
CA.pl 48 $DAYS="-days 365"; # 1 year
49 $CADAYS="-days 1095"; # 3 years
71 system ("$REQ -new -x509 -keyout newkey.pem -out newcert.pem $DAYS");
76 system ("$REQ -new -keyout newkey.pem -out newreq.pem $DAYS");
81 system ("$REQ -new -nodes -keyout newkey.pem -out newreq.pem $DAYS");
CA.pl.in 48 $DAYS="-days 365"; # 1 year
49 $CADAYS="-days 1095"; # 3 years
71 system ("$REQ -new -x509 -keyout newkey.pem -out newcert.pem $DAYS");
76 system ("$REQ -new -keyout newkey.pem -out newreq.pem $DAYS");
81 system ("$REQ -new -nodes -keyout newkey.pem -out newreq.pem $DAYS");
CA.sh 63 if [ -z "$DAYS" ] ; then DAYS="-days 365" ; fi # 1 year
64 CADAYS="-days 1095" # 3 years
86 $REQ -new -x509 -keyout newkey.pem -out newcert.pem $DAYS
92 $REQ -new -keyout newkey.pem -out newreq.pem $DAYS
98 $REQ -new -nodes -keyout newreq.pem -out newreq.pem $DAYS
  /external/openssl/apps/
CA.pl 48 $DAYS="-days 365"; # 1 year
49 $CADAYS="-days 1095"; # 3 years
71 system ("$REQ -new -x509 -keyout newkey.pem -out newcert.pem $DAYS");
76 system ("$REQ -new -keyout newkey.pem -out newreq.pem $DAYS");
81 system ("$REQ -new -nodes -keyout newkey.pem -out newreq.pem $DAYS");
CA.pl.in 48 $DAYS="-days 365"; # 1 year
49 $CADAYS="-days 1095"; # 3 years
71 system ("$REQ -new -x509 -keyout newkey.pem -out newcert.pem $DAYS");
76 system ("$REQ -new -keyout newkey.pem -out newreq.pem $DAYS");
81 system ("$REQ -new -nodes -keyout newkey.pem -out newreq.pem $DAYS");
CA.sh 63 if [ -z "$DAYS" ] ; then DAYS="-days 365" ; fi # 1 year
64 CADAYS="-days 1095" # 3 years
86 $REQ -new -x509 -keyout newkey.pem -out newcert.pem $DAYS
92 $REQ -new -keyout newkey.pem -out newreq.pem $DAYS
98 $REQ -new -nodes -keyout newreq.pem -out newreq.pem $DAYS
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/deskclock/
DeskClockTestsActivity.java 35 private static final ArrayList<Integer> DAYS = new ArrayList<Integer>();
44 .putExtra(AlarmClock.EXTRA_DAYS, DAYS);
47 DAYS.add(Calendar.MONDAY);
48 DAYS.add(Calendar.WEDNESDAY);
  /libcore/luni/src/main/java/javax/xml/datatype/
DatatypeConstants.java 137 * <p>A constant that represents the days field.</p>
139 public static final Field DAYS = new Field("DAYS", 2);
Duration.java 34 * which consists of six fields (years, months, days, hours,
56 * <p>For example, 30 days cannot be meaningfully compared to one month.
68 * subtract 15 days from 1 month. See the javadoc of those methods
160 boolean daySet = isSet(DatatypeConstants.DAYS);
247 * Obtains the value of the DAYS field as an integer value,
251 * that this method works on the DAYS field.
253 * @return Days of this <code>Duration</code>.
256 return getFieldValueAsInt(DatatypeConstants.DAYS);
383 * In case of YEARS, MONTHS, DAYS, HOURS, and MINUTES, the returned
388 * one of the six Field constants (YEARS,MONTHS,DAYS,HOURS
902 BigInteger days = (BigInteger) getField(DatatypeConstants.DAYS); local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DictionaryService.java 42 * Every four days, it schedules an update of the metadata with the alarm manager.
43 * - Issuing the order to update the metadata. This runs every four days, between 0 and
79 private static final long UPDATE_FREQUENCY = TimeUnit.DAYS.toMillis(4);
91 private static final long VERY_LONG_TIME = TimeUnit.DAYS.toMillis(14);
  /external/guava/guava-tests/test/com/google/common/cache/
EmptyCachesTest.java 20 import static java.util.concurrent.TimeUnit.DAYS;
370 DurationSpec.of(1, DAYS)))
374 DurationSpec.of(1, DAYS)))
377 DurationSpec.of(1, DAYS)));
PopulatedCachesTest.java 21 import static java.util.concurrent.TimeUnit.DAYS;
325 DurationSpec.of(1, DAYS)))
329 DurationSpec.of(1, DAYS)))
333 DurationSpec.of(1, DAYS)));
  /packages/apps/Exchange/src/com/android/exchange/adapter/
AbstractSyncAdapter.java 50 public static final int DAYS = HOURS*24;
51 public static final int WEEKS = DAYS*7;
  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
TimeUnit.java 80 DAYS {
  /libcore/luni/src/main/java/java/util/concurrent/
TimeUnit.java 109 DAYS {
245 * Equivalent to {@code DAYS.convert(duration, this)}.
  /external/openssh/
misc.c 279 #define DAYS (HOURS * 24)
280 #define WEEKS (DAYS * 7)
292 * d|D days
298 * 2d 2 days
341 secs *= DAYS;
  /packages/apps/Exchange/tests/src/com/android/exchange/utility/
CalendarUtilitiesTests.java 633 long endTime = startTime + (365*CalendarUtilities.DAYS);
646 CalendarUtilities.DAYS, endTime, true);
663 endTime = startTime + (365*CalendarUtilities.DAYS);
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/utility/
CalendarUtilities.java 73 static final long DAYS = HOURS*24;
148 // Bits used in EAS recurrences for days of the week
504 // sDayTokens is 0 based (SU = 0); Calendar days of week are 1 based (SU = 1)
560 long endOfYearTime = startTime + (365*DAYS) + (DAYS>>2);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.ui.sdk.scheduler_1.0.0.v20100507-1815.jar 
org.mortbay.jetty.server_6.1.23.v201004211559.jar 
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
ResearchLogger.java 145 private static final long DURATION_BETWEEN_DIR_CLEANUP_IN_MS = TimeUnit.DAYS.toMillis(1);
146 private static final long MAX_LOGFILE_AGE_IN_MS = TimeUnit.DAYS.toMillis(4);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cookielib.py 80 DAYS = ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"]
117 DAYS[wday], mday, MONTHS[mon-1], year, hour, min, sec)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cookielib.py 80 DAYS = ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"]
117 DAYS[wday], mday, MONTHS[mon-1], year, hour, min, sec)
    [all...]
  /external/okhttp/src/test/java/com/squareup/okhttp/internal/http/
HttpResponseCacheTest.java 625 // last modified: 105 days ago
626 // served: 5 days ago
627 // default lifetime: (105 - 5) / 10 = 10 days
628 // expires: 10 days from served date = 5 days from now
629 server.enqueue(new MockResponse().addHeader("Last-Modified: " + formatDate(-105, TimeUnit.DAYS))
630 .addHeader("Date: " + formatDate(-5, TimeUnit.DAYS))
    [all...]
  /prebuilts/sdk/11/
android.jar 

Completed in 459 milliseconds

1 2