Lines Matching refs:blobstore
2 # Tutorial: CXX blobstore client
5 blobstore service. In fact we'll see calls going in both directions: Rust to C++
64 Let's obtain an instance of the C++ blobstore client, a class `BlobstoreClient`
86 include!("cxx-demo/include/blobstore.h");
130 `include!("cxx-demo/include/blobstore.h")` above — we'll be putting the
131 C++ header at relative path `include/blobstore.h` within the Rust crate. If your
137 // include/blobstore.h
151 // src/blobstore.cc
153 #include "cxx-demo/include/blobstore.h"
205 .file("src/blobstore.cc")
220 .file("src/blobstore.cc")
242 Our C++ blobstore supports a `put` operation for a discontiguous buffer upload.
266 include!("cxx-demo/include/blobstore.h");
302 # include!("cxx-demo/include/blobstore.h");
332 // include/blobstore.h
348 In blobstore.cc we're able to call the Rust `next_chunk` function, exposed to
354 // src/blobstore.cc
356 ##include "cxx-demo/include/blobstore.h"
398 # include!("cxx-demo/include/blobstore.h");
501 metadata about blobs between our Rust application and C++ blobstore client.
522 # include!("cxx-demo/include/blobstore.h");
562 // include/blobstore.h
587 // src/blobstore.cc
589 ##include "cxx-demo/include/blobstore.h"
597 // Toy implementation of an in-memory blobstore.