| 122 | return convert_to_working_tree_ca(&ca, path, src, len, dst, meta); |
| 123 | } |
| 124 | static inline int async_convert_to_working_tree(struct index_state *istate, |
| 125 | const char *path, const char *src, |
| 126 | size_t len, struct strbuf *dst, |
| 127 | const struct checkout_metadata *meta, |
| 128 | void *dco) |
| 129 | { |
| 130 | struct conv_attrs ca; |
| 131 | convert_attrs(istate, &ca, path); |
| 132 | return async_convert_to_working_tree_ca(&ca, path, src, len, dst, meta, dco); |
| 133 | } |
| 134 | int async_query_available_blobs(const char *cmd, |
| 135 | struct string_list *available_paths); |
| 136 | int renormalize_buffer(struct index_state *istate, |
nothing calls this directly
no test coverage detected