/external/e2fsprogs/include/mingw/ |
H A D | unistd.h | 12 // no-oped sync 13 __inline void sync(void){}; function
|
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.manip/ |
H A D | flush.pass.cpp | 35 sync() function in class:testbuf
|
H A D | endl.pass.cpp | 55 sync() function in class:testbuf
|
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.unformatted/ |
H A D | flush.pass.cpp | 34 sync() function in class:testbuf
|
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream_sentry/ |
H A D | destruct.pass.cpp | 32 int virtual sync() function in struct:testbuf1
|
H A D | construct.pass.cpp | 30 int virtual sync() function in struct:testbuf1
|
/external/compiler-rt/test/lsan/TestCases/ |
H A D | use_registers.cc | 16 int *sync = reinterpret_cast<int *>(arg); local 40 __sync_fetch_and_xor(sync, 1); 46 int sync = 0; local 48 int res = pthread_create(&thread_id, 0, registers_thread_func, &sync); 50 while (!__sync_fetch_and_xor(&sync, 0))
|
H A D | use_stacks_threaded.cc | 16 int *sync = reinterpret_cast<int *>(arg); local 20 __sync_fetch_and_xor(sync, 1); 26 int sync = 0; local 28 int res = pthread_create(&thread_id, 0, stacks_thread_func, &sync); 30 while (!__sync_fetch_and_xor(&sync, 0))
|
/external/parameter-framework/upstream/parameter/ |
H A D | HardwareBackSynchronizer.cpp | 51 void CHardwareBackSynchronizer::sync() function in class:CHardwareBackSynchronizer 54 _backSyncerSet.sync(*_pParameterBlackboard, true, NULL);
|
H A D | SimulatedBackSynchronizer.cpp | 43 void CSimulatedBackSynchronizer::sync() function in class:CSimulatedBackSynchronizer
|
H A D | VirtualSyncer.cpp | 42 bool CVirtualSyncer::sync(CParameterBlackboard ¶meterBlackboard, bool bBack, string &strError) function in class:CVirtualSyncer
|
H A D | SyncerSet.cpp | 55 bool CSyncerSet::sync(CParameterBlackboard ¶meterBlackboard, bool bBack, function in class:CSyncerSet 69 if (!pSyncer->sync(parameterBlackboard, bBack, strError)) {
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
H A D | Interp.java | 54 protected void sync(int i) { method in class:Interp.FilteringTokenStream 55 super.sync(i);
|
/external/libcxx/test/std/input.output/iostream.format/input.streams/istream/istream_sentry/ |
H A D | ctor.pass.cpp | 46 int virtual sync() function in struct:testbuf
|
/external/libcxx/test/std/input.output/iostream.format/input.streams/istream.unformatted/ |
H A D | sync.pass.cpp | 12 // int sync(); 43 int sync() function in struct:testbuf 55 assert(is.sync() == 0); 61 assert(is.sync() == 0);
|
/external/mesa3d/src/egl/main/ |
H A D | eglsync.c | 39 * Parse the list of sync attributes and return the proper error code. 42 _eglParseSyncAttribList(_EGLSync *sync, const EGLAttrib *attrib_list) argument 56 if (sync->Type == EGL_SYNC_CL_EVENT_KHR) { 57 sync->CLEvent = val; 63 if (sync->Type == EGL_SYNC_NATIVE_FENCE_ANDROID) { 65 sync->SyncFd = val; 76 _eglLog(_EGL_DEBUG, "bad sync attribute 0x%" PRIxPTR, attr); 86 _eglInitSync(_EGLSync *sync, _EGLDisplay *dpy, EGLenum type, argument 91 _eglInitResource(&sync->Resource, sizeof(*sync), dp 123 _eglGetSyncAttrib(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSync *sync, EGLint attribute, EGLAttrib *value) argument [all...] |
H A D | eglsync.h | 44 /* A sync is a display resource */ 56 _eglInitSync(_EGLSync *sync, _EGLDisplay *dpy, EGLenum type, 61 _eglGetSyncAttrib(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSync *sync, 66 * Increment reference count for the sync. 69 _eglGetSync(_EGLSync *sync) argument 71 if (sync) 72 _eglGetResource(&sync->Resource); 73 return sync; 78 * Decrement reference count for the sync. 81 _eglPutSync(_EGLSync *sync) argument 92 _eglLinkSync(_EGLSync *sync) argument 103 _eglUnlinkSync(_EGLSync *sync) argument 116 _EGLSync *sync = (_EGLSync *) handle; local 127 _eglGetSyncHandle(_EGLSync *sync) argument [all...] |
/external/mesa3d/src/mesa/main/ |
H A D | robustness.c | 33 _context_lost_GetSynciv(GLsync sync, GLenum pname, GLsizei bufSize, argument
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
H A D | AddressParametersHeader.java | 74 * @param sync 77 protected AddressParametersHeader(String name, boolean sync) { argument 78 super(name,sync);
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
H A D | ShadowCookieSyncManager.java | 37 public void sync() { method in class:ShadowCookieSyncManager
|
/external/skia/include/gpu/ |
H A D | GrBackendSemaphore.h | 28 void initGL(GrGLsync sync) { argument 30 fGLSync = sync;
|
/external/skia/src/gpu/gl/ |
H A D | GrGLSemaphore.h | 24 GrGLsync sync, 28 sema->setSync(sync); 34 GrGLsync sync() const { return fSync; } function in class:GrGLSemaphore 35 void setSync(const GrGLsync& sync) { fSync = sync; } argument 23 MakeWrapped(const GrGLGpu* gpu, GrGLsync sync, GrWrapOwnership ownership) argument
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/ |
H A D | EventWithExceptionDebuggee.java | 51 sync(); 55 private void sync() { method in class:EventWithExceptionDebuggee
|
/external/python/cpython2/Demo/threads/ |
H A D | Coroutine.py | 70 import sync namespace 75 self.e = sync.event()
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
H A D | LookaheadStream.h | 80 public void consume() { sync(1); remove(); } 86 public void sync(int need) { function in class:FastQueue 119 sync(k);
|