Searched refs:isInit (Results 1 - 25 of 26) sorted by relevance

12

/external/srec/portable/src/
H A DpLastError.c38 ESR_BOOL isInit; local
42 rc = PLogIsInitialized(&isInit);
44 isInit = FALSE;
45 if (isInit)
H A Dplog.c188 ESR_ReturnCode PLogIsInitialized(ESR_BOOL* isInit) argument
190 if (isInit == NULL)
192 *isInit = Glogger != NULL;
H A Dpmemory.c127 ESR_BOOL isInit; local
130 rc = PStackTraceIsInitialized(&isInit);
131 if (rc == ESR_SUCCESS && isInit)
583 ESR_BOOL isInit; local
627 rc = PStackTraceIsInitialized(&isInit);
630 if (isInit)
/external/chromium_org/third_party/sqlite/src/src/
H A Drandom.c25 unsigned char isInit; /* True if initialized */ member in struct:sqlite3PrngType
73 if( !wsdPrng.isInit ){
88 wsdPrng.isInit = 1;
143 GLOBAL(struct sqlite3PrngType, sqlite3Prng).isInit = 0;
H A Dmutex_os2.c109 static volatile int isInit = 0; local
118 if ( !isInit ){
127 while( !isInit ){
132 if( !isInit ){
136 isInit = 1;
H A Dtest_mutex.c36 int isInit; /* True if initialized */ member in struct:test_mutex_globals
61 g.isInit = 1;
69 g.isInit = 0;
80 assert( g.isInit );
101 assert( g.isInit );
112 assert( g.isInit );
121 assert( g.isInit );
130 assert( g.isInit );
H A Dpcache1.c119 ** szSlot, nSlot, pStart, pEnd, nReserve, and isInit values are all
123 int isInit; /* True if initialized */ member in struct:PCacheGlobal
180 if( pcache1.isInit ){
519 assert( pcache1.isInit==0 );
526 pcache1.isInit = 1;
537 assert( pcache1.isInit!=0 );
H A DbtreeInt.h273 u8 isInit; /* True if previously initialized. MUST BE FIRST! */ member in struct:MemPage
H A Dmain.c121 ** must be complete. So isInit must not be set until the very end
124 if( sqlite3GlobalConfig.isInit ) return SQLITE_OK;
185 if( sqlite3GlobalConfig.isInit==0 && sqlite3GlobalConfig.inProgress==0 ){
200 sqlite3GlobalConfig.isInit = 1;
249 if( sqlite3GlobalConfig.isInit ){
252 sqlite3GlobalConfig.isInit = 0;
285 if( sqlite3GlobalConfig.isInit ) return SQLITE_MISUSE_BKPT;
H A Dbtree.c1379 if( !pPage->isInit ){
1472 pPage->isInit = 1;
1508 pPage->isInit = 1;
1641 if( pPage->isInit ){
1643 pPage->isInit = 0;
2671 u8 isInitOrig = pPage->isInit;
2698 pPage->isInit = isInitOrig;
2726 u8 isInitOrig = pPage->isInit;
2760 pPage->isInit = isInitOrig;
4243 assert( pRoot->isInit
[all...]
H A Dtest_malloc.c796 static int isInit = 0; local
804 if( !isInit ){
811 isInit = 1;
H A Dwal.c304 u8 isInit; /* 1 when initialized */ member in struct:WalIndexHdr
630 pWal->hdr.isInit = 1;
1852 if( h1.isInit==0 ){
H A Dtclsqlite.c3096 int isInit; member in struct:MD5Context
3219 ctx->isInit = 1;
3443 if( !p->isInit ){
H A DsqliteInt.h2442 int isInit; /* True after initialization has finished */ member in struct:Sqlite3Config
/external/srec/portable/include/
H A Dplog.h140 * @param isInit True if module is initialized
143 PORTABLE_API ESR_ReturnCode PLogIsInitialized(ESR_BOOL* isInit);
/external/dexmaker/src/dx/java/com/android/dx/rop/type/
H A DPrototype.java165 * @param isInit whether this is an init method
169 boolean isStatic, boolean isInit) {
176 if (isInit) {
168 intern(String descriptor, Type definer, boolean isStatic, boolean isInit) argument
/external/clang/lib/CodeGen/
H A DCGExprComplex.cpp80 void EmitStoreOfComplex(ComplexPairTy Val, LValue LV, bool isInit);
331 bool isInit) {
333 return CGF.EmitAtomicStore(RValue::getComplex(Val), lvalue, isInit);
674 EmitStoreOfComplex(ResVal, LHS, /*isInit*/ false);
679 CGF.EmitStoreOfScalar(ResVal, LHS, /*isInit*/ false);
719 EmitStoreOfComplex(Val, LHS, /*isInit*/ false);
847 bool isInit) {
852 Emitter.EmitStoreOfComplex(Val, dest, isInit);
857 bool isInit) {
858 ComplexExprEmitter(*this).EmitStoreOfComplex(V, dest, isInit);
329 EmitStoreOfComplex(ComplexPairTy Val, LValue lvalue, bool isInit) argument
846 EmitComplexExprIntoLValue(const Expr *E, LValue dest, bool isInit) argument
856 EmitStoreOfComplex(ComplexPairTy V, LValue dest, bool isInit) argument
[all...]
H A DCodeGenFunction.h1958 void EmitAtomicStore(RValue rvalue, LValue lvalue, bool isInit);
1989 llvm::MDNode *TBAAInfo = nullptr, bool isInit = false,
1996 /// l-value. The isInit flag indicates whether this is an initialization.
1998 void EmitStoreOfScalar(llvm::Value *value, LValue lvalue, bool isInit=false);
2011 void EmitStoreThroughLValue(RValue Src, LValue Dst, bool isInit=false);
2377 void EmitComplexExprIntoLValue(const Expr *E, LValue dest, bool isInit);
2380 void EmitStoreOfComplex(ComplexPairTy V, LValue dest, bool isInit);
H A DCGAtomic.cpp1031 void CodeGenFunction::EmitAtomicStore(RValue rvalue, LValue dest, bool isInit) { argument
1041 if (isInit) {
1101 if (!isInit) store->setAtomic(llvm::SequentiallyConsistent);
H A DCGExpr.cpp154 /*isInit*/ false);
1184 bool isInit, QualType TBAABaseType,
1226 isInit); local
1242 bool isInit) {
1245 lvalue.getTBAAInfo(), isInit, lvalue.getTBAABaseType(),
1382 bool isInit) {
1469 EmitStoreOfScalar(Src.getScalarVal(), Dst, isInit);
1181 EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr, bool Volatile, unsigned Alignment, QualType Ty, llvm::MDNode *TBAAInfo, bool isInit, QualType TBAABaseType, uint64_t TBAAOffset) argument
1241 EmitStoreOfScalar(llvm::Value *value, LValue lvalue, bool isInit) argument
1381 EmitStoreThroughLValue(RValue Src, LValue Dst, bool isInit) argument
/external/chromium_org/third_party/sqlite/src/ext/async/
H A Dsqlite3async.c257 int isInit; member in struct:AsyncPrimitives
264 if( !primitives.isInit ){
272 primitives.isInit = 1;
277 if( primitives.isInit ){
282 primitives.isInit = 0;
/external/chromium_org/third_party/sqlite/src/test/
H A Dthreadtest3.c115 int isInit; member in struct:MD5Context
238 ctx->isInit = 1;
365 if( !p->isInit ){
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c10787 int isInit; /* True after initialization has finished */ member in struct:Sqlite3Config
11743 0, /* isInit */
16852 static volatile int isInit = 0; local
16861 if ( !isInit ){
16870 while( !isInit ){
16875 if( !isInit ){
16879 isInit = 1;
19539 unsigned char isInit; /* True if initialized */ member in struct:sqlite3PrngType
19587 if( !wsdPrng.isInit ){
19602 wsdPrng.isInit
35037 int isInit; /* True if initialized */ member in struct:PCacheGlobal
43584 u8 isInit; /* 1 when initialized */ member in struct:WalIndexHdr
46475 u8 isInit; /* True if previously initialized. MUST BE FIRST! */ member in struct:MemPage
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c12208 int isInit; /* True after initialization has finished */ member in struct:Sqlite3Config
13355 0, /* isInit */
21604 unsigned char isInit; /* True if initialized */ member in struct:sqlite3PrngType
21635 wsdPrng.isInit = 0;
21649 if( !wsdPrng.isInit ){
21664 wsdPrng.isInit = 1;
38688 int isInit; /* True if initialized */ member in struct:PCacheGlobal
47785 u8 isInit; /* 1 when initialized */ member in struct:WalIndexHdr
50869 u8 isInit; /* True if previously initialized. MUST BE FIRST! */ member in struct:MemPage
[all...]
/external/sqlite/dist/
H A Dsqlite3.c12208 int isInit; /* True after initialization has finished */ member in struct:Sqlite3Config
13355 0, /* isInit */
21604 unsigned char isInit; /* True if initialized */ member in struct:sqlite3PrngType
21635 wsdPrng.isInit = 0;
21649 if( !wsdPrng.isInit ){
21664 wsdPrng.isInit = 1;
38708 int isInit; /* True if initialized */ member in struct:PCacheGlobal
47805 u8 isInit; /* 1 when initialized */ member in struct:WalIndexHdr
50889 u8 isInit; /* True if previously initialized. MUST BE FIRST! */ member in struct:MemPage
[all...]

Completed in 882 milliseconds

12