Lines Matching defs:lPath
43902 ** The proxy lock file path for the database at dbPath is written into lPath,
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) ){
43918 lPath, errno, osGetpid(0)));
43924 len = strlcat(lPath, "sqliteplocks", maxLen);
43927 len = strlcpy(lPath, "/tmp/", maxLen);
43931 if( lPath[len-1]!='/' ){
43932 len = strlcat(lPath, "/", maxLen);
43939 lPath[i+len] = (c=='/')?'_':c;
43941 lPath[i+len]='\0';
43942 strlcat(lPath, ":auto:", maxLen);
43943 OSTRACE(("GETLOCKPATH proxy lock path=%s pid=%d\n", lPath, osGetpid(0)));