HomeSort by relevance Sort by last modified time
    Searched full:schedule (Results 26 - 50 of 500) sorted by null

12 3 4 5 6 7 8 91011>>

  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
ScheduledExecutorTest.java 41 * delayed schedule of callable successfully executes after delay
46 Future f = p1.schedule(callable, SHORT_DELAY_MS, MILLISECONDS);
56 * delayed schedule of runnable successfully executes after delay
61 p1.schedule(runnable, SMALL_DELAY_MS, MILLISECONDS);
153 * schedule (null) throws NPE
159 Future f = se.schedule(callable, SHORT_DELAY_MS, MILLISECONDS);
172 se.schedule(new NoOpRunnable(),
183 * schedule throws RejectedExecutionException if shutdown
189 se.schedule(new NoOpCallable(),
199 * schedule callable throws RejectedExecutionException if shutdow
    [all...]
  /cts/tools/host/src/com/android/cts/
ProgressObserver.java 34 mNotifyTimer.schedule(new ProgressPrinter(),
  /dalvik/tests/059-finalizer-throw/src/
Main.java 24 new Timer(true).schedule(new TimerTask() {
  /development/samples/Alarm/res/values/
strings.xml 19 This shows how to schedule a repeating alarm that starts a service.</string>
  /external/ipsec-tools/
Makefile 24 src/racoon/schedule.c \
Android.mk 43 src/racoon/schedule.c \
  /external/webkit/LayoutTests/storage/
database-lock-after-reload.html 28 // Insert a large amount of data that will take a little while to run. Schedule a timout to run that will load a new page
  /development/pdk/docs/source/
cla-corporate.jd 20 <p>"Contribution" shall mean the code, documentation or other original works of authorship expressly identified in Schedule B, as well as any original work of authorship, including any modifications or additions to an existing work, that is intentionally submitted by You to the Project Leads for inclusion in, or documentation of, any of the products managed or maintained by the Project Leads (the "Work"). For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Project Leads or their representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Project Leads for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by You as "Not a Contribution."
29 <li><p>You represent that You are legally entitled to grant the above license. You represent further that each employee of the Corporation designated on Schedule A below (or in a subsequent written modification to that Schedule) is authorized to submit Contributions on behalf of the Corporation.
46 Schedule A</h3>
49 Schedule B</h3>
  /external/ipsec-tools/src/racoon/missing/crypto/rijndael/
rijndael-api-fst.h 61 u_int8_t xkS8[RIJNDAEL_MAXROUNDS+1][4][4]; /* key schedule */
62 u_int32_t xkS32[RIJNDAEL_MAXROUNDS+1][4]; /* key schedule */
  /external/webkit/WebCore/loader/
RedirectScheduler.cpp 167 schedule(new ScheduledRedirection(delay, url, true, delay <= 1, false, false));
197 // fragment part, we don't need to schedule the location change.
208 schedule(new ScheduledRedirection(url, referrer, lockHistory, lockBackForwardList, wasUserGesture, false, duringLoad));
230 schedule(new ScheduledRedirection(frameRequest, lockHistory, lockBackForwardList, event, formState, duringLoad));
243 schedule(new ScheduledRedirection(url.string(), m_frame->loader()->outgoingReferrer(), true, true, wasUserGesture, true, false));
286 // In all other cases, schedule the history traversal to occur asynchronously.
287 schedule(new ScheduledRedirection(steps));
332 void RedirectScheduler::schedule(PassOwnPtr<ScheduledRedirection> redirection) function in class:WebCore::RedirectScheduler
CachedCSSStyleSheet.h 54 virtual bool schedule() const { return true; } function in class:WebCore::CachedCSSStyleSheet
CachedScript.h 52 virtual bool schedule() const { return false; } function in class:WebCore::CachedScript
CachedXBLDocument.h 54 virtual bool schedule() const { return true; } function in class:WebCore::CachedXBLDocument
CachedXSLStyleSheet.h 51 virtual bool schedule() const { return true; } function in class:WebCore::CachedXSLStyleSheet
  /system/wlan/ti/wilink_6_1/TWD/FW_Transfer/Export_Inc/
FwEvent_api.h 76 * \brief Requests the context engine to schedule the driver task
83 * Requests the context engine to schedule the driver task
  /development/samples/ApiDemos/src/com/example/android/apis/app/
_package.html 40 - These examples show how you can use alarms to schedule background
AlarmController.java 47 <td class="DescrColumn">The activity that lets you schedule alarms</td>
100 // Schedule the alarm!
131 // Schedule the alarm!
  /external/dropbear/libtomcrypt/src/mac/f9/
f9_init.c 34 /* schedule the key */
  /external/webkit/WebKit/android/plugins/
PluginTimer.h 71 uint32 schedule(NPP instance, uint32 interval, bool repeat,
  /external/ipsec-tools/src/racoon/
racoonctl.8 44 show-schedule
94 .It show-schedule
160 show-schedule
  /external/openssl/crypto/bf/
bf_cfb64.c 68 const BF_KEY *schedule, unsigned char *ivec, int *num, int encrypt)
85 BF_encrypt((BF_LONG *)ti,schedule);
105 BF_encrypt((BF_LONG *)ti,schedule);
blowfish.h 116 const BF_KEY *schedule, unsigned char *ivec, int enc);
118 const BF_KEY *schedule, unsigned char *ivec, int *num, int enc);
120 const BF_KEY *schedule, unsigned char *ivec, int *num);
  /external/openssl/crypto/des/
cfb64enc.c 67 long length, DES_key_schedule *schedule,
85 DES_encrypt1(ti,schedule,DES_ENCRYPT);
105 DES_encrypt1(ti,schedule,DES_ENCRYPT);
pcbc_enc.c 62 long length, DES_key_schedule *schedule,
89 DES_encrypt1((DES_LONG *)tin,schedule,DES_ENCRYPT);
107 DES_encrypt1((DES_LONG *)tin,schedule,DES_DECRYPT);
set_key.c 310 int DES_set_key(const_DES_cblock *key, DES_key_schedule *schedule)
314 return DES_set_key_checked(key, schedule);
318 DES_set_key_unchecked(key, schedule);
327 int DES_set_key_checked(const_DES_cblock *key, DES_key_schedule *schedule)
333 DES_set_key_unchecked(key, schedule);
337 void DES_set_key_unchecked(const_DES_cblock *key, DES_key_schedule *schedule)
346 memcpy(schedule->key,key,sizeof schedule->key);
347 schedule->session=NULL;
349 k = &schedule->ks->deslong[0]
    [all...]

Completed in 780 milliseconds

12 3 4 5 6 7 8 91011>>