Lines Matching defs:lock

400     "1. Run PROGRAM passing ARGS while holding a write-lock on REPOS_PATH.\n"
449 {"lock", subcommand_lock, {0}, N_
450 ("usage: svnadmin lock REPOS_PATH PATH USERNAME COMMENT-FILE [TOKEN]\n\n"
452 "If provided, use TOKEN as lock token. Use --bypass-hooks to avoid\n"
453 "triggering the pre-lock and post-lock hook scripts.\n"),
483 "Unconditionally remove lock from each LOCKED_PATH.\n"),
526 "associated with the lock matches TOKEN. Use --bypass-hooks to avoid\n"
1076 _("Repository lock acquired.\n"
1083 _("Repository lock acquired.\n"
1474 * exclusive lock so that the user interrupt before we actually
1493 _("Waiting on repository lock; perhaps"
2102 svn_lock_t *lock;
2131 SVN_ERR(svn_fs_lock(&lock, fs, lock_path_utf8,
2139 SVN_ERR(svn_repos_fs_lock(&lock, repos, lock_path_utf8,
2183 svn_lock_t *lock = apr_hash_this_val(hi);
2190 cr_date = svn_time_to_human_cstring(lock->creation_date, iterpool);
2192 if (lock->expiration_date)
2193 exp_date = svn_time_to_human_cstring(lock->expiration_date, iterpool);
2195 if (lock->comment)
2196 comment_lines = svn_cstring_count_newlines(lock->comment) + 1;
2199 SVN_ERR(svn_cmdline_printf(iterpool, _("UUID Token: %s\n"), lock->token));
2200 SVN_ERR(svn_cmdline_printf(iterpool, _("Owner: %s\n"), lock->owner));
2208 lock->comment ? lock->comment : ""));
2259 svn_lock_t *lock;
2264 err = svn_fs_get_lock(&lock, fs, lock_path_utf8, subpool);
2267 if (! lock)
2275 /* Now forcibly destroy the lock. */
2277 lock->token, 1 /* force */, subpool);
2282 _("Removed lock on '%s'.\n"), lock->path));
2287 /* Print the error, but move on to the next lock. */
2372 _("Waiting on repository lock; perhaps"