MCPcopy Create free account
hub / github.com/TileDB-Inc/TileDB / tiledb_ctx_alloc_with_error

Function tiledb_ctx_alloc_with_error

tiledb/api/c_api/context/context_api.cc:69–72  ·  view source on GitHub ↗

* Transparent forwarder to tiledb_ctx_alloc. * * Must be a separate function with its own name due to requirements of the * CAPI_INTERFACE macro. */

Source from the content-addressed store, hash-verified

67 * CAPI_INTERFACE macro.
68 */
69capi_return_t tiledb_ctx_alloc_with_error(
70 tiledb_config_handle_t* config, tiledb_ctx_handle_t** ctx) {
71 return tiledb::api::tiledb_ctx_alloc(config, ctx);
72}
73
74void tiledb_ctx_free(tiledb_ctx_t** ctx) {
75 ensure_output_pointer_is_valid(ctx);

Callers 3

make_ctxMethod · 0.85
mainFunction · 0.85

Calls 1

tiledb_ctx_allocFunction · 0.85

Tested by

no test coverage detected