| 6671 | } |
| 6672 | |
| 6673 | ssize_t |
| 6674 | TSFetchReadData(TSFetchSM fetch_sm, void *buf, size_t len) |
| 6675 | { |
| 6676 | sdk_assert(sdk_sanity_check_fetch_sm(fetch_sm) == TS_SUCCESS); |
| 6677 | |
| 6678 | return (reinterpret_cast<FetchSM *>(fetch_sm))->ext_read_data(static_cast<char *>(buf), len); |
| 6679 | } |
| 6680 | |
| 6681 | void |
| 6682 | TSFetchLaunch(TSFetchSM fetch_sm) |
no test coverage detected