Home
last modified time | relevance | path

Searched refs:initialized (Results 1 – 25 of 55) sorted by relevance

123

/frameworks/wilhelm/src/
DThreadPool.c81 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/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/base/
DRootsOracle.java67 private boolean initialized; field in RootsOracle
82 if (!initialized) { in get()
135 initialized = true; in initialize()
/frameworks/base/core/java/com/android/internal/os/
DRuntimeInit.java48 private static boolean initialized; field in RuntimeInit
155 initialized = true; in commonInit()
/frameworks/native/opengl/tools/glgen/stubs/egl/
DEGL14cHeader.cpp35 static int initialized = 0; variable
DEGLExtcHeader.cpp36 static int initialized = 0; variable
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Dmp4lib_int.h278 int initialized; member
Dpvdec_api.cpp137 video->initialized = PV_FALSE; in PVInitVideoDecoder()
269 video->initialized = PV_TRUE; in PVInitVideoDecoder()
1153 if (video->initialized == PV_FALSE) in PVDecodeVopHeader()
/frameworks/base/core/jni/
Dandroid_opengl_EGLExt.cpp36 static int initialized = 0; variable
Dandroid_opengl_GLES10Ext.cpp29 static int initialized = 0; variable
/frameworks/base/docs/html/training/load-data-background/
Dsetup-loader.jd100 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/native/opengl/tools/glgen/stubs/gles11/
Dcommon.cpp7 static int initialized = 0; variable
/frameworks/native/opengl/tools/glgen/stubs/jsr239/
DGLCHeader.cpp64 static int initialized = 0;
/frameworks/native/opengl/specs/
DEGL_ANDROID_presentation_time.txt96 set. If <dpy> is not the name of a valid, initialized EGLDisplay, an
DEGL_ANDROID_native_fence_sync.txt153 * If <dpy> is not the name of a valid, initialized EGLDisplay,
/frameworks/base/docs/html/training/backward-compatible-ui/
Dnew-implementation.jd46 …er devices&mdash;because of lazy class loading. Classes are loaded and initialized on first access…
/frameworks/base/docs/html/training/activity-testing/
Dactivity-basic-testing.jd69 <p>A <em>test fixture</em> consists of objects that must be initialized for
142 instantiated or initialized. That way, you won’t have to see
/frameworks/native/opengl/libagl/
Degl.cpp102 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/
DREADME.rst253 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/
Dtoasts.jd38 the text message, and the duration for the toast. It returns a properly initialized Toast
/frameworks/base/docs/html/training/volley/
Drequestqueue.jd45 must be initialized with the HTTP client your app is using to connect to the network.
/frameworks/base/docs/html/guide/topics/ui/layout/
Dgridview.jd178 {@link android.widget.ImageView} is initialized with the recycled {@link android.view.View}
/frameworks/base/docs/html/training/articles/
Dsmp.jd1113 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/
Dcreate-view.jd216 when the view is initialized. To provide dynamic behavior, expose a property getter and
/frameworks/base/docs/html/training/connect-devices-wirelessly/
Dwifi-direct.jd187 received back when you initialized the peer-to-peer mManager</li>
/frameworks/base/docs/html/tools/testing/
Dactivity_test.jd356 important objects have been initialized.
531 …The initial conditions test verifies that the application under test is initialized correctly. It …
536 …The item select listener is initialized. This listener is called when a selection is made from the…
539 The adapter that provides values to the spinner is initialized.

123