/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/core/java/com/android/internal/os/ |
D | RuntimeInit.java | 50 private static boolean initialized; field in RuntimeInit 167 initialized = true; in commonInit()
|
/frameworks/native/opengl/tools/glgen/stubs/egl/ |
D | EGLExtcHeader.cpp | 40 static int initialized = 0; variable
|
D | EGL14cHeader.cpp | 39 static int initialized = 0; variable
|
/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/base/core/jni/ |
D | android_opengl_EGLExt.cpp | 40 static int initialized = 0; variable
|
D | android_hardware_location_ContextHubService.cpp | 103 int initialized; member
|
D | android_opengl_GLES10Ext.cpp | 33 static int initialized = 0; variable
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
D | mp4lib_int.h | 278 int initialized; member
|
D | pvdec_api.cpp | 155 video->initialized = PV_FALSE; in PVInitVideoDecoder() 290 video->initialized = PV_TRUE; in PVInitVideoDecoder() 1205 if (video->initialized == PV_FALSE) in PVDecodeVopHeader()
|
/frameworks/native/vulkan/tools/ |
D | vkinfo.cpp | 311 static bool initialized = false; in Indent() local 312 if (!initialized) { in Indent() 315 initialized = true; in Indent()
|
/frameworks/native/vulkan/libvulkan/ |
D | api.cpp | 1137 static bool initialized; in EnsureInitialized() local 1142 initialized = true; in EnsureInitialized() 1146 return initialized; in EnsureInitialized()
|
/frameworks/native/opengl/tools/glgen/stubs/jsr239/ |
D | GLCHeader.cpp | 68 static int initialized = 0;
|
/frameworks/native/opengl/specs/ |
D | EGL_ANDROID_presentation_time.txt | 96 set. If <dpy> is not the name of a valid, initialized EGLDisplay, an
|
D | EGL_ANDROID_native_fence_sync.txt | 153 * If <dpy> is not the name of a valid, initialized EGLDisplay,
|
/frameworks/base/libs/hwui/ |
D | PathTessellator.cpp | 914 if (initialized) { in addPoint() 917 initialized = true; in addPoint() 936 bool initialized = false; member in android::uirenderer::ClockwiseEnforcer
|
/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/tools/glgen/stubs/gles11/ |
D | common.cpp | 7 static int initialized = 0; variable
|
/frameworks/native/opengl/libagl/ |
D | egl.cpp | 102 egl_display_t() : type(0), initialized(0) { } in egl_display_t() 111 std::atomic_size_t initialized; member 1432 if (d.initialized.fetch_add(1, std::memory_order_acquire) == 0) { in eglInitialize() 1452 if (d.initialized.fetch_sub(1, std::memory_order_release) == 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/training/volley/ |
D | requestqueue.jd | 45 must be initialized with the HTTP client your app is using to connect to the network.
|
/frameworks/base/docs/html/guide/topics/ui/layout/ |
D | gridview.jd | 181 {@link android.widget.ImageView} is initialized with the recycled {@link android.view.View}
|
/frameworks/base/docs/html/training/articles/ |
D | smp.jd | 1113 any other thread can see it, but that’s fine since it’s fully initialized, 1119 the fields are initialized on ARM. Another thread reading from <code>thing->x</code> could 1149 gGlobalThing.initialized = true; 1154 if (gGlobalThing.initialized) { 1159 <p>Because there is no relationship between the <code>initialized</code> field and the 1161 initialized to zero by the OS, so it shouldn’t be possible to read “random” 1165 <pre> atomic_release_store(&gGlobalThing.initialized, true);</pre> 1168 <pre> int initialized = atomic_acquire_load(&gGlobalThing.initialized);</pre>
|
/frameworks/base/docs/html/training/custom-views/ |
D | create-view.jd | 215 when the view is initialized. To provide dynamic behavior, expose a property getter and
|