Home
last modified time | relevance | path

Searched refs:input_len (Results 1 – 2 of 2) sorted by relevance

/system/core/libsparse/
Dappend2simg.cpp55 off64_t input_len; in main() local
94 input_len = lseek64(input, 0, SEEK_END); in main()
95 if (input_len < 0) { in main()
98 } else if (input_len % sparse_output->block_size) { in main()
105 if (sparse_file_add_fd(sparse_output, input, 0, input_len, output_block) < 0) { in main()
109 sparse_output->len += input_len; in main()
/system/core/adb/client/
Dfastdeploy.cpp140 static std::string get_string_from_utf16(const char16_t* input, int input_len) { in get_string_from_utf16() argument
141 ssize_t utf8_length = utf16_to_utf8_length(input, input_len); in get_string_from_utf16()
147 utf16_to_utf8(input, input_len, &*utf8.begin(), utf8_length + 1); in get_string_from_utf16()