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

1 2

  /packages/apps/Email/tests/src/com/android/email/mail/
StoreTests.java 25 * Tests of StoreInfo & Store lookup in the Store abstract class
31 * Test StoreInfo & Store lookup for POP accounts
35 Store.StoreInfo info = Store.StoreInfo.getStoreInfo(storeUri, getContext());
45 Store store = Store.getInstance(storeUri, getContext(), null); local
49 * Test StoreInfo & Store lookup for IMAP accounts
53 Store.StoreInfo info = Store.StoreInfo.getStoreInfo(storeUri, getContext())
63 Store store = Store.getInstance(storeUri, getContext(), null); local
81 Store store = Store.getInstance(storeUri, getContext(), null); local
84 Store store = Store.getInstance(storeUri, getContext(), null); local
101 Store store = Store.getInstance(storeUri, getContext(), null); local
    [all...]
  /external/v8/test/cctest/
test-log-utils.cc 145 CHECK(comp.Store(empty));
146 CHECK(!comp.Store(empty));
147 CHECK(!comp.Store(empty));
149 CHECK(comp.Store(aaa));
150 CHECK(!comp.Store(aaa));
151 CHECK(!comp.Store(aaa));
152 CHECK(comp.Store(empty));
153 CHECK(!comp.Store(empty));
154 CHECK(!comp.Store(empty));
176 CHECK(comp.Store(empty))
    [all...]
  /packages/apps/Email/src/com/android/email/mail/
