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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/resources/options/chromeos/
browser_options.css 5 #sync-section {
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglsync.h 42 /* A sync is a display resource */
52 _eglInitSync(_EGLSync *sync, _EGLDisplay *dpy, EGLenum type,
57 _eglGetSyncAttribKHR(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSync *sync,
62 * Increment reference count for the sync.
65 _eglGetSync(_EGLSync *sync)
67 if (sync)
68 _eglGetResource(&sync->Resource);
69 return sync;
74 * Decrement reference count for the sync.
77 _eglPutSync(_EGLSync *sync)
112 _EGLSync *sync = (_EGLSync *) handle; local
    [all...]
eglsync.c 37 * Parse the list of sync attributes and return the proper error code.
40 _eglParseSyncAttribList(_EGLSync *sync, const EGLint *attrib_list)
59 _eglLog(_EGL_DEBUG, "bad sync attribute 0x%04x", attr);
69 _eglInitSync(_EGLSync *sync, _EGLDisplay *dpy, EGLenum type,
78 _eglInitResource(&sync->Resource, sizeof(*sync), dpy);
79 sync->Type = type;
80 sync->SyncStatus = EGL_UNSIGNALED_KHR;
81 sync->SyncCondition = EGL_SYNC_PRIOR_COMMANDS_COMPLETE_KHR;
83 err = _eglParseSyncAttribList(sync, attrib_list)
    [all...]
  /external/mesa3d/src/egl/main/
eglsync.h 42 /* A sync is a display resource */
52 _eglInitSync(_EGLSync *sync, _EGLDisplay *dpy, EGLenum type,
57 _eglGetSyncAttribKHR(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSync *sync,
62 * Increment reference count for the sync.
65 _eglGetSync(_EGLSync *sync)
67 if (sync)
68 _eglGetResource(&sync->Resource);
69 return sync;
74 * Decrement reference count for the sync.
77 _eglPutSync(_EGLSync *sync)
112 _EGLSync *sync = (_EGLSync *) handle; local
    [all...]
eglsync.c 37 * Parse the list of sync attributes and return the proper error code.
40 _eglParseSyncAttribList(_EGLSync *sync, const EGLint *attrib_list)
59 _eglLog(_EGL_DEBUG, "bad sync attribute 0x%04x", attr);
69 _eglInitSync(_EGLSync *sync, _EGLDisplay *dpy, EGLenum type,
78 _eglInitResource(&sync->Resource, sizeof(*sync), dpy);
79 sync->Type = type;
80 sync->SyncStatus = EGL_UNSIGNALED_KHR;
81 sync->SyncCondition = EGL_SYNC_PRIOR_COMMANDS_COMPLETE_KHR;
83 err = _eglParseSyncAttribList(sync, attrib_list)
    [all...]
  /dalvik/vm/mterp/mips/
platform.S 16 sync
28 sync
  /system/core/toolbox/
sync.c 5 sync();
  /external/compiler-rt/lib/lsan/lit_tests/TestCases/
use_stacks_threaded.cc 15 int *sync = reinterpret_cast<int *>(arg); local
19 __sync_fetch_and_xor(sync, 1);
25 int sync = 0; local
27 int res = pthread_create(&thread_id, 0, stacks_thread_func, &sync);
29 while (!__sync_fetch_and_xor(&sync, 0))
use_registers.cc 15 int *sync = reinterpret_cast<int *>(arg); local
34 __sync_fetch_and_xor(sync, 1);
40 int sync = 0; local
42 int res = pthread_create(&thread_id, 0, registers_thread_func, &sync);
44 while (!__sync_fetch_and_xor(&sync, 0))
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_syncobj.c 35 * application is using many sync objects, it will emit small batchbuffers
51 struct intel_sync_object *sync; local
53 sync = calloc(1, sizeof(struct intel_sync_object));
55 return &sync->Base;
61 struct intel_sync_object *sync = (struct intel_sync_object *)s; local
63 drm_intel_bo_unreference(sync->bo);
64 free(sync);
72 struct intel_sync_object *sync = (struct intel_sync_object *)s; local
77 sync->bo = intel->batch.bo;
78 drm_intel_bo_reference(sync->bo)
93 struct intel_sync_object *sync = (struct intel_sync_object *)s; local
115 struct intel_sync_object *sync = (struct intel_sync_object *)s; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_syncobj.c 35 * application is using many sync objects, it will emit small batchbuffers
51 struct intel_sync_object *sync; local
53 sync = calloc(1, sizeof(struct intel_sync_object));
55 return &sync->Base;
61 struct intel_sync_object *sync = (struct intel_sync_object *)s; local
63 drm_intel_bo_unreference(sync->bo);
64 free(sync);
72 struct intel_sync_object *sync = (struct intel_sync_object *)s; local
77 sync->bo = intel->batch.bo;
78 drm_intel_bo_reference(sync->bo)
93 struct intel_sync_object *sync = (struct intel_sync_object *)s; local
115 struct intel_sync_object *sync = (struct intel_sync_object *)s; local
    [all...]
  /bionic/libc/arch-mips/syscalls/
sync.S 4 .globl sync
6 .ent sync
8 sync: label
22 .end sync
  /libcore/luni/src/main/java/java/util/concurrent/
Semaphore.java 130 private final Sync sync; field in class:Semaphore
137 abstract static class Sync extends AbstractQueuedSynchronizer {
140 Sync(int permits) {
192 static final class NonfairSync extends Sync {
207 static final class FairSync extends Sync {
236 sync = new NonfairSync(permits);
251 sync = fair ? new FairSync(permits) : new NonfairSync(permits);
283 sync.acquireSharedInterruptibly(1);
306 sync.acquireShared(1)
    [all...]
CountDownLatch.java 132 private static final class Sync extends AbstractQueuedSynchronizer {
135 Sync(int count) {
160 private final Sync sync; field in class:CountDownLatch
171 this.sync = new Sync(count);
202 sync.acquireSharedInterruptibly(1);
248 return sync.tryAcquireSharedNanos(1, unit.toNanos(timeout));
262 sync.releaseShared(1);
273 return sync.getCount()
    [all...]
  /external/chromium_org/chrome/browser/resources/sync_internals/
sync_search.css 5 #sync-search-query {
9 #sync-search-query[error] {
13 #sync-search-status {
18 #sync-results-container {
20 /* Should be > #sync-page's min-height. */
25 #sync-results-list {
37 #sync-results-splitter {
47 #sync-result-details-container {
notifications.js 16 // Contains all notification data. The keys are sync types (as strings) and
19 // type: the sync type again (for convenience when using JsTemplate)
22 // chrome://sync-internals session.
25 chrome.sync.notifications = {};
42 * Merge notificationInfo into chrome.sync.notifications.
46 chrome.sync.notifications[k] =
47 mergeDictionaries(chrome.sync.notifications[k] || {},
51 chrome.sync.notifications[k].type = k;
52 chrome.sync.notifications[k].sessionCount =
53 chrome.sync.notifications[k].sessionCount || 0
    [all...]
sync_node_browser.css 5 #sync-node-main {
7 /* Should be > #sync-page's min-height. */
12 #sync-node-tree-container {
24 #sync-node-tree {
31 #sync-node-tree .leaf .tree-label {
35 #sync-node-splitter {
45 #sync-node-browser-container {
  /external/chromium/chrome/browser/resources/sync_internals/
sync_node_browser.css 7 #sync-node-main {
11 #sync-node-tree-container {
22 #sync-node-tree {
29 #sync-node-tree .leaf .tree-label {
33 #sync-node-splitter {
41 html[os=win] #sync-node-splitter {
chrome_sync.js 8 chrome.sync = chrome.sync || {};
66 chrome.sync.onSyncServiceStateChanged = new Event();
69 chrome.sync.onSyncNotificationStateChange = new Event();
70 chrome.sync.onSyncIncomingNotification = new Event();
73 chrome.sync.onChangesApplied = new Event();
74 chrome.sync.onChangesComplete = new Event();
75 chrome.sync.onSyncCycleCompleted = new Event();
76 chrome.sync.onAuthError = new Event();
77 chrome.sync.onUpdatedToken = new Event()
    [all...]
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/BasicSyncAdapterTests/src/com/example/android/network/sync/basicsyncadapter/net/
FeedParserTest.java 1 package com.example.android.network.sync.basicsyncadapter.net;
  /libcore/luni/src/main/java/java/util/concurrent/locks/
ReentrantLock.java 80 private final Sync sync; field in class:ReentrantLock
87 abstract static class Sync extends AbstractQueuedSynchronizer {
167 * Sync object for non-fair locks
169 static final class NonfairSync extends Sync {
189 * Sync object for fair locks
191 static final class FairSync extends Sync {
228 sync = new NonfairSync();
238 sync = fair ? new FairSync() : new NonfairSync();
256 sync.lock()
    [all...]
  /bionic/libc/arch-arm/syscalls/
sync.S 6 ENTRY(sync) function
15 END(sync)
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
PeriodicSyncTest.java 21 PeriodicSync sync = new PeriodicSync(a, "auth", local
24 assertThat(sync.account, is(a));
25 assertThat(sync.authority, equalTo("auth"));
26 assertThat(sync.period, equalTo(120l));
27 assertNotNull(sync.extras);
  /external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/
SyncContentResolverDelegate.java 5 package org.chromium.sync.notifier;
13 * mock out for tests. This interface wraps all the sync-related methods we use from
22 void setMasterSyncAutomatically(boolean sync);
26 void setSyncAutomatically(Account account, String authority, boolean sync);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/common/
egl_g3d_sync.h 39 egl_g3d_destroy_sync(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSync *sync);
42 egl_g3d_client_wait_sync(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSync *sync,
46 egl_g3d_signal_sync(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSync *sync,

Completed in 1097 milliseconds

1 2 3 4 5 6 7 8 91011>>