Searched defs:skip_len (Results 1 - 2 of 2) sorted by relevance

/system/core/libcutils/
H A Dfs_config.c173 but as we cannot guaranty it ends with '/system' we need this below skip_len logic */
176 int skip_len = strlen("/system"); local
179 skip_len++;
181 if (asprintf(&name, "%s%s", target_out_path, (dir ? conf_dir : conf_file) + skip_len) != -1) {
/system/core/libsparse/
H A Doutput_file.c340 static int write_sparse_skip_chunk(struct output_file *out, int64_t skip_len) argument
345 if (skip_len % out->block_size) {
347 skip_len, out->block_size);
354 chunk_header.chunk_sz = skip_len / out->block_size;
360 out->cur_out_ptr += skip_len;

Completed in 79 milliseconds