Searched defs:input (Results 1 - 11 of 11) sorted by relevance

/system/keymaster/
H A Ddsa_operation.cpp29 keymaster_error_t DsaOperation::Update(const Buffer& input, Buffer* /* output */) { argument
35 return StoreData(input);
39 keymaster_error_t DsaOperation::StoreData(const Buffer& input) { argument
40 if (!data_.reserve(data_.available_read() + input.available_read()) ||
41 !data_.write(input.peek_read(), input.available_read()))
H A Decdsa_operation.cpp29 keymaster_error_t EcdsaOperation::Update(const Buffer& input, Buffer* /* output */) { argument
35 return StoreData(input);
39 keymaster_error_t EcdsaOperation::StoreData(const Buffer& input) { argument
40 if (!data_.reserve(data_.available_read() + input.available_read()) ||
41 !data_.write(input.peek_read(), input.available_read()))
H A Drsa_operation.cpp34 keymaster_error_t RsaOperation::Update(const Buffer& input, Buffer* /* output */) { argument
40 return StoreData(input);
44 keymaster_error_t RsaOperation::StoreData(const Buffer& input) { argument
45 if (!data_.reserve(data_.available_read() + input.available_read()) ||
46 !data_.write(input.peek_read(), input.available_read()))
/system/core/fastbootd/
H A Dsecure.c101 BIO *input; local
105 input = BIO_new_fd(fd, BIO_NOCLOSE);
106 if (input == NULL) {
107 D(ERR, "Unable to open input");
114 *content = SMIME_read_CMS(input, output);
117 D(ERR, "Unable to parse input file: %s", ERR_lib_error_string(err));
121 BIO_free(input);
126 BIO_free(input);
/system/core/libsparse/
H A Dappend2simg.c46 fprintf(stderr, "Usage: append2simg <output> <input>\n");
56 int input; local
91 input = open(input_path, O_RDONLY | O_BINARY);
92 if (input < 0) {
93 fprintf(stderr, "Couldn't open input file (%s)\n", strerror(errno));
97 input_len = lseek64(input, 0, SEEK_END);
99 fprintf(stderr, "Couldn't get input file length (%s)\n", strerror(errno));
105 lseek64(input, 0, SEEK_SET);
108 if (sparse_file_add_fd(sparse_output, input, 0, input_len, output_block) < 0) {
109 fprintf(stderr, "Couldn't add input fil
[all...]
/system/core/fastbootd/commands/
H A Dflash.c94 struct GPT_mapping input; local
100 if (gpt_mmap(&input, written + skip, current_size, data_fd)) {
109 memcpy(output.ptr, input.ptr, current_size);
111 gpt_unmap(&input);
/system/extras/verity/
H A DKeystoreSigner.java124 public void parse(byte[] input) throws Exception { argument
125 ASN1InputStream stream = new ASN1InputStream(input);
H A DUtils.java229 static boolean verify(PublicKey key, byte[] input, byte[] signature, argument
239 verifier.update(input);
244 static byte[] sign(PrivateKey privateKey, byte[] input) throws Exception { argument
247 signer.update(input);
/system/core/libpixelflinger/tests/gglmul/
H A Dgglmul_test.cpp38 GGLfixed input; member in struct:gglClampx_test_t
60 printf("Test input=0x%08x output=0x%08x :",
61 test->input, test->output);
62 if(gglClampx(test->input) == test->output)
72 GGLfixed input; member in struct:gglClz_test_t
91 printf("Test input=0x%08x output=%2d :", test->input, test->output);
92 if(gglClz(test->input) == test->output)
/system/keymaster/include/keymaster/
H A Dgoogle_keymaster_messages.h193 Buffer input; member in struct:keymaster::UpdateOperationRequest
/system/netd/server/
H A DRouteController.cpp229 int padInterfaceName(const char* input, char* name, size_t* length, uint16_t* padding) { argument
230 if (!input) {
235 *length = strlcpy(name, input, IFNAMSIZ) + 1;

Completed in 174 milliseconds