Searched refs:blobstore (Results 1 – 14 of 14) sorted by relevance
/external/rust/cxx/demo/ |
D | BUCK | 7 ":blobstore-sys", 16 deps = [":blobstore-include"], 20 name = "blobstore-sys", 21 srcs = ["src/blobstore.cc"], 24 ":blobstore-include", 30 name = "blobstore-include", 31 exported_headers = ["include/blobstore.h"],
|
D | BUILD | 9 ":blobstore-sys", 18 deps = [":blobstore-include"], 22 name = "blobstore-sys", 23 srcs = ["src/blobstore.cc"], 26 ":blobstore-include", 32 name = "blobstore-include", 33 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. These 80 ":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 | 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 a 50 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 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") [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 | 69 name: "libcxx-demo-blobstore", 70 srcs: ["demo/src/blobstore.cc"],
|
D | README.md | 74 of an existing C++ client for a large-file blobstore service. The blobstore 104 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
|