Searched refs:looper (Results 26 - 33 of 33) sorted by relevance

12

/external/qemu/android/
H A Dmain-common.c980 coreconsole_init(CoreConsole* cc, const SockAddress* address, Looper* looper) argument
986 loopIo_init(cc->io, looper, fd, coreconsole_io_func, cc);
1012 Looper* looper; local
1022 looper = looper_newGeneric();
1027 coreconsole_init(&cores[nn], &address, looper);
1030 looper_runWithTimeout(looper, CORE_PORT_TIMEOUT_MS*2);
1044 looper_free(looper);
H A Dsdk-controller-socket.c350 /* I/O looper for timers. */
351 Looper* looper; member in struct:SDKCtlSocket
1169 loopTimer_init(query->timer, sdkctl->looper, _on_skdctl_query_timeout, query);
1804 if (sdkctl->looper != NULL) {
1805 looper_free(sdkctl->looper);
1947 sdkctl->looper = looper_newCore();
1948 if (sdkctl->looper == NULL) {
1949 E("Unable to create I/O looper for SDKCtl socket '%s'",
2007 sdkctl->looper);
H A Dhw-qemud.c17 #include "android/looper.h"
635 void* looper; member in struct:QemudPipe
1947 pipe->looper = _looper;
2200 qemud_pipe->looper = pipeOpaque;
/external/webkit/Source/WebCore/platform/graphics/android/fonts/
H A DFontAndroid.cpp111 SkLayerDrawLooper* looper = new SkLayerDrawLooper; local
112 paint->setLooper(looper)->unref();
118 // Specify the behavior of the looper
124 // The paint is only valid until the looper receives another call to
131 strokeWidth = setupStroke(looper->addLayer(info), gc, font)->getStrokeWidth();
135 setupFill(looper->addLayer(info), gc, font);
144 // add an offset to the looper when creating a shadow layer
147 SkPaint* p = looper->addLayer(info);
/external/webkit/Source/WebCore/platform/graphics/android/context/
H A DPlatformGraphicsContext.cpp405 SkDrawLooper* looper = new SkBlurDrawLooper(m_state->shadow.blur, local
410 paint->setLooper(looper)->unref();
/external/webrtc/src/modules/audio_processing/test/android/apmtest/jni/
H A Dmain.c248 state->looper, LOOPER_ID_USER, NULL, NULL);
/external/skia/include/core/
H A DSkPaint.h627 * Return the paint's SkDrawLooper (if any). Does not affect the looper's
633 * Set or clear the looper object.
635 * Pass NULL to clear any previous looper.
637 * If a previous looper exists in the paint, its reference count is
638 * decremented. If looper is not NULL, its reference count is
640 * @param looper May be NULL. The new looper to be installed in the paint.
641 * @return looper
643 SkDrawLooper* setLooper(SkDrawLooper* looper);
/external/skia/src/core/
H A DSkPaint.cpp400 SkDrawLooper* SkPaint::setLooper(SkDrawLooper* looper) { argument
401 SkRefCnt_SafeAssign(fLooper, looper);
403 return looper;

Completed in 152 milliseconds

12