Home
last modified time | relevance | path

Searched refs:git_libgit2_opts (Results 1 – 25 of 128) sorted by relevance

123456

/dports/devel/libgit2/libgit2-1.3.0/tests/core/
H A Dopts.c6 cl_git_pass(git_libgit2_opts(GIT_OPT_SET_EXTENSIONS, NULL, 0)); in test_core_opts__cleanup()
14 git_libgit2_opts(GIT_OPT_GET_MWINDOW_SIZE, &old_val); in test_core_opts__readwrite()
15 git_libgit2_opts(GIT_OPT_SET_MWINDOW_SIZE, (size_t)1234); in test_core_opts__readwrite()
16 git_libgit2_opts(GIT_OPT_GET_MWINDOW_SIZE, &new_val); in test_core_opts__readwrite()
20 git_libgit2_opts(GIT_OPT_SET_MWINDOW_SIZE, old_val); in test_core_opts__readwrite()
21 git_libgit2_opts(GIT_OPT_GET_MWINDOW_SIZE, &new_val); in test_core_opts__readwrite()
28 cl_git_fail(git_libgit2_opts(-1, "foobar")); in test_core_opts__invalid_option()
35 cl_git_pass(git_libgit2_opts(GIT_OPT_GET_EXTENSIONS, &out)); in test_core_opts__extensions_query()
48 cl_git_pass(git_libgit2_opts(GIT_OPT_SET_EXTENSIONS, in, ARRAY_SIZE(in))); in test_core_opts__extensions_add()
49 cl_git_pass(git_libgit2_opts(GIT_OPT_GET_EXTENSIONS, &out)); in test_core_opts__extensions_add()
[all …]
H A Denv.c225 cl_git_pass(git_libgit2_opts( in check_global_searchpath()
229 cl_git_pass(git_libgit2_opts( in check_global_searchpath()
243 cl_git_pass(git_libgit2_opts( in check_global_searchpath()
307 cl_git_pass(git_libgit2_opts(GIT_OPT_SET_SEARCH_PATH, GIT_CONFIG_LEVEL_GLOBAL, "/tmp/a")); in test_core_env__substitution()
308 cl_git_pass(git_libgit2_opts(GIT_OPT_GET_SEARCH_PATH, GIT_CONFIG_LEVEL_GLOBAL, &buf)); in test_core_env__substitution()
313 cl_git_pass(git_libgit2_opts(GIT_OPT_SET_SEARCH_PATH, GIT_CONFIG_LEVEL_GLOBAL, buf.ptr)); in test_core_env__substitution()
314 cl_git_pass(git_libgit2_opts(GIT_OPT_GET_SEARCH_PATH, GIT_CONFIG_LEVEL_GLOBAL, &buf)); in test_core_env__substitution()
H A Duseragent.c10 cl_git_pass(git_libgit2_opts(GIT_OPT_SET_USER_AGENT, custom_name)); in test_core_useragent__get()
13 cl_git_pass(git_libgit2_opts(GIT_OPT_GET_USER_AGENT, &buf)); in test_core_useragent__get()
/dports/devel/libgit2/libgit2-1.3.0/tests/repo/
H A Dconfig.c39 cl_git_pass(git_libgit2_opts( in test_repo_config__can_open_global_when_there_is_no_file()
41 cl_git_pass(git_libgit2_opts( in test_repo_config__can_open_global_when_there_is_no_file()
43 cl_git_pass(git_libgit2_opts( in test_repo_config__can_open_global_when_there_is_no_file()
66 cl_git_pass(git_libgit2_opts( in test_repo_config__can_open_missing_global_with_separators()
68 cl_git_pass(git_libgit2_opts( in test_repo_config__can_open_missing_global_with_separators()
70 cl_git_pass(git_libgit2_opts( in test_repo_config__can_open_missing_global_with_separators()
94 cl_git_pass(git_libgit2_opts( in test_repo_config__read_with_no_configs_at_all()
96 cl_git_pass(git_libgit2_opts( in test_repo_config__read_with_no_configs_at_all()
98 cl_git_pass(git_libgit2_opts( in test_repo_config__read_with_no_configs_at_all()
120 cl_git_pass(git_libgit2_opts( in test_repo_config__read_with_no_configs_at_all()
[all …]
H A Dextensions.c22 cl_git_pass(git_libgit2_opts(GIT_OPT_SET_EXTENSIONS, NULL, 0)); in test_repo_extensions__cleanup()
44 cl_git_pass(git_libgit2_opts(GIT_OPT_SET_EXTENSIONS, in, ARRAY_SIZE(in))); in test_repo_extensions__negate_builtin()
66 cl_git_pass(git_libgit2_opts(GIT_OPT_SET_EXTENSIONS, in, ARRAY_SIZE(in))); in test_repo_extensions__adds_extension()
/dports/devel/py-pygit2/pygit2-1.7.1/src/
H A Doptions.c44 err = git_libgit2_opts(GIT_OPT_GET_SEARCH_PATH, level, &buf); in get_search_path()
80 error = git_libgit2_opts(GIT_OPT_GET_MWINDOW_SIZE, &size); in option()
101 error = git_libgit2_opts(GIT_OPT_SET_MWINDOW_SIZE, size); in option()
112 error = git_libgit2_opts(GIT_OPT_GET_MWINDOW_MAPPED_LIMIT, &limit); in option()
137 error = git_libgit2_opts(GIT_OPT_SET_MWINDOW_MAPPED_LIMIT, limit); in option()
176 int err = git_libgit2_opts(GIT_OPT_SET_SEARCH_PATH, PyLong_AsLong(py_level), path); in option()
203 error = git_libgit2_opts( in option()
226 error = git_libgit2_opts(GIT_OPT_SET_CACHE_MAX_SIZE, max_size); in option()
239 error = git_libgit2_opts(GIT_OPT_GET_CACHED_MEMORY, &current, &allowed); in option()
276 err = git_libgit2_opts(GIT_OPT_SET_SSL_CERT_LOCATIONS, file_path, dir_path); in option()
[all …]
/dports/devel/cargo-c/cargo-c-0.9.6+cargo-0.58/cargo-crates/git2-0.13.25/src/
H A Dopts.rs26 try_call!(raw::git_libgit2_opts( in set_search_path()
45 try_call!(raw::git_libgit2_opts( in reset_search_path()
64 try_call!(raw::git_libgit2_opts( in get_search_path()
79 raw::git_libgit2_opts( in enable_caching()
96 raw::git_libgit2_opts( in strict_object_creation()
112 raw::git_libgit2_opts( in strict_hash_verification()
/dports/devel/libgit2/libgit2-1.3.0/tests/pack/
H A Dfilelimit.c17 cl_git_pass(git_libgit2_opts(GIT_OPT_GET_MWINDOW_FILE_LIMIT, &original_mwindow_file_limit)); in test_pack_filelimit__initialize_tiny()
18 cl_git_pass(git_libgit2_opts(GIT_OPT_SET_MWINDOW_FILE_LIMIT, expected_open_mwindow_files)); in test_pack_filelimit__initialize_tiny()
24 cl_git_pass(git_libgit2_opts(GIT_OPT_GET_MWINDOW_FILE_LIMIT, &original_mwindow_file_limit)); in test_pack_filelimit__initialize_medium()
25 cl_git_pass(git_libgit2_opts(GIT_OPT_SET_MWINDOW_FILE_LIMIT, expected_open_mwindow_files)); in test_pack_filelimit__initialize_medium()
31 cl_git_pass(git_libgit2_opts(GIT_OPT_GET_MWINDOW_FILE_LIMIT, &original_mwindow_file_limit)); in test_pack_filelimit__initialize_unlimited()
32 cl_git_pass(git_libgit2_opts(GIT_OPT_SET_MWINDOW_FILE_LIMIT, 0)); in test_pack_filelimit__initialize_unlimited()
38 cl_git_pass(git_libgit2_opts(GIT_OPT_SET_MWINDOW_FILE_LIMIT, original_mwindow_file_limit)); in test_pack_filelimit__cleanup()
H A Dthreadsafety.c14 cl_git_pass(git_libgit2_opts(GIT_OPT_GET_MWINDOW_FILE_LIMIT, &original_mwindow_file_limit)); in test_pack_threadsafety__initialize()
15 cl_git_pass(git_libgit2_opts(GIT_OPT_SET_MWINDOW_FILE_LIMIT, open_mwindow_files)); in test_pack_threadsafety__initialize()
20 cl_git_pass(git_libgit2_opts(GIT_OPT_SET_MWINDOW_FILE_LIMIT, original_mwindow_file_limit)); in test_pack_threadsafety__cleanup()
/dports/misc/broot/broot-1.7.0/cargo-crates/git2-0.13.20/src/
H A Dopts.rs26 try_call!(raw::git_libgit2_opts( in set_search_path()
45 try_call!(raw::git_libgit2_opts( in reset_search_path()
64 try_call!(raw::git_libgit2_opts( in get_search_path()
79 raw::git_libgit2_opts( in strict_object_creation()
95 raw::git_libgit2_opts( in strict_hash_verification()
/dports/devel/sentry-cli/sentry-cli-1.71.0/cargo-crates/git2-0.13.22/src/
H A Dopts.rs26 try_call!(raw::git_libgit2_opts( in set_search_path()
45 try_call!(raw::git_libgit2_opts( in reset_search_path()
64 try_call!(raw::git_libgit2_opts( in get_search_path()
79 raw::git_libgit2_opts( in strict_object_creation()
95 raw::git_libgit2_opts( in strict_hash_verification()
/dports/devel/git-delta/delta-0.9.2/cargo-crates/git2-0.13.23/src/
H A Dopts.rs26 try_call!(raw::git_libgit2_opts( in set_search_path()
45 try_call!(raw::git_libgit2_opts( in reset_search_path()
64 try_call!(raw::git_libgit2_opts( in get_search_path()
79 raw::git_libgit2_opts( in strict_object_creation()
95 raw::git_libgit2_opts( in strict_hash_verification()
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/git2-0.13.22/src/
H A Dopts.rs26 try_call!(raw::git_libgit2_opts( in set_search_path()
45 try_call!(raw::git_libgit2_opts( in reset_search_path()
64 try_call!(raw::git_libgit2_opts( in get_search_path()
79 raw::git_libgit2_opts( in strict_object_creation()
95 raw::git_libgit2_opts( in strict_hash_verification()
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/git2-0.13.18/src/
H A Dopts.rs26 try_call!(raw::git_libgit2_opts( in set_search_path()
45 try_call!(raw::git_libgit2_opts( in reset_search_path()
64 try_call!(raw::git_libgit2_opts( in get_search_path()
79 raw::git_libgit2_opts( in strict_object_creation()
95 raw::git_libgit2_opts( in strict_hash_verification()
/dports/devel/cargo-generate/cargo-generate-0.9.0/cargo-crates/git2-0.13.21/src/
H A Dopts.rs26 try_call!(raw::git_libgit2_opts( in set_search_path()
45 try_call!(raw::git_libgit2_opts( in reset_search_path()
64 try_call!(raw::git_libgit2_opts( in get_search_path()
79 raw::git_libgit2_opts( in strict_object_creation()
95 raw::git_libgit2_opts( in strict_hash_verification()
/dports/devel/pijul/pijul-1.0.0.a55/cargo-crates/git2-0.13.23/src/
H A Dopts.rs26 try_call!(raw::git_libgit2_opts( in set_search_path()
45 try_call!(raw::git_libgit2_opts( in reset_search_path()
64 try_call!(raw::git_libgit2_opts( in get_search_path()
79 raw::git_libgit2_opts( in strict_object_creation()
95 raw::git_libgit2_opts( in strict_hash_verification()
/dports/textproc/mdbook-linkcheck/mdbook-linkcheck-0.7.6/cargo-crates/git2-0.13.23/src/
H A Dopts.rs26 try_call!(raw::git_libgit2_opts( in set_search_path()
45 try_call!(raw::git_libgit2_opts( in reset_search_path()
64 try_call!(raw::git_libgit2_opts( in get_search_path()
79 raw::git_libgit2_opts( in strict_object_creation()
95 raw::git_libgit2_opts( in strict_hash_verification()
/dports/sysutils/onefetch/onefetch-2.10.2/cargo-crates/git2-0.13.20/src/
H A Dopts.rs26 try_call!(raw::git_libgit2_opts( in set_search_path()
45 try_call!(raw::git_libgit2_opts( in reset_search_path()
64 try_call!(raw::git_libgit2_opts( in get_search_path()
79 raw::git_libgit2_opts( in strict_object_creation()
95 raw::git_libgit2_opts( in strict_hash_verification()
/dports/lang/rust/rustc-1.58.1-src/vendor/git2/src/
H A Dopts.rs26 try_call!(raw::git_libgit2_opts( in set_search_path()
45 try_call!(raw::git_libgit2_opts( in reset_search_path()
64 try_call!(raw::git_libgit2_opts( in get_search_path()
79 raw::git_libgit2_opts( in strict_object_creation()
95 raw::git_libgit2_opts( in strict_hash_verification()
/dports/textproc/bat/bat-0.18.3/cargo-crates/git2-0.13.20/src/
H A Dopts.rs26 try_call!(raw::git_libgit2_opts( in set_search_path()
45 try_call!(raw::git_libgit2_opts( in reset_search_path()
64 try_call!(raw::git_libgit2_opts( in get_search_path()
79 raw::git_libgit2_opts( in strict_object_creation()
95 raw::git_libgit2_opts( in strict_hash_verification()
/dports/sysutils/exa/exa-0.10.1/cargo-crates/git2-0.13.17/src/
H A Dopts.rs26 call::c_try(raw::git_libgit2_opts( in set_search_path()
45 call::c_try(raw::git_libgit2_opts( in reset_search_path()
64 call::c_try(raw::git_libgit2_opts( in get_search_path()
79 raw::git_libgit2_opts( in strict_object_creation()
95 raw::git_libgit2_opts( in strict_hash_verification()
/dports/devel/libgit2/libgit2-1.3.0/tests/odb/
H A Dsorting.c48 cl_git_pass(git_libgit2_opts(GIT_OPT_SET_ODB_LOOSE_PRIORITY, in test_odb_sorting__cleanup()
50 cl_git_pass(git_libgit2_opts(GIT_OPT_SET_ODB_PACKED_PRIORITY, in test_odb_sorting__cleanup()
82 cl_git_pass(git_libgit2_opts(GIT_OPT_SET_ODB_LOOSE_PRIORITY, 5)); in test_odb_sorting__override_default_backend_priority()
83 cl_git_pass(git_libgit2_opts(GIT_OPT_SET_ODB_PACKED_PRIORITY, 3)); in test_odb_sorting__override_default_backend_priority()
/dports/devel/libgit2/libgit2-1.3.0/tests/odb/backend/
H A Dsimple.c40 cl_git_pass(git_libgit2_opts(GIT_OPT_ENABLE_STRICT_HASH_VERIFICATION, 1)); in test_odb_backend_simple__cleanup()
94 cl_git_pass(git_libgit2_opts(GIT_OPT_ENABLE_STRICT_HASH_VERIFICATION, 0)); in test_odb_backend_simple__read_with_hash_mismatch_succeeds_without_verification()
154 cl_git_pass(git_libgit2_opts(GIT_OPT_ENABLE_STRICT_HASH_VERIFICATION, 0)); in test_odb_backend_simple__read_with_highly_ambiguous_prefix()
228 cl_git_pass(git_libgit2_opts(GIT_OPT_ENABLE_STRICT_HASH_VERIFICATION, 0)); in test_odb_backend_simple__exists_with_highly_ambiguous_prefix()
245 cl_git_pass(git_libgit2_opts(GIT_OPT_ENABLE_STRICT_HASH_VERIFICATION, 0)); in test_odb_backend_simple__null_oid_is_ignored()
/dports/devel/libgit2/libgit2-1.3.0/tests/refs/
H A Dcreate.c23 cl_git_pass(git_libgit2_opts(GIT_OPT_ENABLE_STRICT_OBJECT_CREATION, 1)); in test_refs_create__cleanup()
24 cl_git_pass(git_libgit2_opts(GIT_OPT_ENABLE_STRICT_SYMBOLIC_REF_CREATION, 1)); in test_refs_create__cleanup()
25 cl_git_pass(git_libgit2_opts(GIT_OPT_ENABLE_FSYNC_GITDIR, 0)); in test_refs_create__cleanup()
87 git_libgit2_opts(GIT_OPT_ENABLE_STRICT_SYMBOLIC_REF_CREATION, 0); in test_refs_create__symbolic_with_arbitrary_content()
185 cl_git_pass(git_libgit2_opts(GIT_OPT_ENABLE_STRICT_OBJECT_CREATION, 0)); in test_refs_create__oid_unknown_succeeds_without_strict()
345 cl_git_pass(git_libgit2_opts(GIT_OPT_ENABLE_FSYNC_GITDIR, 1)); in test_refs_create__fsyncs_when_global_opt_set()
/dports/devel/libgit2/libgit2-1.3.0/tests/config/
H A Dglobal.c11 cl_git_pass(git_libgit2_opts( in test_config_global__initialize()
16 cl_git_pass(git_libgit2_opts( in test_config_global__initialize()
21 cl_git_pass(git_libgit2_opts( in test_config_global__initialize()
141 cl_git_pass(git_libgit2_opts(GIT_OPT_GET_SEARCH_PATH, in test_config_global__open_programdata()

123456