/frameworks/wilhelm/src/ |
D | ThreadPool.c | 81 static void ThreadPool_deinit_internal(ThreadPool *tp, unsigned initialized, unsigned nThreads); 92 unsigned initialized = INITIALIZED_NONE; // which objects were successfully initialized in ThreadPool_init() local 102 initialized |= INITIALIZED_MUTEX; in ThreadPool_init() 107 initialized |= INITIALIZED_CONDNOTFULL; in ThreadPool_init() 112 initialized |= INITIALIZED_CONDNOTEMPTY; in ThreadPool_init() 156 tp->mInitialized = initialized; in ThreadPool_init() 163 ThreadPool_deinit_internal(tp, initialized, nThreads); in ThreadPool_init() 167 static void ThreadPool_deinit_internal(ThreadPool *tp, unsigned initialized, unsigned nThreads) in ThreadPool_deinit_internal() argument 174 assert(INITIALIZED_ALL == initialized); in ThreadPool_deinit_internal() 214 if (initialized & INITIALIZED_CONDNOTEMPTY) { in ThreadPool_deinit_internal() [all …]
|
/frameworks/base/media/jni/mediaeditor/ |
D | VideoEditorJava.cpp | 464 if (!pClass->initialized) in videoEditJava_initConstantClass() 482 pClass->initialized = true; in videoEditJava_initConstantClass() 737 if (!pClass->initialized) in videoEditJava_initFieldClass() 759 pClass->initialized = true; in videoEditJava_initFieldClass() 776 videoEditJava_checkAndThrowIllegalArgumentException(pResult, pEnv, (!pClass->initialized), in videoEditJava_fieldClassClass() 798 videoEditJava_checkAndThrowIllegalArgumentException(pResult, pEnv, (!pClass->initialized), in videoEditJava_fieldClassFieldIds() 837 if (!pClass->initialized) in videoEditJava_initMethodClass() 859 pClass->initialized = true; in videoEditJava_initMethodClass() 879 videoEditJava_checkAndThrowIllegalArgumentException(pResult, pEnv, (!pClass->initialized), in videoEditJava_methodClassMethodIds()
|
D | VideoEditorJava.h | 309 bool initialized; member 326 bool initialized; member 346 bool initialized; member
|
D | VideoEditorMain.cpp | 2574 bool initialized = true; in videoEditor_init() local 2588 pContext = (ManualEditContext*)videoEditClasses_getContext(&initialized, pEnv, thiz); in videoEditor_init() 2591 videoEditJava_getEngineMethodIds(&initialized, pEnv, &methodIds); in videoEditor_init() 2594 videoEditJava_checkAndThrowIllegalArgumentException(&initialized, pEnv, in videoEditor_init() 2599 videoEditJava_checkAndThrowIllegalStateException(&initialized, pEnv, in videoEditor_init() 2605 if (initialized) in videoEditor_init() 2619 (M4OSA_FileReadPointer*)videoEditOsal_alloc(&initialized, pEnv, in videoEditor_init() 2624 (M4OSA_FileWriterPointer*)videoEditOsal_alloc(&initialized, pEnv, in videoEditor_init() 2629 (M4OSA_Char *)videoEditJava_getString(&initialized, pEnv, tempPath, in videoEditor_init() 2653 if (initialized) in videoEditor_init() [all …]
|
D | VideoEditorPropertiesMain.cpp | 100 bool initialized = true; in videoEditProp_getProperties() local 112 videoEditPropClass_init(&initialized, (JNIEnv*)pEnv); in videoEditProp_getProperties()
|
/frameworks/base/core/java/com/android/internal/os/ |
D | RuntimeInit.java | 47 private static boolean initialized; field in RuntimeInit 142 initialized = true; in commonInit()
|
/frameworks/base/services/java/com/android/server/wm/ |
D | AppWindowAnimator.java | 61 public void setAnimation(Animation anim, boolean initialized) { in setAnimation() argument 66 animInitialized = initialized; in setAnimation()
|
/frameworks/native/opengl/tools/glgen/stubs/gles11/ |
D | GLES10ExtcHeader.cpp | 28 static int initialized = 0;
|
D | GLES11cHeader.cpp | 35 static int initialized = 0;
|
D | GLES11ExtcHeader.cpp | 37 static int initialized = 0;
|
D | GLES20cHeader.cpp | 28 static int initialized = 0;
|
D | GLES10cHeader.cpp | 41 static int initialized = 0;
|
/frameworks/base/docs/html/training/load-data-background/ |
D | setup-loader.jd | 100 As soon as the background framework is initialized, it calls your implementation of 109 * Callback that's invoked when the system has initialized the Loader and
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
D | mp4lib_int.h | 278 int initialized; member
|
D | pvdec_api.cpp | 137 video->initialized = PV_FALSE; in PVInitVideoDecoder() 269 video->initialized = PV_TRUE; in PVInitVideoDecoder() 1153 if (video->initialized == PV_FALSE) in PVDecodeVopHeader()
|
/frameworks/native/opengl/tools/glgen/stubs/egl/ |
D | EGL14cHeader.cpp | 35 static int initialized = 0;
|
/frameworks/base/core/jni/ |
D | android_opengl_GLES10Ext.cpp | 29 static int initialized = 0; variable
|
/frameworks/native/opengl/tools/glgen/stubs/jsr239/ |
D | GLCHeader.cpp | 64 static int initialized = 0;
|
/frameworks/base/docs/html/training/backward-compatible-ui/ |
D | new-implementation.jd | 46 …er devices—because of lazy class loading. Classes are loaded and initialized on first access…
|
/frameworks/native/opengl/libagl/ |
D | egl.cpp | 102 egl_display_t() : type(0), initialized(0) { } in egl_display_t() 111 volatile int32_t initialized; member 1405 if (android_atomic_inc(&d.initialized) == 0) { in eglInitialize() 1425 if (android_atomic_dec(&d.initialized) == 1) { in eglTerminate()
|
/frameworks/compile/slang/ |
D | README.rst | 253 on globals initialized from Java as it will be called before these 254 can be initialized. The function signature for init must be::
|
/frameworks/base/docs/html/guide/topics/ui/notifiers/ |
D | toasts.jd | 38 the text message, and the duration for the toast. It returns a properly initialized Toast
|
/frameworks/base/docs/html/guide/topics/ui/layout/ |
D | gridview.jd | 179 {@link android.widget.ImageView} is initialized with the recycled {@link android.view.View}
|
/frameworks/base/docs/html/training/articles/ |
D | smp.jd | 1111 any other thread can see it, but that’s fine since it’s fully initialized, 1117 the fields are initialized on ARM. Another thread reading from <code>thing->x</code> could 1147 gGlobalThing.initialized = true; 1152 if (gGlobalThing.initialized) { 1157 <p>Because there is no relationship between the <code>initialized</code> field and the 1159 initialized to zero by the OS, so it shouldn’t be possible to read “random” 1163 <pre> atomic_release_store(&gGlobalThing.initialized, true);</pre> 1166 <pre> int initialized = atomic_acquire_load(&gGlobalThing.initialized);</pre>
|
/frameworks/native/opengl/specs/ |
D | EGL_ANDROID_native_fence_sync.txt | 153 * If <dpy> is not the name of a valid, initialized EGLDisplay,
|