Home
last modified time | relevance | path

Searched refs:unit (Results 1 – 25 of 27) sorted by relevance

12

/lib/lwip/lwip/src/netif/ppp/
A Decp.c84 static void ecp_init (int unit);
159 ecp_init(unit) in ecp_init() argument
160 int unit; in ecp_init()
162 fsm *f = &ecp_fsm[unit];
164 f->unit = unit;
170 memset(&ecp_wantoptions[unit], 0, sizeof(ecp_options));
171 memset(&ecp_gotoptions[unit], 0, sizeof(ecp_options));
172 memset(&ecp_allowoptions[unit], 0, sizeof(ecp_options));
173 memset(&ecp_hisoptions[unit], 0, sizeof(ecp_options));
A Dauth.c556 void start_link(unit)
557 int unit;
1513 auth_reset(unit)
1514 int unit;
1561 int unit;
1687 null_login(unit)
1688 int unit;
1991 int unit;
2040 int unit;
2055 free(addresses[unit]);
[all …]
A Dmultilink.c73 static int owns_unit (TDB_DATA pid, int unit);
124 int unit, pppd_pid; in mp_join_bundle() local
209 unit = -1; in mp_join_bundle()
221 parse_num(rec.dptr, "IFNAME=ppp", &unit); in mp_join_bundle()
225 || !owns_unit(pid, unit)) in mp_join_bundle()
226 unit = -1; in mp_join_bundle()
232 if (unit >= 0) { in mp_join_bundle()
234 if (bundle_attach(unit)) { in mp_join_bundle()
431 owns_unit(key, unit) in owns_unit() argument
433 int unit;
[all …]
A Dipcp.c1965 if (ho->hisaddr != 0 && !auth_ip_addr(f->unit, ho->hisaddr)) { in ipcp_up()
1967 ipcp_close(f->unit, "Unauthorized remote IP address"); in ipcp_up()
1985 ipcp_clear_addrs(f->unit, wo->ouraddr, wo->hisaddr, in ipcp_up()
2006 ipcp_close(f->unit, "Interface configuration failed"); in ipcp_up()
2011 if (ipcp_wantoptions[f->unit].default_route) in ipcp_up()
2014 default_route_set[f->unit] = 1; in ipcp_up()
2018 if (ho->hisaddr != 0 && ipcp_wantoptions[f->unit].proxy_arp) in ipcp_up()
2020 proxy_arp_set[f->unit] = 1; in ipcp_up()
2059 ipcp_close(f->unit, "Interface configuration failed"); in ipcp_up()
2096 reset_link_stats(f->unit); in ipcp_up()
[all …]
A Dipv6cp.c1193 sif6comp(f->unit, ho->neg_vj);
1217 ipv6cp_close(f->unit, "Interface configuration failed");
1223 sifnpmode(f->unit, PPP_IPV6, NPMODE_PASS);
1280 update_link_stats(f->unit);
1287 sif6comp(f->unit, 0);
A Dlcp.c2741 update_link_stats(f->unit); in LcpSendEchoRequest()
/lib/mbedtls/external/mbedtls/tests/scripts/
A Dbasic-build-test.sh90 perl scripts/run-test-suites.pl -v 2 |tee unit-test-$TEST_OUTPUT
151 …PASSED_TESTS=$(tail -n6 unit-test-$TEST_OUTPUT|sed -n -e 's/test cases passed :[\t]*\([0-9]*\)/\1/…
152 …SKIPPED_TESTS=$(tail -n6 unit-test-$TEST_OUTPUT|sed -n -e 's/skipped :[ \t]*\([0-9]*\)/\1/p'| tr -…
153 …TOTAL_SUITES=$(tail -n6 unit-test-$TEST_OUTPUT|sed -n -e 's/.* (\([0-9]*\) .*, [0-9]* tests run)/\…
154 …FAILED_TESTS=$(tail -n6 unit-test-$TEST_OUTPUT|sed -n -e 's/failed :[\t]*\([0-9]*\)/\1/p' |tr -d '…
231 rm unit-test-$TEST_OUTPUT
/lib/lwip/lwip/contrib/ports/unix/check/
A DMakefile38 CFLAGS=-DLWIP_NOASSERT_ON_ERROR -I/usr/include/check -I$(LWIPDIR)/../test/unit
61 TESTDIR=$(LWIPDIR)/../test/unit
A DCMakeLists.txt24 "${LWIP_DIR}/test/unit"
33 include(${LWIP_DIR}/test/unit/Filelists.cmake)
A DREADME2 Helper files to run lwIP unit tests on unix-like systems.
/lib/mbedtls/external/mbedtls/docs/architecture/testing/
A Dtest-framework.md35 The same rules and guidelines apply as for [unit test descriptions](#unit-test-descriptions). In ad…
41 The same rules and guidelines apply as for [unit test descriptions](#unit-test-descriptions). In ad…
A Ddriver-interface-test-strategy.md23 ### SE driver interface unit tests
25 This section describes unit tests that must be implemented to validate the secure element driver in…
27 Many SE driver interface unit tests could be covered by running the existing API tests with a key i…
A Dinvasive-testing.md34 In unit tests and in test programs, it's ok to include internal header files from `library/`. Do no…
36 Sometimes it makes sense to have unit tests on functions that aren't part of the public API. Declar…
73 In unit test code that needs to modify the internal behavior:
102 * Files in storage (PSA API only — in the Mbed TLS API, black-box unit tests are sufficient).
/lib/efi_selftest/
A DKconfig2 bool "UEFI unit tests"
/lib/lwip/lwip/test/unit/
A DFilelists.mk32 TESTDIR=$(LWIPDIR)/../test/unit
A DFilelists.cmake15 set(LWIP_TESTDIR ${LWIP_DIR}/test/unit)
/lib/lwip/lwip/contrib/ports/unix/
A DREADME9 * check: Runs the unit tests shipped with main lwIP on the Unix port.
/lib/mbedtls/external/mbedtls/docs/architecture/psa-migration/
A Dtesting.md40 - unit testing of the new API and directly-related APIs - for example:
73 - unit testing of the new API and directly-related APIs - for example:
/lib/mbedtls/external/mbedtls/docs/architecture/
A Dpsa-crypto-implementation-structure.md88 …suite_psa_crypto*.data`, `tests/suites/test_suite_psa_crypto*.function` — [Unit tests](#unit-tests)
89 …_dev/crypto_knowledge.py`, `scripts/mbedtls_dev/asymmetric_key_data.py` — [Unit tests](#unit-tests)
97 …rypto.function`, `tests/suites/test_suite_psa_crypto_driver_wrappers.*` — [Unit tests](#unit-tests)
156 A number of unit tests are automatically generated by `tests/scripts/generate_psa_tests.py` based o…
/lib/mbedtls/external/mbedtls/tests/suites/
A Dtest_suite_net.function99 * might do); but we don't do such things in our test code, so the unit
A Dtest_suite_bignum_random.function15 * We test parameter validation in a standard way, with unit tests with
A Dtest_suite_bignum_core.function886 /* Calculate the Montgomery constant (this is unit tested separately) */
/lib/lwip/lwip/src/include/netif/ppp/
A Dppp_impl.h320 int (*demand_conf) (int unit);
/lib/mbedtls/external/mbedtls/3rdparty/p256-m/p256-m/
A DREADME.md50 public API), one for open-box testing (for unit-testing internal functions,
/lib/mbedtls/external/mbedtls/
A DChangeLog190 * Switch to milliseconds as the unit for ticket creation and reception time
582 * Update test data to avoid failures of unit tests after 2023-08-07.
1176 * Fix unit tests that used 0 as the file UID. This failed on some
1297 * Remove the partial support for running unit tests via Greentea on Mbed OS,
1362 * Don't use the obsolete header path sys/fcntl.h in unit tests.
2285 * Fix bug in redirection of unit test outputs on platforms where stdout is
2418 * The unit tests now rely on header files in tests/include/test and source
2998 * Add unit tests for AES-GCM when called through mbedtls_cipher_auth_xxx()
3644 * New unit tests for timing. Improve the self-test to be more robust
3744 * Fix incorrect unit in benchmark output. #850

Completed in 64 milliseconds

12