Home
last modified time | relevance | path

Searched refs:PythonInputStream (Results 1 – 4 of 4) sorted by relevance

/external/tink/python/tink/cc/
Dpython_input_stream.cc44 PythonInputStream::PythonInputStream( in PythonInputStream() function in crypto::tink::PythonInputStream
56 util::StatusOr<int> PythonInputStream::Next(const void** data) { in Next()
91 void PythonInputStream::BackUp(int count) { in BackUp()
98 PythonInputStream::~PythonInputStream() {} in ~PythonInputStream()
100 int64_t PythonInputStream::Position() const { return position_; } in Position()
Dpython_input_stream.h32 class PythonInputStream : public InputStream {
37 explicit PythonInputStream(std::shared_ptr<PythonFileObjectAdapter> adapter,
40 ~PythonInputStream() override;
Dpython_input_stream_test.cc36 util::Status ReadTillEnd(PythonInputStream* input_stream, in ReadTillEnd()
53 auto input_stream = absl::make_unique<PythonInputStream>(std::move(input)); in TEST()
69 absl::make_unique<PythonInputStream>(std::move(input), buffer_size); in TEST()
89 absl::make_unique<PythonInputStream>(std::move(input), buffer_size); in TEST()
Dcc_streaming_aead_wrappers.cc51 absl::make_unique<PythonInputStream>(ciphertext_source); in NewCcDecryptingStream()