Home
last modified time | relevance | path

Searched refs:sqlite3_mutex (Results 1 – 25 of 708) sorted by relevance

12345678910>>...29

/dports/databases/sqlite3/sqlite-src-3350500/src/
H A Dmutex_noop.c40 static sqlite3_mutex *noopMutexAlloc(int id){ in noopMutexAlloc()
42 return (sqlite3_mutex*)8; in noopMutexAlloc()
46 static int noopMutexTry(sqlite3_mutex *p){ in noopMutexTry()
89 static int debugMutexHeld(sqlite3_mutex *pX){ in debugMutexHeld()
93 static int debugMutexNotheld(sqlite3_mutex *pX){ in debugMutexNotheld()
109 static sqlite3_mutex *debugMutexAlloc(int id){ in debugMutexAlloc()
134 return (sqlite3_mutex*)pNew; in debugMutexAlloc()
140 static void debugMutexFree(sqlite3_mutex *pX){ in debugMutexFree()
163 static void debugMutexEnter(sqlite3_mutex *pX){ in debugMutexEnter()
168 static int debugMutexTry(sqlite3_mutex *pX){ in debugMutexTry()
[all …]
H A Dmutex.c57 sqlite3_mutex *mutex;
69 static int checkMutexHeld(sqlite3_mutex *p){ in checkMutexHeld()
125 return (sqlite3_mutex*)p; in checkMutexAlloc()
170 static int checkMutexTry(sqlite3_mutex *p){ in checkMutexTry()
281 sqlite3_mutex *sqlite3_mutex_alloc(int id){ in sqlite3_mutex_alloc()
290 sqlite3_mutex *sqlite3MutexAlloc(int id){ in sqlite3MutexAlloc()
302 void sqlite3_mutex_free(sqlite3_mutex *p){ in sqlite3_mutex_free()
313 void sqlite3_mutex_enter(sqlite3_mutex *p){ in sqlite3_mutex_enter()
324 int sqlite3_mutex_try(sqlite3_mutex *p){ in sqlite3_mutex_try()
339 void sqlite3_mutex_leave(sqlite3_mutex *p){ in sqlite3_mutex_leave()
[all …]
H A Dtest_mutex.c40 struct sqlite3_mutex { struct
41 sqlite3_mutex *pReal; argument
57 static int counterMutexHeld(sqlite3_mutex *p){ in counterMutexHeld()
91 sqlite3_mutex *pReal; in counterMutexAlloc()
92 sqlite3_mutex *pRet = 0; in counterMutexAlloc()
102 pRet = (sqlite3_mutex *)malloc(sizeof(sqlite3_mutex)); in counterMutexAlloc()
118 static void counterMutexFree(sqlite3_mutex *p){ in counterMutexFree()
140 static int counterMutexTry(sqlite3_mutex *p){ in counterMutexTry()
392 static sqlite3_mutex *getStaticMutexPointer( in getStaticMutexPointer()
410 sqlite3_mutex *pMutex; in test_enter_static_mutex()
[all …]
H A Dmutex_w32.c37 struct sqlite3_mutex { struct
66 static int winMutexHeld(sqlite3_mutex *p){ in winMutexHeld() argument
70 static int winMutexNotheld2(sqlite3_mutex *p, DWORD tid){ in winMutexNotheld2()
74 static int winMutexNotheld(sqlite3_mutex *p){ in winMutexNotheld()
100 static sqlite3_mutex winMutex_staticMutexes[] = {
212 static sqlite3_mutex *winMutexAlloc(int iType){ in winMutexAlloc()
213 sqlite3_mutex *p; in winMutexAlloc()
260 static void winMutexFree(sqlite3_mutex *p){ in winMutexFree()
284 static void winMutexEnter(sqlite3_mutex *p){ in winMutexEnter()
307 static int winMutexTry(sqlite3_mutex *p){ in winMutexTry()
[all …]
H A Dmutex_unix.c41 struct sqlite3_mutex { struct
78 static int pthreadMutexHeld(sqlite3_mutex *p){ in pthreadMutexHeld()
81 static int pthreadMutexNotheld(sqlite3_mutex *p){ in pthreadMutexNotheld()
153 static sqlite3_mutex *pthreadMutexAlloc(int iType){ in pthreadMutexAlloc()
154 static sqlite3_mutex staticMutexes[] = { in pthreadMutexAlloc()
168 sqlite3_mutex *p; in pthreadMutexAlloc()
224 static void pthreadMutexFree(sqlite3_mutex *p){ in pthreadMutexFree()
251 static void pthreadMutexEnter(sqlite3_mutex *p){ in pthreadMutexEnter()
293 static int pthreadMutexTry(sqlite3_mutex *p){ in pthreadMutexTry()
350 static void pthreadMutexLeave(sqlite3_mutex *p){ in pthreadMutexLeave()
/dports/databases/sqlcipher/sqlcipher-3.4.2/src/
H A Dmutex_noop.c40 static sqlite3_mutex *noopMutexAlloc(int id){ in noopMutexAlloc()
42 return (sqlite3_mutex*)8; in noopMutexAlloc()
46 static int noopMutexTry(sqlite3_mutex *p){ in noopMutexTry()
89 static int debugMutexHeld(sqlite3_mutex *pX){ in debugMutexHeld()
93 static int debugMutexNotheld(sqlite3_mutex *pX){ in debugMutexNotheld()
109 static sqlite3_mutex *debugMutexAlloc(int id){ in debugMutexAlloc()
134 return (sqlite3_mutex*)pNew; in debugMutexAlloc()
140 static void debugMutexFree(sqlite3_mutex *pX){ in debugMutexFree()
163 static void debugMutexEnter(sqlite3_mutex *pX){ in debugMutexEnter()
168 static int debugMutexTry(sqlite3_mutex *pX){ in debugMutexTry()
[all …]
H A Dtest_mutex.c40 struct sqlite3_mutex { struct
41 sqlite3_mutex *pReal; argument
57 static int counterMutexHeld(sqlite3_mutex *p){ in counterMutexHeld()
91 sqlite3_mutex *pReal; in counterMutexAlloc()
92 sqlite3_mutex *pRet = 0; in counterMutexAlloc()
102 pRet = (sqlite3_mutex *)malloc(sizeof(sqlite3_mutex)); in counterMutexAlloc()
118 static void counterMutexFree(sqlite3_mutex *p){ in counterMutexFree()
140 static int counterMutexTry(sqlite3_mutex *p){ in counterMutexTry()
392 static sqlite3_mutex *getStaticMutexPointer( in getStaticMutexPointer()
410 sqlite3_mutex *pMutex; in test_enter_static_mutex()
[all …]
H A Dmutex_w32.c37 struct sqlite3_mutex { struct
66 static int winMutexHeld(sqlite3_mutex *p){ in winMutexHeld() argument
70 static int winMutexNotheld2(sqlite3_mutex *p, DWORD tid){ in winMutexNotheld2()
74 static int winMutexNotheld(sqlite3_mutex *p){ in winMutexNotheld()
100 static sqlite3_mutex winMutex_staticMutexes[] = {
212 static sqlite3_mutex *winMutexAlloc(int iType){ in winMutexAlloc()
213 sqlite3_mutex *p; in winMutexAlloc()
260 static void winMutexFree(sqlite3_mutex *p){ in winMutexFree()
284 static void winMutexEnter(sqlite3_mutex *p){ in winMutexEnter()
307 static int winMutexTry(sqlite3_mutex *p){ in winMutexTry()
[all …]
H A Dmutex.c89 sqlite3_mutex *sqlite3_mutex_alloc(int id){ in sqlite3_mutex_alloc()
98 sqlite3_mutex *sqlite3MutexAlloc(int id){ in sqlite3MutexAlloc()
110 void sqlite3_mutex_free(sqlite3_mutex *p){ in sqlite3_mutex_free()
121 void sqlite3_mutex_enter(sqlite3_mutex *p){ in sqlite3_mutex_enter()
132 int sqlite3_mutex_try(sqlite3_mutex *p){ in sqlite3_mutex_try()
147 void sqlite3_mutex_leave(sqlite3_mutex *p){ in sqlite3_mutex_leave()
159 int sqlite3_mutex_held(sqlite3_mutex *p){ in sqlite3_mutex_held()
163 int sqlite3_mutex_notheld(sqlite3_mutex *p){ in sqlite3_mutex_notheld()
H A Dmutex_unix.c41 struct sqlite3_mutex { struct
77 static int pthreadMutexHeld(sqlite3_mutex *p){ in pthreadMutexHeld()
80 static int pthreadMutexNotheld(sqlite3_mutex *p){ in pthreadMutexNotheld()
152 static sqlite3_mutex *pthreadMutexAlloc(int iType){ in pthreadMutexAlloc()
153 static sqlite3_mutex staticMutexes[] = { in pthreadMutexAlloc()
167 sqlite3_mutex *p; in pthreadMutexAlloc()
217 static void pthreadMutexFree(sqlite3_mutex *p){ in pthreadMutexFree()
244 static void pthreadMutexEnter(sqlite3_mutex *p){ in pthreadMutexEnter()
286 static int pthreadMutexTry(sqlite3_mutex *p){ in pthreadMutexTry()
343 static void pthreadMutexLeave(sqlite3_mutex *p){ in pthreadMutexLeave()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/sqlite/src/src/
H A Dmutex_noop.c40 static sqlite3_mutex *noopMutexAlloc(int id){ in noopMutexAlloc()
42 return (sqlite3_mutex*)8; in noopMutexAlloc()
46 static int noopMutexTry(sqlite3_mutex *p){ in noopMutexTry()
89 static int debugMutexHeld(sqlite3_mutex *pX){ in debugMutexHeld()
93 static int debugMutexNotheld(sqlite3_mutex *pX){ in debugMutexNotheld()
109 static sqlite3_mutex *debugMutexAlloc(int id){ in debugMutexAlloc()
134 return (sqlite3_mutex*)pNew; in debugMutexAlloc()
140 static void debugMutexFree(sqlite3_mutex *pX){ in debugMutexFree()
163 static void debugMutexEnter(sqlite3_mutex *pX){ in debugMutexEnter()
168 static int debugMutexTry(sqlite3_mutex *pX){ in debugMutexTry()
[all …]
H A Dmutex.c57 sqlite3_mutex *mutex;
69 static int checkMutexHeld(sqlite3_mutex *p){ in checkMutexHeld()
125 return (sqlite3_mutex*)p; in checkMutexAlloc()
170 static int checkMutexTry(sqlite3_mutex *p){ in checkMutexTry()
280 sqlite3_mutex *sqlite3_mutex_alloc(int id){ in sqlite3_mutex_alloc()
289 sqlite3_mutex *sqlite3MutexAlloc(int id){ in sqlite3MutexAlloc()
301 void sqlite3_mutex_free(sqlite3_mutex *p){ in sqlite3_mutex_free()
312 void sqlite3_mutex_enter(sqlite3_mutex *p){ in sqlite3_mutex_enter()
323 int sqlite3_mutex_try(sqlite3_mutex *p){ in sqlite3_mutex_try()
338 void sqlite3_mutex_leave(sqlite3_mutex *p){ in sqlite3_mutex_leave()
[all …]
H A Dtest_mutex.c40 struct sqlite3_mutex { struct
41 sqlite3_mutex *pReal; argument
57 static int counterMutexHeld(sqlite3_mutex *p){ in counterMutexHeld()
91 sqlite3_mutex *pReal; in counterMutexAlloc()
92 sqlite3_mutex *pRet = 0; in counterMutexAlloc()
102 pRet = (sqlite3_mutex *)malloc(sizeof(sqlite3_mutex)); in counterMutexAlloc()
118 static void counterMutexFree(sqlite3_mutex *p){ in counterMutexFree()
140 static int counterMutexTry(sqlite3_mutex *p){ in counterMutexTry()
392 static sqlite3_mutex *getStaticMutexPointer( in getStaticMutexPointer()
410 sqlite3_mutex *pMutex; in test_enter_static_mutex()
[all …]
H A Dmutex_w32.c37 struct sqlite3_mutex { struct
66 static int winMutexHeld(sqlite3_mutex *p){ in winMutexHeld() argument
70 static int winMutexNotheld2(sqlite3_mutex *p, DWORD tid){ in winMutexNotheld2()
74 static int winMutexNotheld(sqlite3_mutex *p){ in winMutexNotheld()
100 static sqlite3_mutex winMutex_staticMutexes[] = {
212 static sqlite3_mutex *winMutexAlloc(int iType){ in winMutexAlloc()
213 sqlite3_mutex *p; in winMutexAlloc()
260 static void winMutexFree(sqlite3_mutex *p){ in winMutexFree()
284 static void winMutexEnter(sqlite3_mutex *p){ in winMutexEnter()
307 static int winMutexTry(sqlite3_mutex *p){ in winMutexTry()
[all …]
H A Dmutex_unix.c41 struct sqlite3_mutex { struct
78 static int pthreadMutexHeld(sqlite3_mutex *p){ in pthreadMutexHeld()
81 static int pthreadMutexNotheld(sqlite3_mutex *p){ in pthreadMutexNotheld()
153 static sqlite3_mutex *pthreadMutexAlloc(int iType){ in pthreadMutexAlloc()
154 static sqlite3_mutex staticMutexes[] = { in pthreadMutexAlloc()
168 sqlite3_mutex *p; in pthreadMutexAlloc()
224 static void pthreadMutexFree(sqlite3_mutex *p){ in pthreadMutexFree()
251 static void pthreadMutexEnter(sqlite3_mutex *p){ in pthreadMutexEnter()
293 static int pthreadMutexTry(sqlite3_mutex *p){ in pthreadMutexTry()
350 static void pthreadMutexLeave(sqlite3_mutex *p){ in pthreadMutexLeave()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/sqlite/src/src/
H A Dmutex_noop.c40 static sqlite3_mutex *noopMutexAlloc(int id){ in noopMutexAlloc()
42 return (sqlite3_mutex*)8; in noopMutexAlloc()
46 static int noopMutexTry(sqlite3_mutex *p){ in noopMutexTry()
89 static int debugMutexHeld(sqlite3_mutex *pX){ in debugMutexHeld()
93 static int debugMutexNotheld(sqlite3_mutex *pX){ in debugMutexNotheld()
109 static sqlite3_mutex *debugMutexAlloc(int id){ in debugMutexAlloc()
134 return (sqlite3_mutex*)pNew; in debugMutexAlloc()
140 static void debugMutexFree(sqlite3_mutex *pX){ in debugMutexFree()
163 static void debugMutexEnter(sqlite3_mutex *pX){ in debugMutexEnter()
168 static int debugMutexTry(sqlite3_mutex *pX){ in debugMutexTry()
[all …]
H A Dmutex.c57 sqlite3_mutex *mutex;
69 static int checkMutexHeld(sqlite3_mutex *p){ in checkMutexHeld()
125 return (sqlite3_mutex*)p; in checkMutexAlloc()
170 static int checkMutexTry(sqlite3_mutex *p){ in checkMutexTry()
281 sqlite3_mutex *sqlite3_mutex_alloc(int id){ in sqlite3_mutex_alloc()
290 sqlite3_mutex *sqlite3MutexAlloc(int id){ in sqlite3MutexAlloc()
302 void sqlite3_mutex_free(sqlite3_mutex *p){ in sqlite3_mutex_free()
313 void sqlite3_mutex_enter(sqlite3_mutex *p){ in sqlite3_mutex_enter()
324 int sqlite3_mutex_try(sqlite3_mutex *p){ in sqlite3_mutex_try()
339 void sqlite3_mutex_leave(sqlite3_mutex *p){ in sqlite3_mutex_leave()
[all …]
H A Dtest_mutex.c40 struct sqlite3_mutex { struct
41 sqlite3_mutex *pReal; argument
57 static int counterMutexHeld(sqlite3_mutex *p){ in counterMutexHeld()
91 sqlite3_mutex *pReal; in counterMutexAlloc()
92 sqlite3_mutex *pRet = 0; in counterMutexAlloc()
102 pRet = (sqlite3_mutex *)malloc(sizeof(sqlite3_mutex)); in counterMutexAlloc()
118 static void counterMutexFree(sqlite3_mutex *p){ in counterMutexFree()
140 static int counterMutexTry(sqlite3_mutex *p){ in counterMutexTry()
392 static sqlite3_mutex *getStaticMutexPointer( in getStaticMutexPointer()
410 sqlite3_mutex *pMutex; in test_enter_static_mutex()
[all …]
H A Dmutex_w32.c37 struct sqlite3_mutex { struct
66 static int winMutexHeld(sqlite3_mutex *p){ in winMutexHeld() argument
70 static int winMutexNotheld2(sqlite3_mutex *p, DWORD tid){ in winMutexNotheld2()
74 static int winMutexNotheld(sqlite3_mutex *p){ in winMutexNotheld()
100 static sqlite3_mutex winMutex_staticMutexes[] = {
212 static sqlite3_mutex *winMutexAlloc(int iType){ in winMutexAlloc()
213 sqlite3_mutex *p; in winMutexAlloc()
260 static void winMutexFree(sqlite3_mutex *p){ in winMutexFree()
284 static void winMutexEnter(sqlite3_mutex *p){ in winMutexEnter()
307 static int winMutexTry(sqlite3_mutex *p){ in winMutexTry()
[all …]
/dports/databases/db5/db-5.3.28/lang/sql/sqlite/src/
H A Dmutex_noop.c40 static sqlite3_mutex *noopMutexAlloc(int id){ in noopMutexAlloc()
42 return (sqlite3_mutex*)8; in noopMutexAlloc()
46 static int noopMutexTry(sqlite3_mutex *p){ in noopMutexTry()
89 static int debugMutexHeld(sqlite3_mutex *pX){ in debugMutexHeld()
93 static int debugMutexNotheld(sqlite3_mutex *pX){ in debugMutexNotheld()
109 static sqlite3_mutex *debugMutexAlloc(int id){ in debugMutexAlloc()
130 return (sqlite3_mutex*)pNew; in debugMutexAlloc()
136 static void debugMutexFree(sqlite3_mutex *pX){ in debugMutexFree()
154 static void debugMutexEnter(sqlite3_mutex *pX){ in debugMutexEnter()
159 static int debugMutexTry(sqlite3_mutex *pX){ in debugMutexTry()
[all …]
H A Dmutex.c82 sqlite3_mutex *sqlite3_mutex_alloc(int id){ in sqlite3_mutex_alloc()
89 sqlite3_mutex *sqlite3MutexAlloc(int id){ in sqlite3MutexAlloc()
100 void sqlite3_mutex_free(sqlite3_mutex *p){ in sqlite3_mutex_free()
110 void sqlite3_mutex_enter(sqlite3_mutex *p){ in sqlite3_mutex_enter()
120 int sqlite3_mutex_try(sqlite3_mutex *p){ in sqlite3_mutex_try()
134 void sqlite3_mutex_leave(sqlite3_mutex *p){ in sqlite3_mutex_leave()
145 int sqlite3_mutex_held(sqlite3_mutex *p){ in sqlite3_mutex_held()
148 int sqlite3_mutex_notheld(sqlite3_mutex *p){ in sqlite3_mutex_notheld()
H A Dmutex_w32.c25 struct sqlite3_mutex { struct
80 static int winMutexHeld(sqlite3_mutex *p){ in winMutexHeld()
83 static int winMutexNotheld2(sqlite3_mutex *p, DWORD tid){ in winMutexNotheld2()
86 static int winMutexNotheld(sqlite3_mutex *p){ in winMutexNotheld()
96 static sqlite3_mutex winMutex_staticMutexes[6] = {
186 static sqlite3_mutex *winMutexAlloc(int iType){ in winMutexAlloc()
187 sqlite3_mutex *p; in winMutexAlloc()
221 static void winMutexFree(sqlite3_mutex *p){ in winMutexFree()
240 static void winMutexEnter(sqlite3_mutex *p){ in winMutexEnter()
255 static int winMutexTry(sqlite3_mutex *p){ in winMutexTry()
[all …]
H A Dmutex_os2.c31 struct sqlite3_mutex { struct
93 static sqlite3_mutex *os2MutexAlloc(int iType){ in os2MutexAlloc()
94 sqlite3_mutex *p = NULL; in os2MutexAlloc()
110 static sqlite3_mutex staticMutexes[6] = { in os2MutexAlloc()
161 static void os2MutexFree(sqlite3_mutex *p){ in os2MutexFree()
179 static int os2MutexHeld(sqlite3_mutex *p){ in os2MutexHeld()
190 static int os2MutexNotheld(sqlite3_mutex *p){ in os2MutexNotheld()
201 static void os2MutexTrace(sqlite3_mutex *p, char *pAction){ in os2MutexTrace()
221 static void os2MutexEnter(sqlite3_mutex *p){ in os2MutexEnter()
228 static int os2MutexTry(sqlite3_mutex *p){ in os2MutexTry()
[all …]
H A Dtest_mutex.c26 struct sqlite3_mutex { struct
27 sqlite3_mutex *pReal; argument
43 static int counterMutexHeld(sqlite3_mutex *p){ in counterMutexHeld()
48 static int counterMutexNotheld(sqlite3_mutex *p){ in counterMutexNotheld()
77 sqlite3_mutex *pReal; in counterMutexAlloc()
78 sqlite3_mutex *pRet = 0; in counterMutexAlloc()
87 pRet = (sqlite3_mutex *)malloc(sizeof(sqlite3_mutex)); in counterMutexAlloc()
100 static void counterMutexFree(sqlite3_mutex *p){ in counterMutexFree()
111 static void counterMutexEnter(sqlite3_mutex *p){ in counterMutexEnter()
120 static int counterMutexTry(sqlite3_mutex *p){ in counterMutexTry()
[all …]
H A Dmutex_unix.c41 struct sqlite3_mutex { struct
73 static int pthreadMutexHeld(sqlite3_mutex *p){ in pthreadMutexHeld()
76 static int pthreadMutexNotheld(sqlite3_mutex *p){ in pthreadMutexNotheld()
129 static sqlite3_mutex *pthreadMutexAlloc(int iType){ in pthreadMutexAlloc()
130 static sqlite3_mutex staticMutexes[] = { in pthreadMutexAlloc()
138 sqlite3_mutex *p; in pthreadMutexAlloc()
190 static void pthreadMutexFree(sqlite3_mutex *p){ in pthreadMutexFree()
208 static void pthreadMutexEnter(sqlite3_mutex *p){ in pthreadMutexEnter()
250 static int pthreadMutexTry(sqlite3_mutex *p){ in pthreadMutexTry()
307 static void pthreadMutexLeave(sqlite3_mutex *p){ in pthreadMutexLeave()

12345678910>>...29