2022-11-19 14:07:34 +01:00
|
|
|
// the_index.* variables
|
|
|
|
@@
|
2022-11-30 09:28:23 +01:00
|
|
|
identifier AC = active_cache;
|
2023-02-10 11:28:35 +01:00
|
|
|
identifier AN = active_nr;
|
2022-11-30 09:28:23 +01:00
|
|
|
identifier ACC = active_cache_changed;
|
|
|
|
identifier ACT = active_cache_tree;
|
2022-11-19 14:07:34 +01:00
|
|
|
@@
|
|
|
|
(
|
2022-11-30 09:28:23 +01:00
|
|
|
- AC
|
2022-11-19 14:07:34 +01:00
|
|
|
+ the_index.cache
|
|
|
|
|
|
2023-02-10 11:28:35 +01:00
|
|
|
- AN
|
|
|
|
+ the_index.cache_nr
|
|
|
|
|
|
2022-11-30 09:28:23 +01:00
|
|
|
- ACC
|
2022-11-19 14:07:34 +01:00
|
|
|
+ the_index.cache_changed
|
|
|
|
|
|
2022-11-30 09:28:23 +01:00
|
|
|
- ACT
|
2022-11-19 14:07:34 +01:00
|
|
|
+ the_index.cache_tree
|
|
|
|
)
|
|
|
|
|
2022-11-19 14:07:30 +01:00
|
|
|
// "the_repository" simple cases
|
|
|
|
@@
|
|
|
|
@@
|
|
|
|
(
|
|
|
|
- read_cache_unmerged
|
|
|
|
+ repo_read_index_unmerged
|
2022-11-19 14:07:38 +01:00
|
|
|
|
|
|
|
|
- hold_locked_index
|
|
|
|
+ repo_hold_locked_index
|
2022-11-19 14:07:30 +01:00
|
|
|
)
|
|
|
|
(
|
|
|
|
+ the_repository,
|
|
|
|
...)
|
|
|
|
|
2022-11-19 14:07:38 +01:00
|
|
|
// "the_repository" special-cases
|
|
|
|
@@
|
|
|
|
@@
|
|
|
|
(
|
|
|
|
- read_cache_preload
|
|
|
|
+ repo_read_index_preload
|
|
|
|
)
|
|
|
|
(
|
|
|
|
+ the_repository,
|
|
|
|
...
|
|
|
|
+ , 0
|
|
|
|
)
|
|
|
|
|
2022-11-19 14:07:30 +01:00
|
|
|
// "the_index" simple cases
|
|
|
|
@@
|
|
|
|
@@
|
|
|
|
(
|
|
|
|
- is_cache_unborn
|
|
|
|
+ is_index_unborn
|
|
|
|
|
|
|
|
|
- unmerged_cache
|
|
|
|
+ unmerged_index
|
|
|
|
|
|
|
|
|
- rename_cache_entry_at
|
|
|
|
+ rename_index_entry_at
|
|
|
|
|
|
|
|
|
- chmod_cache_entry
|
|
|
|
+ chmod_index_entry
|
|
|
|
|
|
|
|
|
- cache_file_exists
|
|
|
|
+ index_file_exists
|
|
|
|
|
|
|
|
|
- cache_name_is_other
|
|
|
|
+ index_name_is_other
|
|
|
|
|
|
|
|
|
- unmerge_cache_entry_at
|
|
|
|
+ unmerge_index_entry_at
|
|
|
|
|
|
|
|
|
- add_to_cache
|
|
|
|
+ add_to_index
|
|
|
|
|
|
|
|
|
- add_file_to_cache
|
|
|
|
+ add_file_to_index
|
2022-11-19 14:07:33 +01:00
|
|
|
|
|
|
|
|
- add_cache_entry
|
|
|
|
+ add_index_entry
|
|
|
|
|
|
|
|
|
- remove_file_from_cache
|
|
|
|
+ remove_file_from_index
|
|
|
|
|
|
|
|
|
- ce_match_stat
|
|
|
|
+ ie_match_stat
|
|
|
|
|
|
|
|
|
- ce_modified
|
|
|
|
+ ie_modified
|
|
|
|
|
|
|
|
|
- resolve_undo_clear
|
|
|
|
+ resolve_undo_clear_index
|
2022-11-19 14:07:30 +01:00
|
|
|
)
|
|
|
|
(
|
|
|
|
+ &the_index,
|
|
|
|
...)
|
2022-11-19 14:07:38 +01:00
|
|
|
|
|
|
|
@@
|
|
|
|
@@
|
|
|
|
(
|
|
|
|
- refresh_and_write_cache
|
|
|
|
+ repo_refresh_and_write_index
|
|
|
|
)
|
|
|
|
(
|
|
|
|
+ the_repository,
|
|
|
|
...
|
|
|
|
+ , NULL, NULL, NULL
|
|
|
|
)
|
|
|
|
|
|
|
|
// "the_index" special-cases
|
|
|
|
@@
|
|
|
|
@@
|
|
|
|
(
|
|
|
|
- read_cache_from
|
|
|
|
+ read_index_from
|
|
|
|
)
|
|
|
|
(
|
|
|
|
+ &the_index,
|
|
|
|
...
|
|
|
|
+ , get_git_dir()
|
|
|
|
)
|
|
|
|
|
|
|
|
@@
|
|
|
|
@@
|
|
|
|
(
|
|
|
|
- refresh_cache
|
|
|
|
+ refresh_index
|
|
|
|
)
|
|
|
|
(
|
|
|
|
+ &the_index,
|
|
|
|
...
|
|
|
|
+ , NULL, NULL, NULL
|
|
|
|
)
|