| 134 | } |
| 135 | |
| 136 | Stat FilesystemApk::stat(const char *path) |
| 137 | { |
| 138 | CE_UNUSED(path); |
| 139 | |
| 140 | Stat st; |
| 141 | st.file_type = Stat::REGULAR; |
| 142 | st.size = 0; |
| 143 | st.mtime = UINT64_MAX; |
| 144 | return st; |
| 145 | } |
| 146 | |
| 147 | bool FilesystemApk::exists(const char *path) |
| 148 | { |
no outgoing calls
no test coverage detected