Lines Matching refs:maxLen
43903 ** which must point to valid, writable memory large enough for a maxLen length
43906 static int proxyGetLockPath(const char *dbPath, char *lPath, size_t maxLen){
43912 len = strlcpy(lPath, LOCKPROXYDIR, maxLen);
43916 if( !confstr(_CS_DARWIN_USER_TEMP_DIR, lPath, maxLen) ){
43924 len = strlcat(lPath, "sqliteplocks", maxLen);
43927 len = strlcpy(lPath, "/tmp/", maxLen);
43932 len = strlcat(lPath, "/", maxLen);
43937 for( i=0; i<dbLen && (i+len+7)<(int)maxLen; i++){
43942 strlcat(lPath, ":auto:", maxLen);