Searched refs:sqlite3_mutex_methods (Results 1 – 2 of 2) sorted by relevance
5965 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef5966 struct sqlite3_mutex_methods { struct
5993 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef5994 struct sqlite3_mutex_methods { struct11971 sqlite3_mutex_methods mutex; /* Low-level mutex interface */12191 SQLITE_PRIVATE sqlite3_mutex_methods const *sqlite3DefaultMutex(void);12192 SQLITE_PRIVATE sqlite3_mutex_methods const *sqlite3NoopMutex(void);18128 sqlite3_mutex_methods const *pFrom; in sqlite3MutexInit()18129 sqlite3_mutex_methods *pTo = &sqlite3GlobalConfig.mutex; in sqlite3MutexInit()18136 memcpy(pTo, pFrom, offsetof(sqlite3_mutex_methods, xMutexAlloc)); in sqlite3MutexInit()18138 sizeof(*pTo) - offsetof(sqlite3_mutex_methods, xMutexFree)); in sqlite3MutexInit()18295 SQLITE_PRIVATE sqlite3_mutex_methods const *sqlite3NoopMutex(void){ in sqlite3NoopMutex()[all …]