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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/arch-arm/syscalls/
sync.S 6 ENTRY(sync) function
15 END(sync)
  /bionic/libc/arch-mips/syscalls/
sync.S 4 .globl sync
6 .ent sync
8 sync: label
22 .end sync
  /bionic/libc/arch-x86/syscalls/
sync.S 6 ENTRY(sync) function
21 END(sync)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.manip/
flush.pass.cpp 35 sync() function in class:testbuf
endl.pass.cpp 55 sync() function in class:testbuf
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.unformatted/
flush.pass.cpp 34 sync() function in class:testbuf
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream_sentry/
destruct.pass.cpp 30 int virtual sync() function in struct:testbuf1
construct.pass.cpp 30 int virtual sync() function in struct:testbuf1
  /external/compiler-rt/lib/lsan/lit_tests/TestCases/
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))
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))
  /external/chromium_org/chrome/browser/resources/file_manager/js/
test_util.js 13 * Public functions in the test.util.sync and the test.util.async namespaces are
25 test.util.sync = {};
121 test.util.sync.getDocument_ = function(contentWindow, opt_iframeQuery) {
134 test.util.sync.getErrorCount = function() {
152 test.util.sync.resizeWindow = function(contentWindow, width, height) {
163 test.util.sync.getSelectedFiles = function(contentWindow) {
182 test.util.sync.getFileList = function(contentWindow) {
232 var doc = test.util.sync.getDocument_(contentWindow, iframeQuery);
260 var files = test.util.sync.getFileList(contentWindow);
282 test.util.sync.getAutocompleteList = function(contentWindow)
    [all...]
  /art/runtime/
indenter.h 45 int sync() { function in class:Indenter
  /external/chromium_org/chrome/browser/history/
web_history_service_factory.cc 11 #include "chrome/browser/sync/profile_sync_service.h"
12 #include "chrome/browser/sync/profile_sync_service_factory.h"
17 // Returns true if the user is signed in and full history sync is enabled,
22 ProfileSyncService* sync = local
24 return sync &&
25 sync->sync_initialized() &&
26 sync->GetActiveDataTypes().Has(syncer::HISTORY_DELETE_DIRECTIVES);
53 // signed into sync, or if web history is not enabled.
  /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/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);
  /frameworks/base/core/tests/overlaytests/
runtests.sh 100 function sync() function
103 $adb sync data | tee -a $log
109 # build and sync
112 sync
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream/istream_sentry/
ctor.pass.cpp 46 int virtual sync() function in struct:testbuf
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream.unformatted/
sync.pass.cpp 12 // int sync();
43 int sync() function in struct:testbuf
55 assert(is.sync() == 0);
61 assert(is.sync() == 0);
  /external/chromium/chrome/browser/resources/sync_internals/
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...]
  /external/chromium_org/chrome/browser/resources/sync_internals/
chrome_sync.js 11 * Organize sync event listeners and asynchronous requests.
15 chrome.sync = chrome.sync || {};
72 chrome.sync.events = {
77 // See chrome/browser/sync/engine/syncapi.h for docs.
105 for (var eventType in chrome.sync.events) {
106 var events = chrome.sync.events[eventType];
109 chrome.sync[event] = new Event();
138 // Sync service functions.
141 // Notification functions. See chrome/browser/sync/engine/syncapi.
    [all...]
  /cts/tests/tests/openglperf/jni/
OpenGlPerfNativeJni.cpp 18 #define EGL_EGLEXT_PROTOTYPES // for egl*Sync*
29 EGLSyncKHR sync);
31 EGLSyncKHR sync, EGLint flags, EGLTimeKHR timeout);
66 EGLSyncKHR sync = mEglCreateSyncKHR(dpy, EGL_SYNC_FENCE_KHR, NULL); local
67 if (sync == EGL_NO_SYNC_KHR) {
71 EGLint result = mEglClientWaitSyncKHR(dpy, sync, EGL_SYNC_FLUSH_COMMANDS_BIT_KHR, waitTimeInNs);
79 mEglDestroySyncKHR(dpy, sync);
  /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/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...]
  /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...]

Completed in 518 milliseconds

1 2 3 4 5 6 7 8 91011>>