HomeSort by relevance Sort by last modified time
    Searched defs:sync (Results 151 - 175 of 422) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/media/mp3/
mp3_stream_parser.cc 236 int sync; local
247 if (!reader.ReadBits(11, &sync) ||
261 << " sync 0x" << sync
268 if (sync != 0x7ff ||
274 << " sync 0x" << sync
534 const uint8* sync = candidate_start_code; local
538 int sync_size = end - sync;
541 sync, sync_size, &frame_size, NULL, NULL, NULL)
    [all...]
  /external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/
SyncStatusHelper.java 5 package org.chromium.sync.notifier;
16 import org.chromium.sync.signin.AccountManagerHelper;
17 import org.chromium.sync.signin.ChromeSigninController;
23 * A helper class to handle the current status of sync for Chrome in Android settings.
25 * It also provides an observer to be used whenever Android sync settings change.
35 * In-memory holder of the sync configurations for a given account. On each
163 * Provides notifications when Android sync settings have changed.
250 * Returns the contract authority to use when requesting sync.
272 * Checks whether sync is currently enabled from Chrome for a given account.
274 * It checks both the master sync for the device, and Chrome sync setting for the given account
    [all...]
InvalidationService.java 5 package org.chromium.sync.notifier;
24 import org.chromium.sync.internal_api.pub.base.ModelType;
25 import org.chromium.sync.notifier.InvalidationPreferences.EditContext;
26 import org.chromium.sync.signin.AccountManagerHelper;
27 import org.chromium.sync.signin.ChromeSigninController;
38 * Service that controls notifications for sync.
41 * used to trigger sync. It receives invalidations and converts them into
46 * it, and it requests that it perform (un)registrations as the set of desired sync types changes.
281 /** Sets the saved sync account in {@link InvalidationPreferences} to {@code owningAccount}. */
290 * Reads the saved sync types from storage (if any) and returns a set containing th
    [all...]
  /external/chromium_org/sync/android/java/src/org/chromium/sync/signin/
AccountManagerHelper.java 5 package org.chromium.sync.signin;
  /external/chromium_org/sync/android/javatests/src/org/chromium/sync/notifier/signin/
SyncStatusHelperTest.java 5 package org.chromium.sync.notifier.signin;
14 import org.chromium.sync.notifier.SyncStatusHelper;
15 import org.chromium.sync.notifier.SyncStatusHelper.CachedAccountSyncSettings;
16 import org.chromium.sync.notifier.SyncStatusHelper.SyncSettingsChangedObserver;
17 import org.chromium.sync.signin.ChromeSigninController;
18 import org.chromium.sync.test.util.MockSyncContentResolverDelegate;
55 public void setSyncAutomatically(Account account, String authority, boolean sync) {
57 super.setSyncAutomatically(account, authority, sync);
128 // Need to set the signed in account name to ensure that sync settings notifications
145 @Feature({"Sync"})
    [all...]
  /frameworks/base/core/java/android/os/
FileUtils.java 151 public static boolean sync(FileOutputStream stream) { method in class:FileUtils
154 stream.getFD().sync();
198 out.getFD().sync();
  /system/extras/tests/sdcard/
testcase.h 46 enum Sync {NO_SYNC, FSYNC, SYNC};
84 Sync sync() const { return mSync; } function in class:android_test::TestCase
85 void setSync(Sync s);
141 Sync mSync;
162 StopWatch *mSyncTimer; // Used to time the sync/fsync calls.
  /external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
AbstractPreferencesTest.java 951 pref.sync();
957 p.sync();
    [all...]
  /bionic/libc/kernel/common/linux/mtd/
mtd.h 122 void (*sync) (struct mtd_info *mtd); member in struct:mtd_info
  /development/ndk/platforms/android-3/include/linux/mtd/
mtd.h 121 void (*sync) (struct mtd_info *mtd); member in struct:mtd_info
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/sync/
ProfileSyncService.java 5 package org.chromium.chrome.browser.sync;
15 import org.chromium.sync.internal_api.pub.SyncDecryptionPassphraseType;
16 import org.chromium.sync.internal_api.pub.base.ModelType;
32 * See chrome/browser/sync/profile_sync_service.h for more details.
37 // Invoked when the underlying sync status has changed.
51 // Sync state changes more often than listeners are added/removed, so using CopyOnWrite.
82 // This may cause us to create ProfileSyncService even if sync has not
94 * If we are currently in the process of setting up sync, this method clears the
95 * sync setup in progress flag.
110 * Signs in to sync, using the currently signed-in account
    [all...]
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglapi.c 160 _EGL_CHECK_OBJECT(disp, Sync, s, ret, drv)
1350 _EGLSync *sync; local
    [all...]
  /external/kernel-headers/original/linux/mtd/
mtd.h 186 /* Sync */
187 void (*sync) (struct mtd_info *mtd); member in struct:mtd_info
  /external/lzma/C/
LzFindMt.c 382 CMtSync *sync = &p->hashSync; local
383 if (!sync->needStart)
385 CriticalSection_Enter(&sync->cs);
386 sync->csWasEntered = True;
398 if (!sync->needStart)
400 CriticalSection_Leave(&sync->cs);
401 sync->csWasEntered = False;
  /external/mesa3d/src/egl/main/
eglapi.c 160 _EGL_CHECK_OBJECT(disp, Sync, s, ret, drv)
1350 _EGLSync *sync; local
    [all...]
  /frameworks/native/libs/gui/
GLConsumer.cpp 237 // Do whatever sync ops we need to do before releasing the slot.
386 // Do whatever sync ops we need to do before releasing the old slot.
657 EGLSyncKHR sync = eglCreateSyncKHR(dpy, local
659 if (sync == EGL_NO_SYNC_KHR) {
665 int fenceFd = eglDupNativeFenceFDANDROID(dpy, sync);
666 eglDestroySyncKHR(dpy, sync);
995 EGLSyncKHR sync = eglCreateSyncKHR(dpy, local
    [all...]
  /libcore/luni/src/main/java/java/io/
RandomAccessFile.java 108 // Sync file and metadata with every write
111 // Sync file, but not necessarily metadata
120 // if we are in "rws" mode, attempt to sync file+metadata
123 fd.sync();
636 // if we are in "rws" mode, attempt to sync file+metadata
638 fd.sync();
690 // if we are in "rws" mode, attempt to sync file+metadata
692 fd.sync();
  /libcore/luni/src/main/java/java/util/concurrent/locks/
ReentrantReadWriteLock.java 195 final Sync sync; field in class:ReentrantReadWriteLock
212 sync = fair ? new FairSync() : new NonfairSync();
224 abstract static class Sync extends AbstractQueuedSynchronizer {
309 Sync() {
639 * Nonfair version of Sync
641 static final class NonfairSync extends Sync {
659 * Fair version of Sync
661 static final class FairSync extends Sync {
676 private final Sync sync field in class:ReentrantReadWriteLock.ReadLock
885 private final Sync sync; field in class:ReentrantReadWriteLock.WriteLock
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
firewire-cdev.h 389 * (4 bits), the tag field (2 bits), a sync flag (1 bit),
441 * @sync: Determines the value to wait for for receive packets that have
450 __u32 sync; member in struct:fw_cdev_start_iso
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
firewire-cdev.h 389 * (4 bits), the tag field (2 bits), a sync flag (1 bit),
441 * @sync: Determines the value to wait for for receive packets that have
450 __u32 sync; member in struct:fw_cdev_start_iso
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
firewire-cdev.h 389 * (4 bits), the tag field (2 bits), a sync flag (1 bit),
441 * @sync: Determines the value to wait for for receive packets that have
450 __u32 sync; member in struct:fw_cdev_start_iso
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/mtd/
mtd.h 121 void (*sync) (struct mtd_info *mtd); member in struct:mtd_info
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/mtd/
mtd.h 121 void (*sync) (struct mtd_info *mtd); member in struct:mtd_info
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/mtd/
mtd.h 121 void (*sync) (struct mtd_info *mtd); member in struct:mtd_info
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/mtd/
mtd.h 121 void (*sync) (struct mtd_info *mtd); member in struct:mtd_info

Completed in 978 milliseconds

1 2 3 4 5 67 8 91011>>