Home
last modified time | relevance | path

Searched refs:checkout_options (Results 1 – 25 of 176) sorted by relevance

12345678

/dports/devel/libgit2-glib/libgit2-glib-0.99.0.1/libgit2-glib/
H A Dggit-submodule-update-options.c36 GgitCheckoutOptions *checkout_options; member
57 g_clear_object (&priv->checkout_options); in ggit_submodule_update_options_finalize()
101 g_value_set_object (value, priv->checkout_options); in ggit_submodule_update_options_get_property()
175 if (priv->checkout_options) in _ggit_submodule_update_options_get_submodule_update_options()
207 return priv->checkout_options; in ggit_submodule_update_options_get_checkout_options()
225 g_return_if_fail (checkout_options == NULL || GGIT_IS_CHECKOUT_OPTIONS (checkout_options)); in ggit_submodule_update_options_set_checkout_options()
229 if (priv->checkout_options) in ggit_submodule_update_options_set_checkout_options()
231 g_object_unref (priv->checkout_options); in ggit_submodule_update_options_set_checkout_options()
232 priv->checkout_options = NULL; in ggit_submodule_update_options_set_checkout_options()
237 if (checkout_options) in ggit_submodule_update_options_set_checkout_options()
[all …]
H A Dggit-rebase-options.c27 GgitCheckoutOptions *checkout_options; member
70 rebase_options->checkout_options); in ggit_rebase_options_copy()
87 g_clear_object (&rebase_options->checkout_options); in ggit_rebase_options_free()
198 return rebase_options->checkout_options; in ggit_rebase_options_get_checkout_options()
215 GgitCheckoutOptions *checkout_options) in ggit_rebase_options_set_checkout_options() argument
219 g_clear_object (&rebase_options->checkout_options); in ggit_rebase_options_set_checkout_options()
221 if (checkout_options != NULL) in ggit_rebase_options_set_checkout_options()
223 rebase_options->checkout_options = g_object_ref (checkout_options); in ggit_rebase_options_set_checkout_options()
224 …rebase_options->rebase_options.checkout_options = *_ggit_checkout_options_get_checkout_options (ch… in ggit_rebase_options_set_checkout_options()
229 rebase_options->rebase_options.checkout_options = i; in ggit_rebase_options_set_checkout_options()
H A Dggit-revert-options.c30 GgitCheckoutOptions *checkout_options; member
65 revert_options->checkout_options); in ggit_revert_options_copy()
84 g_clear_object (&revert_options->checkout_options); in ggit_revert_options_free()
108 GgitCheckoutOptions *checkout_options) in ggit_revert_options_new() argument
112 …g_return_val_if_fail (checkout_options == NULL || GGIT_IS_CHECKOUT_OPTIONS (checkout_options), NUL… in ggit_revert_options_new()
126 if (checkout_options) in ggit_revert_options_new()
128 ret->checkout_options = g_object_ref (checkout_options); in ggit_revert_options_new()
130 *_ggit_checkout_options_get_checkout_options (ret->checkout_options); in ggit_revert_options_new()
H A Dggit-cherry-pick-options.c36 GgitCheckoutOptions *checkout_options; member
59 g_clear_object (&priv->checkout_options); in G_DEFINE_TYPE_WITH_PRIVATE()
112 g_value_set_object (value, priv->checkout_options); in ggit_cherry_pick_options_get_property()
197 if (priv->checkout_options) in _ggit_cherry_pick_options_get_cherry_pick_options()
279 return priv->checkout_options; in ggit_cherry_pick_options_get_checkout_options()
297 g_return_if_fail (checkout_options == NULL || GGIT_IS_CHECKOUT_OPTIONS (checkout_options)); in ggit_cherry_pick_options_set_checkout_options()
301 if (priv->checkout_options) in ggit_cherry_pick_options_set_checkout_options()
303 g_object_unref (priv->checkout_options); in ggit_cherry_pick_options_set_checkout_options()
304 priv->checkout_options = NULL; in ggit_cherry_pick_options_set_checkout_options()
309 if (checkout_options) in ggit_cherry_pick_options_set_checkout_options()
[all …]
/dports/devel/interactive_rebase_tool/git-interactive-rebase-tool-1.2.1/cargo-crates/git2-0.7.5/src/
H A Dstash.rs22 checkout_options: Option<CheckoutBuilder<'cb>>, field
37 checkout_options: None, in new()
53 pub fn checkout_options(&mut self, opts: CheckoutBuilder<'cb>) -> &mut StashApplyOptions<'cb> { in checkout_options() method
54 self.checkout_options = Some(opts); in checkout_options()
74 if let Some(opts) = self.checkout_options.as_mut() { in raw()
75 opts.configure(&mut self.raw_opts.checkout_options); in raw()
/dports/devel/gbump/gbump-1.0.1/cargo-crates/git2-0.10.1/src/
H A Dstash.rs22 checkout_options: Option<CheckoutBuilder<'cb>>, field
37 checkout_options: None, in new()
54 pub fn checkout_options(&mut self, opts: CheckoutBuilder<'cb>) -> &mut StashApplyOptions<'cb> { in checkout_options() method
55 self.checkout_options = Some(opts); in checkout_options()
76 if let Some(opts) = self.checkout_options.as_mut() { in raw()
77 opts.configure(&mut self.raw_opts.checkout_options); in raw()
/dports/devel/libgit2/libgit2-1.3.0/tests/submodule/
H A Dupdate.c212 git_checkout_options checkout_options = GIT_CHECKOUT_OPTIONS_INIT; in test_submodule_update__update_already_checked_out_submodule() local
241 checkout_options.checkout_strategy = GIT_CHECKOUT_SAFE; in test_submodule_update__update_already_checked_out_submodule()
245 cl_git_pass(git_checkout_tree(g_repo, branch_commit, &checkout_options)); in test_submodule_update__update_already_checked_out_submodule()
289 git_checkout_options checkout_options = GIT_CHECKOUT_OPTIONS_INIT; in test_submodule_update__update_blocks_on_dirty_wd() local
319 checkout_options.checkout_strategy = GIT_CHECKOUT_SAFE; in test_submodule_update__update_blocks_on_dirty_wd()
323 cl_git_pass(git_checkout_tree(g_repo, branch_commit, &checkout_options)); in test_submodule_update__update_blocks_on_dirty_wd()
371 git_checkout_options checkout_options = GIT_CHECKOUT_OPTIONS_INIT; in test_submodule_update__can_force_update() local
396 checkout_options.checkout_strategy = GIT_CHECKOUT_SAFE; in test_submodule_update__can_force_update()
400 cl_git_pass(git_checkout_tree(g_repo, branch_commit, &checkout_options)); in test_submodule_update__can_force_update()
/dports/devel/cargo-c/cargo-c-0.9.6+cargo-0.58/cargo-crates/git2-0.13.25/src/
H A Dstash.rs22 checkout_options: Option<CheckoutBuilder<'cb>>, field
37 checkout_options: None, in new()
54 pub fn checkout_options(&mut self, opts: CheckoutBuilder<'cb>) -> &mut StashApplyOptions<'cb> { in checkout_options() method
55 self.checkout_options = Some(opts); in checkout_options()
76 if let Some(opts) = self.checkout_options.as_mut() { in raw()
77 opts.configure(&mut self.raw_opts.checkout_options); in raw()
/dports/devel/sentry-cli/sentry-cli-1.71.0/cargo-crates/git2-0.13.22/src/
H A Dstash.rs22 checkout_options: Option<CheckoutBuilder<'cb>>, field
37 checkout_options: None, in new()
54 pub fn checkout_options(&mut self, opts: CheckoutBuilder<'cb>) -> &mut StashApplyOptions<'cb> { in checkout_options() method
55 self.checkout_options = Some(opts); in checkout_options()
76 if let Some(opts) = self.checkout_options.as_mut() { in raw()
77 opts.configure(&mut self.raw_opts.checkout_options); in raw()
/dports/devel/git-absorb/git-absorb-0.6.6/cargo-crates/git2-0.13.11/src/
H A Dstash.rs22 checkout_options: Option<CheckoutBuilder<'cb>>, field
37 checkout_options: None, in new()
54 pub fn checkout_options(&mut self, opts: CheckoutBuilder<'cb>) -> &mut StashApplyOptions<'cb> { in checkout_options() method
55 self.checkout_options = Some(opts); in checkout_options()
76 if let Some(opts) = self.checkout_options.as_mut() { in raw()
77 opts.configure(&mut self.raw_opts.checkout_options); in raw()
/dports/sysutils/vector/vector-0.10.0/cargo-crates/git2-0.13.6/src/
H A Dstash.rs22 checkout_options: Option<CheckoutBuilder<'cb>>, field
37 checkout_options: None, in new()
54 pub fn checkout_options(&mut self, opts: CheckoutBuilder<'cb>) -> &mut StashApplyOptions<'cb> { in checkout_options() method
55 self.checkout_options = Some(opts); in checkout_options()
76 if let Some(opts) = self.checkout_options.as_mut() { in raw()
77 opts.configure(&mut self.raw_opts.checkout_options); in raw()
/dports/devel/git-delta/delta-0.9.2/cargo-crates/git2-0.13.23/src/
H A Dstash.rs22 checkout_options: Option<CheckoutBuilder<'cb>>, field
37 checkout_options: None, in new()
54 pub fn checkout_options(&mut self, opts: CheckoutBuilder<'cb>) -> &mut StashApplyOptions<'cb> { in checkout_options() method
55 self.checkout_options = Some(opts); in checkout_options()
76 if let Some(opts) = self.checkout_options.as_mut() { in raw()
77 opts.configure(&mut self.raw_opts.checkout_options); in raw()
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/git2-0.13.22/src/
H A Dstash.rs22 checkout_options: Option<CheckoutBuilder<'cb>>, field
37 checkout_options: None, in new()
54 pub fn checkout_options(&mut self, opts: CheckoutBuilder<'cb>) -> &mut StashApplyOptions<'cb> { in checkout_options() method
55 self.checkout_options = Some(opts); in checkout_options()
76 if let Some(opts) = self.checkout_options.as_mut() { in raw()
77 opts.configure(&mut self.raw_opts.checkout_options); in raw()
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/git2-0.13.18/src/
H A Dstash.rs22 checkout_options: Option<CheckoutBuilder<'cb>>, field
37 checkout_options: None, in new()
54 pub fn checkout_options(&mut self, opts: CheckoutBuilder<'cb>) -> &mut StashApplyOptions<'cb> { in checkout_options() method
55 self.checkout_options = Some(opts); in checkout_options()
76 if let Some(opts) = self.checkout_options.as_mut() { in raw()
77 opts.configure(&mut self.raw_opts.checkout_options); in raw()
/dports/devel/gitui/gitui-0.10.1/cargo-crates/git2-0.13.10/src/
H A Dstash.rs22 checkout_options: Option<CheckoutBuilder<'cb>>, field
37 checkout_options: None, in new()
54 pub fn checkout_options(&mut self, opts: CheckoutBuilder<'cb>) -> &mut StashApplyOptions<'cb> { in checkout_options() method
55 self.checkout_options = Some(opts); in checkout_options()
76 if let Some(opts) = self.checkout_options.as_mut() { in raw()
77 opts.configure(&mut self.raw_opts.checkout_options); in raw()
/dports/devel/cargo-generate/cargo-generate-0.9.0/cargo-crates/git2-0.13.21/src/
H A Dstash.rs22 checkout_options: Option<CheckoutBuilder<'cb>>, field
37 checkout_options: None, in new()
54 pub fn checkout_options(&mut self, opts: CheckoutBuilder<'cb>) -> &mut StashApplyOptions<'cb> { in checkout_options() method
55 self.checkout_options = Some(opts); in checkout_options()
76 if let Some(opts) = self.checkout_options.as_mut() { in raw()
77 opts.configure(&mut self.raw_opts.checkout_options); in raw()
/dports/misc/broot/broot-1.7.0/cargo-crates/git2-0.13.20/src/
H A Dstash.rs22 checkout_options: Option<CheckoutBuilder<'cb>>, field
37 checkout_options: None, in new()
54 pub fn checkout_options(&mut self, opts: CheckoutBuilder<'cb>) -> &mut StashApplyOptions<'cb> { in checkout_options() method
55 self.checkout_options = Some(opts); in checkout_options()
76 if let Some(opts) = self.checkout_options.as_mut() { in raw()
77 opts.configure(&mut self.raw_opts.checkout_options); in raw()
/dports/devel/tokei/tokei-12.1.2/cargo-crates/git2-0.13.15/src/
H A Dstash.rs22 checkout_options: Option<CheckoutBuilder<'cb>>, field
37 checkout_options: None, in new()
54 pub fn checkout_options(&mut self, opts: CheckoutBuilder<'cb>) -> &mut StashApplyOptions<'cb> { in checkout_options() method
55 self.checkout_options = Some(opts); in checkout_options()
76 if let Some(opts) = self.checkout_options.as_mut() { in raw()
77 opts.configure(&mut self.raw_opts.checkout_options); in raw()
/dports/sysutils/onefetch/onefetch-2.10.2/cargo-crates/git2-0.13.20/src/
H A Dstash.rs22 checkout_options: Option<CheckoutBuilder<'cb>>, field
37 checkout_options: None, in new()
54 pub fn checkout_options(&mut self, opts: CheckoutBuilder<'cb>) -> &mut StashApplyOptions<'cb> { in checkout_options() method
55 self.checkout_options = Some(opts); in checkout_options()
76 if let Some(opts) = self.checkout_options.as_mut() { in raw()
77 opts.configure(&mut self.raw_opts.checkout_options); in raw()
/dports/devel/pijul/pijul-1.0.0.a55/cargo-crates/git2-0.13.23/src/
H A Dstash.rs22 checkout_options: Option<CheckoutBuilder<'cb>>, field
37 checkout_options: None, in new()
54 pub fn checkout_options(&mut self, opts: CheckoutBuilder<'cb>) -> &mut StashApplyOptions<'cb> { in checkout_options() method
55 self.checkout_options = Some(opts); in checkout_options()
76 if let Some(opts) = self.checkout_options.as_mut() { in raw()
77 opts.configure(&mut self.raw_opts.checkout_options); in raw()
/dports/textproc/mdbook-linkcheck/mdbook-linkcheck-0.7.6/cargo-crates/git2-0.13.23/src/
H A Dstash.rs22 checkout_options: Option<CheckoutBuilder<'cb>>, field
37 checkout_options: None, in new()
54 pub fn checkout_options(&mut self, opts: CheckoutBuilder<'cb>) -> &mut StashApplyOptions<'cb> { in checkout_options() method
55 self.checkout_options = Some(opts); in checkout_options()
76 if let Some(opts) = self.checkout_options.as_mut() { in raw()
77 opts.configure(&mut self.raw_opts.checkout_options); in raw()
/dports/lang/rust/rustc-1.58.1-src/vendor/git2/src/
H A Dstash.rs22 checkout_options: Option<CheckoutBuilder<'cb>>, field
37 checkout_options: None, in new()
54 pub fn checkout_options(&mut self, opts: CheckoutBuilder<'cb>) -> &mut StashApplyOptions<'cb> { in checkout_options() method
55 self.checkout_options = Some(opts); in checkout_options()
76 if let Some(opts) = self.checkout_options.as_mut() { in raw()
77 opts.configure(&mut self.raw_opts.checkout_options); in raw()
/dports/sysutils/exa/exa-0.10.1/cargo-crates/git2-0.13.17/src/
H A Dstash.rs22 checkout_options: Option<CheckoutBuilder<'cb>>, field
37 checkout_options: None, in new()
54 pub fn checkout_options(&mut self, opts: CheckoutBuilder<'cb>) -> &mut StashApplyOptions<'cb> { in checkout_options() method
55 self.checkout_options = Some(opts); in checkout_options()
76 if let Some(opts) = self.checkout_options.as_mut() { in raw()
77 opts.configure(&mut self.raw_opts.checkout_options); in raw()
/dports/textproc/bat/bat-0.18.3/cargo-crates/git2-0.13.20/src/
H A Dstash.rs22 checkout_options: Option<CheckoutBuilder<'cb>>, field
37 checkout_options: None, in new()
54 pub fn checkout_options(&mut self, opts: CheckoutBuilder<'cb>) -> &mut StashApplyOptions<'cb> { in checkout_options() method
55 self.checkout_options = Some(opts); in checkout_options()
76 if let Some(opts) = self.checkout_options.as_mut() { in raw()
77 opts.configure(&mut self.raw_opts.checkout_options); in raw()
/dports/devel/gbump/gbump-1.0.1/cargo-crates/libgit2-sys-0.9.1/libgit2/examples/
H A Dcheckout.c42 } checkout_options; typedef
55 static void parse_options(const char **repo_path, checkout_options *opts, struct args_info *args) in parse_options()
115 …nt perform_checkout_ref(git_repository *repo, git_annotated_commit *target, checkout_options *opts) in perform_checkout_ref()
178 checkout_options opts; in lg2_checkout()

12345678