Searched refs:blobstore (Results  1 – 15 of 15) sorted by relevance
| /external/rust/cxx/demo/ | 
| D | BUCK | 8         ":blobstore-sys",17     deps = [":blobstore-include"],
 21     name = "blobstore-sys",
 22     srcs = ["src/blobstore.cc"],
 25         ":blobstore-include",
 31     name = "blobstore-include",
 33     exported_headers = ["include/blobstore.h"],
 
 | 
| D | BUILD | 10         ":blobstore-sys",19     deps = [":blobstore-include"],
 23     name = "blobstore-sys",
 24     srcs = ["src/blobstore.cc"],
 27         ":blobstore-include",
 33     name = "blobstore-include",
 34     hdrs = ["include/blobstore.h"],
 
 | 
| D | Android.bp | 31     static_libs: ["libcxx-demo-blobstore"],
 | 
| /external/rust/cxx/book/src/build/ | 
| D | bazel.md | 19 complete blobstore tutorial (chapter 3) for your reference, tested in CI. These80         ":blobstore-sys",
 89     deps = [":blobstore-include"],
 93     name = "blobstore-sys",
 94     srcs = ["src/blobstore.cc"],
 96         ":blobstore-include",
 102     name = "blobstore-include",
 103     hdrs = ["include/blobstore.h"],
 
 | 
| D | cmake.md | 43   - Same blobstore example as the official demo, but inverted languages
 | 
| D | cargo.md | 56 GitHub repo, which maintains a working Cargo-based setup for the blobstore
 | 
| /external/rust/cxx/book/src/binding/ | 
| D | uniqueptr.md | 21 case was featured in the [*blobstore tutorial*](../tutorial.md).29         include!("example/include/blobstore.h");
 45 // include/blobstore.h
 56 // src/blobstore.cc
 58 #include "example/include/blobstore.h"
 
 | 
| /external/rust/cxx/book/src/ | 
| D | index.md | 35 large-file blobstore service. The blobstore supports a `put` operation for a50         include!("example/include/blobstore.h");
 65 this blobstore example in full detail, including all of the Rust code and all of
 71 - [demo/include/blobstore.h](https://github.com/dtolnay/cxx/blob/master/demo/include/blobstore.h)
 72 - [demo/src/blobstore.cc](https://github.com/dtolnay/cxx/blob/master/demo/src/blobstore.cc)
 76 while the C++ code in blobstore.cc is 100% ordinary C++ code working
 
 | 
| D | tutorial.md | 2 # Tutorial: CXX blobstore client5 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")
 [all …]
 
 | 
| D | concepts.md | 46 #         include!("demo/include/blobstore.h");
 | 
| D | extern-c++.md | 40 implemented as an opaque C++ type. The blobstore client was created in C++ and
 | 
| /external/rust/cxx/ | 
| D | Android.bp | 88     name: "libcxx-demo-blobstore",89     srcs: ["demo/src/blobstore.cc"],
 
 | 
| D | README.md | 74 of an existing C++ client for a large-file blobstore service. The blobstore104         include!("demo/include/blobstore.h");
 127 - [demo/include/blobstore.h](demo/include/blobstore.h)
 128 - [demo/src/blobstore.cc](demo/src/blobstore.cc)
 
 | 
| /external/rust/cxx/demo/include/ | 
| D | blobstore.h | 6 namespace blobstore {
 | 
| /external/rust/cxx/demo/src/ | 
| D | blobstore.cc | 10 namespace blobstore {  namespace
 |