MCPcopy Create free account
hub / github.com/NativeScript/android / ada_set_password

Function ada_set_password

test-app/runtime/src/main/cpp/ada/ada.cpp:17241–17248  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17239}
17240
17241bool ada_set_password(ada_url result, const char* input,
17242 size_t length) noexcept {
17243 ada::result<ada::url_aggregator>& r = get_instance(result);
17244 if (!r) {
17245 return false;
17246 }
17247 return r->set_password(std::string_view(input, length));
17248}
17249
17250bool ada_set_port(ada_url result, const char* input, size_t length) noexcept {
17251 ada::result<ada::url_aggregator>& r = get_instance(result);

Callers

nothing calls this directly

Calls 1

set_passwordMethod · 0.80

Tested by

no test coverage detected