Store.java 32 * Store is the access point for an email message store. It's location can be
33 * local or remote and no specific protocol is defined. Store is intended to
34 * loosely model in combination the JavaMail classes javax.mail.Store and
39 public abstract class Store {
42 * String constants for known store schemes.
54 * A global suggestion to Store implementors on how much of the body
59 private static java.util.HashMap<String, Store> mStores =
60 new java.util.HashMap<String, Store>();
66 public static Store newInstance(String uri, Context context, PersistentDataCallbacks callbacks
173 Store store = mStores.get(uri); local
    [all...]
  /packages/apps/Email/tests/src/com/android/email/activity/setup/
AccountSetupAccountTypeUnitTests.java 20 import com.android.email.mail.Store;
74 * Test store type limit enforcement
84 Store.StoreInfo info = new Store.StoreInfo();
AccountSetupOptionsTests.java 20 import com.android.email.mail.Store;
77 if (Store.StoreInfo.getStoreInfo("eas", this.getInstrumentation().getTargetContext())
AccountSettingsTests.java 19 import com.android.email.mail.Store;
110 if (Store.StoreInfo.getStoreInfo("eas", this.getInstrumentation().getTargetContext())
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupAccountType.java 21 import com.android.email.mail.Store;
170 Store.StoreInfo storeInfo = Store.StoreInfo.getStoreInfo(uri.toString(), this);
179 * If the optional store specifies a limit on the number of accounts, make sure that we
183 /* package */ boolean checkAccountInstanceLimit(Store.StoreInfo storeInfo) {
AccountSetupCheckSettings.java 25 import com.android.email.mail.Store;
156 Store store = Store.getInstance( local
159 Bundle result = store.autoDiscover(AccountSetupCheckSettings.this,
194 Store store = Store.getInstance( local
197 store.checkSettings();
AccountSettings.java 24 import com.android.email.mail.Store;
184 Store.StoreInfo info = Store.StoreInfo.getStoreInfo(mAccount.getStoreUri(this), this);
392 Store store = Store.getInstance(mAccount.getStoreUri(this), getApplication(), null); local
393 if (store != null) {
394 Class<? extends android.app.Activity> setting = store.getSettingActivityClass();
403 Log.d(Email.LOG_TAG, "Error while trying to invoke store settings.", e);
AccountSetupOptions.java 22 import com.android.email.mail.Store;
23 import com.android.email.mail.store.ExchangeStore;
95 Store.StoreInfo info = Store.StoreInfo.getStoreInfo(mAccount.getStoreUri(this), this);
213 // Call EAS to store account information for use by AccountManager
  /packages/apps/Email/src/com/android/email/
MessagingController.java 28 import com.android.email.mail.Store;
259 Store store = Store.getInstance(account.getStoreUri(mContext), mContext, null);
261 Folder[] remoteFolders = store.getPersonalNamespaces();
386 // Select generic sync or store-specific sync
387 Store remoteStore = Store.getInstance(account.getStoreUri(mContext), mContext, null);
472 // 1. Get the message list from the local store and create an index of the uids
510 Store remoteStore = Store.getInstance(account.getStoreUri(mContext), mContext, null)
    [all...]
Controller.java 21 import com.android.email.mail.Store;
478 Store.StoreInfo info = Store.StoreInfo.getStoreInfo(
519 Store.StoreInfo info = Store.StoreInfo.getStoreInfo(
    [all...]
Account.java 19 import com.android.email.mail.Store;
102 // TODO Change local store path to something readable / recognizable
155 mStoreUri != null && mStoreUri.toString().startsWith(Store.STORE_SCHEME_IMAP)) {
  /packages/apps/Email/src/com/android/email/mail/store/
ExchangeStore.java 17 package com.android.email.mail.store;
24 import com.android.email.mail.Store;
42 * Our Exchange service does not use the sender/store model. This class exists for exactly two
46 public class ExchangeStore extends Store {
55 public static Store newInstance(String uri, Context context, PersistentDataCallbacks callbacks)
124 * Get class of SettingActivity for this Store class.
133 * Get class of sync'er for this Store class. Because exchange Sync rules are so different
145 * Inform MessagingController that this store requires message structures to be prefetched
  /external/v8/src/
log-utils.h 148 // to store a pointer to log destination. If logging was opened via OpenStdout
198 bool Store(const Vector<const char>& record);
ic.h 37 // store is in dictionary case.
352 Object* Store(State state,
387 Object* Store(State state,
434 // version of keyed store.
log-utils.cc 328 return compressor->Store(Vector<const char>(Log::message_buffer_, pos_));
398 bool LogRecordCompressor::Store(const Vector<const char>& record) {
  /external/libffi/src/alpha/
osf.S 89 # Store the return value out in the proper type.
146 # Store all of the potential argument registers in va_list format.
  /packages/apps/Email/src/com/android/email/activity/
UpgradeAccounts.java 33 import com.android.email.mail.Store;
35 import com.android.email.mail.store.LocalStore;
399 copyAndDeleteAccount(info, i, handler, Store.STORE_SCHEME_POP3);
404 copyAndDeleteAccount(info, i, handler, Store.STORE_SCHEME_IMAP);
468 LocalStore store = LocalStore.newInstance(account.getLocalStoreUri(), context, null); local
469 Folder[] folders = store.getPersonalNamespaces();
477 estimate += store.getStoredAttachmentCount();
478 store.close();
501 boolean isImap = storeUri.startsWith(Store.STORE_SCHEME_IMAP);
502 LocalStore store = LocalStore.newInstance(account.getLocalStoreUri(), context, null) local
578 LocalStore store = null; local
746 Store store = LocalStore.newInstance(account.getLocalStoreUri(), context, null); local
    [all...]
  /development/scripts/app_engine_server/
memcache_zipserve.py 258 negative cache, or store (zip) and form the response.
311 # found content from cache or store
389 Just a convenience method to load the zip file from the data store. This is
523 """Store data in the cache.
525 Store a piece of data in the memcache. Memcache has a maximum item size of
530 filename: the name of the file to store
  /external/libffi/src/sparc/
v9.S 133 6*8 args backing store +
150 ! Store all of the potential argument registers in va_list format.
158 ! Store possible floating point argument registers too.
v8.S 103 6*4 args backing store +
130 ! Store all of the potential argument registers in va_list format.
  /external/qemu/distrib/sdl-1.2.12/src/cpuinfo/
SDL_cpuinfo.c 68 " popl %%eax # Store new EFLAGS in EAX \n"
88 " popq %%rax # Store new EFLAGS in EAX \n"
106 pop eax ; Store new EFLAGS in EAX
  /external/libffi/src/mips/
n32.S 386 # Store all possible argument registers. If there are more than
397 # Store all possible float/double registers.
o32.S 250 # Store all possible argument registers. If there are more than
264 # Store all possible float/double registers.

Completed in 236 milliseconds

1 2