Home
last modified time | relevance | path

Searched refs:reqs (Results 1 – 2 of 2) sorted by relevance

/openthread-latest/third_party/mbedtls/repo/scripts/
Dmin_requirements.py118 reqs = Requirements()
120 reqs.add_file(filename)
121 reqs.write(sys.stdout)
123 reqs.install(pip_general_options=options.pip_general_options,
/openthread-latest/src/posix/platform/
Dinfra_if.cpp757 struct gaicb *reqs[1] = {nullptr}; in DiscoverNat64Prefix() local
768 reqs[0] = (struct gaicb *)malloc(sizeof(struct gaicb)); in DiscoverNat64Prefix()
769 VerifyOrExit(reqs[0] != nullptr, error = OT_ERROR_NO_BUFS); in DiscoverNat64Prefix()
770 memset(reqs[0], 0, sizeof(struct gaicb)); in DiscoverNat64Prefix()
771 reqs[0]->ar_name = kWellKnownIpv4OnlyName; in DiscoverNat64Prefix()
772 reqs[0]->ar_request = hints; in DiscoverNat64Prefix()
776 sig.sigev_value.sival_ptr = reqs[0]; in DiscoverNat64Prefix()
779 status = getaddrinfo_a(GAI_NOWAIT, reqs, 1, &sig); in DiscoverNat64Prefix()
794 free(reqs[0]); in DiscoverNat64Prefix()