HomeSort by relevance Sort by last modified time
    Searched refs:sync (Results 1 - 25 of 486) 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...]
  /external/chromium_org/chrome/browser/resources/sync_internals/
search.js 8 cr.ui.decorate('#sync-results-splitter', cr.ui.Splitter);
10 var allLinks = document.getElementsByClassName('sync-search-quicklink');
12 chrome.sync.decorateQuickQueryControls(
14 $('sync-search-submit'),
15 $('sync-search-query'));
17 chrome.sync.decorateSearchControls(
18 $('sync-search-query'),
19 $('sync-search-submit'),
20 $('sync-search-status'),
21 $('sync-results-list')
    [all...]
events.css 6 #sync-events-table,
7 #sync-events-table th,
8 #sync-events-table td {
12 #sync-events-table {
17 #sync-events > tr {
sync_node_browser.css 5 #sync-node-browser-refresher {
9 #sync-node-browser-refresher > * {
13 #sync-node-browser-container {
18 #sync-node-tree-container {
29 #sync-node-tree {
36 #sync-node-tree .leaf .tree-label {
40 #sync-node-splitter {
50 #sync-node-details-container {
sync_search.css 5 #sync-search-query {
9 #sync-search-query[error] {
13 .sync-search-quicklink {
19 #sync-search-status {
24 #sync-results-container {
26 /* Should be > #sync-page's min-height. */
31 #sync-results-list {
43 #sync-results-splitter {
53 #sync-result-details-container {
  /external/chromium_org/sync/android/java/src/org/chromium/sync/
SyncSwitches.java 5 package org.chromium.sync;
8 * Contains all of the command line switches that are specific to the sync/
12 // It's currently necessary for people wanting to try out the Push API to disable Chrome Sync's
14 // Accordingly, this switch lets you disable Sync's ability to receive GCM messages in order to
16 // TODO(johnme): Remove this command line switch once disabling sync is no longer necessary.
18 "disable-sync-gcm-in-order-to-try-push-api";
  /external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/
InvalidationClientNameGenerator.java 5 package 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/compiler-rt/test/lsan/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...]
  /external/chromium_org/chrome/android/shell/java/src/org/chromium/chrome/shell/sync/
ChromeShellSyncAdapterService.java 5 package org.chromium.chrome.shell.sync;
10 import org.chromium.chrome.browser.sync.ChromiumSyncAdapter;
11 import org.chromium.chrome.browser.sync.ChromiumSyncAdapterService;
  /bionic/libc/arch-arm/syscalls/
sync.S 5 ENTRY(sync) function
14 END(sync)
  /bionic/libc/arch-arm64/syscalls/
sync.S 5 ENTRY(sync) function
14 END(sync)
  /bionic/libc/arch-mips/syscalls/
sync.S 5 ENTRY(sync) function
19 END(sync)
  /bionic/libc/arch-x86_64/syscalls/
sync.S 5 ENTRY(sync) function
15 END(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,
  /external/mesa3d/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,
  /external/chromium_org/chrome/browser/history/
web_history_service_factory.cc 10 #include "chrome/browser/sync/profile_sync_service.h"
11 #include "chrome/browser/sync/profile_sync_service_factory.h"
15 // Returns true if the user is signed in and full history sync is enabled,
18 ProfileSyncService* sync = local
20 return sync &&
21 sync->sync_initialized() &&
22 sync->GetActiveDataTypes().Has(syncer::HISTORY_DELETE_DIRECTIVES);
47 // signed into sync, or if web history is not enabled.
  /external/chromium_org/third_party/skia/platform_tools/barelinux/bin/
download_deps 29 try gclient sync --jobs=1 || exit

Completed in 717 milliseconds

1 2 3 4 5 6 7 8 91011>>