Home
last modified time | relevance | path

Searched refs:to_process (Results 1 – 3 of 3) sorted by relevance

/system/keymaster/
Daes_operation.cpp591 const size_t to_process = data_available - tag_length_; in ProcessAllButTagLengthBytes() local
592 const size_t to_process_from_tag_buf = min(to_process, tag_buf_length_); in ProcessAllButTagLengthBytes()
593 const size_t to_process_from_input = to_process - to_process_from_tag_buf; in ProcessAllButTagLengthBytes()
595 if (!output->reserve(to_process + AES_BLOCK_SIZE)) in ProcessAllButTagLengthBytes()
612 bool AesEvpDecryptOperation::ProcessTagBufContentsAsData(size_t to_process, Buffer* output, in ProcessTagBufContentsAsData() argument
614 assert(to_process <= tag_buf_length_); in ProcessTagBufContentsAsData()
615 if (!InternalUpdate(tag_buf_.get(), to_process, output, error)) in ProcessTagBufContentsAsData()
617 if (to_process < tag_buf_length_) in ProcessTagBufContentsAsData()
618 memmove(tag_buf_.get(), tag_buf_.get() + to_process, tag_buf_length_ - to_process); in ProcessTagBufContentsAsData()
619 tag_buf_length_ -= to_process; in ProcessTagBufContentsAsData()
Daes_operation.h149 bool ProcessTagBufContentsAsData(size_t to_process, Buffer* output, keymaster_error_t* error);
/system/connectivity/shill/
Ddevice_unittest.cc594 string to_process("/device/stuff/0"); in TEST_F() local
595 ControlInterface::RpcIdToStorageId(&to_process); in TEST_F()
596 EXPECT_TRUE(isalpha(to_process[0])); in TEST_F()
597 EXPECT_EQ(string::npos, to_process.find('/')); in TEST_F()