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

1 2 3

  /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/bouncycastle/src/main/java/org/bouncycastle/util/
Store.java 5 public interface Store
  /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...]
  /external/chromium/net/disk_cache/
mapped_file.h 39 bool Store(const FileBlock* block);
storage_block.h 70 // Loads and store the data.
72 bool Store();
83 bool extended_; // Used to store an entry of more than one block.
storage_block-inl.h 26 Store();
123 template<typename T> bool StorageBlock<T>::Store() {
125 if (file_->Store(this)) {
130 LOG(ERROR) << "Failed data store.";
131 Trace("Failed data store.");
mapped_file_posix.cc 50 bool MappedFile::Store(const FileBlock* block) {
mapped_file_win.cc 50 bool MappedFile::Store(const FileBlock* block) {
stats.h 72 void Store();
eviction.cc 214 entry->entry()->Store();
325 entry->entry()->Store();
329 entry->entry()->Store();
352 entry->entry()->Store();
371 entry->entry()->Store();
entry_impl.cc 23 // Index for the file used to store the key, if any (files_[kKeyFileIndex]).
122 node_.Store();
125 node_.Store();
470 node_.Store();
499 entry_.Store();
512 node_.Store();
513 entry_.Store();
525 bool success = entry_.Store();
542 if (!node_.Store())
565 node_.Store();
    [all...]
rankings.cc 276 head.Store();
296 node->Store();
312 // 4. r(0, 0), head(0), tail(0) next.Store()
316 // 2. a(x, r), r(a, b), b(a, y), head(x), tail(y) next.Store()
317 // 3. a(x, b), r(a, b), b(a, y), head(x), tail(y) prev.Store()
318 // 4. a(x, b), r(0, 0), b(a, y), head(x), tail(y) node.Store()
323 // 3. r(r, b), b(b, y), head(b), tail(y) next.Store()
324 // 4. r(0, 0), b(b, y), head(b), tail(y) prev.Store()
329 // 3. a(x, a), r(a, r), head(x), tail(a) prev.Store()
330 // 4. a(x, a), r(0, 0), head(x), tail(a) next.Store()
    [all...]
  /packages/apps/Email/src/com/android/email/mail/
Store.java 33 * Store is the access point for an email message store. It's location can be
34 * local or remote and no specific protocol is defined. Store is intended to
35 * loosely model in combination the JavaMail classes javax.mail.Store and
40 public abstract class Store {
43 * String constants for known store schemes.
55 * A global suggestion to Store implementors on how much of the body
59 private static final HashMap<String, Store> sStores = new HashMap<String, Store>();
65 public static Store newInstance(String uri, Context context, PersistentDataCallbacks callbacks
172 Store store = sStores.get(uri); local
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/x509/
X509Store.java 4 import org.bouncycastle.util.Store;
12 implements Store
ExtendedPKIXParameters.java 4 import org.bouncycastle.util.Store;
223 * a {@link Store}.
235 if (!(i.next() instanceof Store))
239 + "of type org.bouncycastle.util.Store.");
247 * Adds a Bouncy Castle {@link Store} to find CRLs, certificates, attribute
255 * If <code>store</code> is <code>null</code> it is ignored.
257 * @param store The store to add.
260 public void addStore(Store store)
    [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/mail/store/imap/
ImapConstants.java 17 package com.android.email.mail.store.imap;
19 import com.android.email.mail.Store;
27 = String.format("BODY.PEEK[]<0.%d>", Store.FETCH_BODY_SANE_SUGGESTED_SIZE);
77 public static final String STORE = "STORE";
85 public static final String UID_STORE = "UID STORE";
  /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;
187 Store.StoreInfo info = Store.StoreInfo.getStoreInfo(mAccount.getStoreUri(this), this);
395 Store store = Store.getInstance(mAccount.getStoreUri(this), getApplication(), null); local
396 if (store != null) {
397 Class<? extends android.app.Activity> setting = store.getSettingActivityClass();
406 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 26 import com.android.email.mail.Store;
258 Store store = Store.getInstance(account.getStoreUri(mContext), mContext, null);
260 Folder[] remoteFolders = store.getPersonalNamespaces();
385 // Select generic sync or store-specific sync
386 Store remoteStore = Store.getInstance(account.getStoreUri(mContext), mContext, null);
471 // 1. Get the message list from the local store and create an index of the uids
509 Store remoteStore = Store.getInstance(account.getStoreUri(mContext), mContext, null)
    [all...]
  /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;
44 * Our Exchange service does not use the sender/store model. This class exists for exactly two
48 public class ExchangeStore extends Store {
57 public static Store newInstance(String uri, Context context, PersistentDataCallbacks callbacks)
126 * Get class of SettingActivity for this Store class.
135 * Get class of sync'er for this Store class. Because exchange Sync rules are so different
147 * Inform MessagingController that this store requires message structures to be prefetched

Completed in 2800 milliseconds

1 2 3