OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:initialized
(Results
1 - 25
of
359
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/mesa3d/src/gallium/auxiliary/util/
u_math.c
65
static boolean
initialized
= FALSE;
local
66
if (!
initialized
) {
69
initialized
= TRUE;
/ndk/tests/device/test-stlport_shared-exception/jni/
singleton.cpp
16
int check() {return
initialized
;}
19
singleton() :
initialized
(1) {
21
initialized
= 2;
25
int
initialized
;
member in class:singleton
/ndk/tests/device/test-stlport_static-exception/jni/
singleton.cpp
16
int check() {return
initialized
;}
19
singleton() :
initialized
(1) {
21
initialized
= 2;
25
int
initialized
;
member in class:singleton
/system/core/logd/
LogAudit.h
30
bool
initialized
;
member in class:LogAudit
LogKlog.h
34
bool
initialized
;
member in class:LogKlog
/external/mesa3d/src/gallium/state_trackers/vega/
api.c
37
static boolean
initialized
= FALSE;
local
38
if (!
initialized
) {
40
initialized
= TRUE;
/external/mesa3d/src/glx/apple/
apple_cgl.c
46
static bool
initialized
= false;
variable
69
if (
initialized
)
120
initialized
= true;
apple_glx.c
43
static bool
initialized
= false;
variable
51
if (!
initialized
) {
111
if (
initialized
)
125
initialized
= true;
/system/bt/profile/src/
manager.c
34
static bool
initialized
;
variable
47
initialized
= true;
52
initialized
= false;
74
assert(
initialized
);
83
assert(
initialized
);
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/utility/
value_init.hpp
12
// 03 Apr 2010 (Added
initialized
<T>, suggested by Jeffrey Hellrung, fixing #3472) Niels Dekker
38
// "warning C4351: new behavior: elements of array will be default
initialized
"
66
class
initialized
class in namespace:boost
102
initialized
()
function in class:boost::initialized
110
initialized
(
initialized
const & arg)
function in class:boost::initialized
115
explicit
initialized
(T const & arg)
function in class:boost::initialized
120
initialized
& operator=(
initialized
const & arg)
128
~
initialized
()
[
all
...]
/external/dhcpcd-6.8.2/
dev.h
33
int (*
initialized
)(const char *);
member in struct:dev
/external/guice/core/src/com/google/inject/internal/
DelegatingInvocationHandler.java
28
private volatile boolean
initialized
;
field in class:DelegatingInvocationHandler
36
Preconditions.checkState(
initialized
,
44
+ " proxying is
initialized
to null."
62
initialized
= true;
/external/libchrome/base/threading/
thread_local_storage.h
119
bool
initialized
() const {
function in struct:base::internal::ThreadLocalStorage::StaticSlot
/external/webrtc/webrtc/modules/audio_coding/neteq/
dtmf_tone_generator.cc
192
bool DtmfToneGenerator::
initialized
() const {
function in class:webrtc::DtmfToneGenerator
/hardware/bsp/intel/peripheral/sensors/mraa/
AcquisitionThread.hpp
97
bool
initialized
;
member in class:AcquisitionThread
/packages/apps/Gallery2/jni/
jni_egl_fence.cpp
35
static bool
initialized
= false;
variable
39
if (!
initialized
) {
51
initialized
= true;
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
crypt.h
57
int direction,
initialized
;
member in struct:crypt_data
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
crypt.h
57
int direction,
initialized
;
member in struct:crypt_data
/system/bt/device/src/classic/
peer.c
40
static bool
initialized
;
variable
58
initialized
= true;
63
initialized
= false;
86
assert(
initialized
);
/external/mesa3d/src/egl/main/
egllog.c
53
EGLBoolean
initialized
;
member in struct:__anon19551
143
if (logging.
initialized
)
161
logging.
initialized
= EGL_TRUE;
186
if (!logging.
initialized
)
/external/mesa3d/src/mesa/main/
remap.c
184
* The remap table needs to be
initialized
before calling the
192
static GLboolean
initialized
= GL_FALSE;
local
195
if (
initialized
)
197
initialized
= GL_TRUE;
/external/opencv3/modules/cudacodec/src/
ffmpeg_video_source.cpp
60
static bool
initialized
= 0;
local
62
if (!
initialized
)
83
initialized
= create_InputMediaStream_FFMPEG_p != 0 && release_InputMediaStream_FFMPEG_p != 0 && read_InputMediaStream_FFMPEG_p != 0;
90
initialized
= true;
94
return
initialized
;
/hardware/intel/common/libmix/mix_video/src/
mixvideo_private.h
19
gboolean
initialized
;
member in struct:_MixVideoPrivate
/libcore/ojluni/src/main/java/java/security/
AlgorithmParameters.java
41
*
initialized
via a call to <code>init</code>, using an appropriate parameter
131
// Has this object been
initialized
?
132
private boolean
initialized
= false;
field in class:AlgorithmParameters
170
* <p> The returned parameter object must be
initialized
via a call to
212
* <p>The returned parameter object must be
initialized
via a call to
259
* <p>The returned parameter object must be
initialized
via a call to
313
* object, or if this parameter object has already been
initialized
.
318
if (this.
initialized
)
319
throw new InvalidParameterSpecException("already
initialized
");
321
this.
initialized
= true
[
all
...]
SecureClassLoader.java
45
* succeed. Otherwise the object is not
initialized
and the object is
48
private final boolean
initialized
;
field in class:SecureClassLoader
82
initialized
= true;
105
initialized
= true;
219
* Check to make sure the class loader has been
initialized
.
222
if (!
initialized
) {
223
throw new SecurityException("ClassLoader object not
initialized
");
Completed in 526 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>