OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SQLITE_MUTEX_RECURSIVE
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/third_party/sqlite/src/src/
mutex_noop.c
114
case
SQLITE_MUTEX_RECURSIVE
: {
139
assert( p->id==SQLITE_MUTEX_FAST || p->id==
SQLITE_MUTEX_RECURSIVE
);
148
** upon successful entry. Mutexes created using
SQLITE_MUTEX_RECURSIVE
can
156
assert( p->id==
SQLITE_MUTEX_RECURSIVE
|| debugMutexNotheld(pX) );
161
assert( p->id==
SQLITE_MUTEX_RECURSIVE
|| debugMutexNotheld(pX) );
176
assert( p->id==
SQLITE_MUTEX_RECURSIVE
|| debugMutexNotheld(pX) );
mutex_os2.c
60
** <li>
SQLITE_MUTEX_RECURSIVE
70
** a new mutex. The new mutex is recursive when
SQLITE_MUTEX_RECURSIVE
73
** between
SQLITE_MUTEX_RECURSIVE
and SQLITE_MUTEX_FAST if it does
85
**
SQLITE_MUTEX_RECURSIVE
.
88
** or
SQLITE_MUTEX_RECURSIVE
) is used then sqlite3_mutex_alloc()
97
case
SQLITE_MUTEX_RECURSIVE
: {
168
assert( p->id==SQLITE_MUTEX_FAST || p->id==
SQLITE_MUTEX_RECURSIVE
);
185
if( ulCount==0 || ( ulCount>1 && p->id!=
SQLITE_MUTEX_RECURSIVE
) )
215
** upon successful entry. Mutexes created using
SQLITE_MUTEX_RECURSIVE
can
222
assert( p->id==
SQLITE_MUTEX_RECURSIVE
|| os2MutexNotheld(p) )
[
all
...]
mutex_unix.c
96
** <li>
SQLITE_MUTEX_RECURSIVE
106
** a new mutex. The new mutex is recursive when
SQLITE_MUTEX_RECURSIVE
109
** between
SQLITE_MUTEX_RECURSIVE
and SQLITE_MUTEX_FAST if it does
121
**
SQLITE_MUTEX_RECURSIVE
.
124
** or
SQLITE_MUTEX_RECURSIVE
) is used then sqlite3_mutex_alloc()
140
case
SQLITE_MUTEX_RECURSIVE
: {
192
assert( p->id==SQLITE_MUTEX_FAST || p->id==
SQLITE_MUTEX_RECURSIVE
);
202
** upon successful entry. Mutexes created using
SQLITE_MUTEX_RECURSIVE
can
209
assert( p->id==
SQLITE_MUTEX_RECURSIVE
|| pthreadMutexNotheld(p) );
252
assert( p->id==
SQLITE_MUTEX_RECURSIVE
|| pthreadMutexNotheld(p) )
[
all
...]
mutex_w32.c
153
** <li>
SQLITE_MUTEX_RECURSIVE
163
** a new mutex. The new mutex is recursive when
SQLITE_MUTEX_RECURSIVE
166
** between
SQLITE_MUTEX_RECURSIVE
and SQLITE_MUTEX_FAST if it does
178
**
SQLITE_MUTEX_RECURSIVE
.
181
** or
SQLITE_MUTEX_RECURSIVE
) is used then sqlite3_mutex_alloc()
191
case
SQLITE_MUTEX_RECURSIVE
: {
224
assert( p->id==SQLITE_MUTEX_FAST || p->id==
SQLITE_MUTEX_RECURSIVE
);
234
** upon successful entry. Mutexes created using
SQLITE_MUTEX_RECURSIVE
can
243
assert( p->id==
SQLITE_MUTEX_RECURSIVE
|| winMutexNotheld2(p, tid) );
260
assert( p->id==
SQLITE_MUTEX_RECURSIVE
|| winMutexNotheld2(p, tid) )
[
all
...]
test_mutex.c
86
if( eType==SQLITE_MUTEX_FAST || eType==
SQLITE_MUTEX_RECURSIVE
){
103
if( p->eType==SQLITE_MUTEX_FAST || p->eType==
SQLITE_MUTEX_RECURSIVE
){
test3.c
78
sDb.mutex = sqlite3MutexAlloc(
SQLITE_MUTEX_RECURSIVE
);
main.c
153
sqlite3MutexAlloc(
SQLITE_MUTEX_RECURSIVE
);
[
all
...]
sqlite.h.in
[
all
...]
/external/javasqlite/src/main/java/SQLite/
Constants.java
167
public static final int
SQLITE_MUTEX_RECURSIVE
= 1;
/external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.h
[
all
...]
sqlite3.c
[
all
...]
Completed in 102 milliseconds