Home
last modified time | relevance | path

Searched refs:intro (Results 1 – 25 of 41) sorted by relevance

12

/freebsd/contrib/ncurses/
H A Ddist.mk68 ALL = ANNOUNCE doc/html/announce.html doc/ncurses-intro.doc doc/hackguide.doc manhtml adahtml
88 doc/ncurses-intro.doc: doc/html/ncurses-intro.html
89 $(DUMP2) doc/html/ncurses-intro.html > $@
H A DREADME38 Browse the file doc/html/ncurses-intro.html for narrative descriptions of how
174 toe(1), most of tic(1), trace levels, the HTML intro, wgetnstr() and
/freebsd/share/man/man1/
H A DMakefile3 MAN= builtin.1 intro.1
98 MLINKS+=intro.1 introduction.1
/freebsd/contrib/ntp/
H A Ddot.emacs6 (c-offsets-alist . ((arglist-intro . +)
8 (statement-case-intro . *)
/freebsd/share/man/man7/
H A DMakefile17 intro.7 \
35 MLINKS= intro.7 miscellaneous.7
/freebsd/contrib/ncurses/ncurses/base/
H A Dlib_mouse.c1008 decode_X10_bstate(SCREEN *sp, MEVENT * eventp, unsigned intro) in decode_X10_bstate() argument
1012 int wheel = (intro & 96) == 96; in decode_X10_bstate()
1016 if (intro >= 96) { in decode_X10_bstate()
1017 if (intro >= 160) { in decode_X10_bstate()
1018 button = (int) (intro - 152); /* buttons 8-11 */ in decode_X10_bstate()
1020 button = (int) (intro - 92); /* buttons 4-7 */ in decode_X10_bstate()
1023 button = (intro & 3); in decode_X10_bstate()
1028 } else if (!handle_wheel(sp, eventp, (int) intro, wheel)) { in decode_X10_bstate()
1056 if (intro & 4) { in decode_X10_bstate()
1059 if (intro & 8) { in decode_X10_bstate()
[all …]
/freebsd/contrib/wpa/wpa_supplicant/
H A Ddpp_supplicant.c2735 struct dpp_introduction intro; in wpas_dpp_rx_peer_disc_resp() local
2764 os_memset(&intro, 0, sizeof(intro)); in wpas_dpp_rx_peer_disc_resp()
2812 res = dpp_peer_intro(&intro, ssid->dpp_connector, in wpas_dpp_rx_peer_disc_resp()
2834 os_memcpy(entry->pmkid, intro.pmkid, PMKID_LEN); in wpas_dpp_rx_peer_disc_resp()
2835 os_memcpy(entry->pmk, intro.pmk, intro.pmk_len); in wpas_dpp_rx_peer_disc_resp()
2836 entry->pmk_len = intro.pmk_len; in wpas_dpp_rx_peer_disc_resp()
2844 if (intro.peer_version && intro.peer_version >= 2 && in wpas_dpp_rx_peer_disc_resp()
2845 peer_version != intro.peer_version) { in wpas_dpp_rx_peer_disc_resp()
2848 intro.peer_version, peer_version); in wpas_dpp_rx_peer_disc_resp()
2877 dpp_peer_intro_deinit(&intro); in wpas_dpp_rx_peer_disc_resp()
[all …]
/freebsd/share/man/man6/
H A DMakefile1 MAN= intro.6
/freebsd/share/man/man3lua/
H A DMakefile3 MAN= intro.3lua
/freebsd/sys/
H A DREADME.md17 top-level of the src tree. Consult [`intro(9)`](https://man.freebsd.org/intro/9)
/freebsd/contrib/wpa/src/ap/
H A Ddpp_hostapd.c2057 struct dpp_introduction intro; in hostapd_dpp_rx_peer_disc_req() local
2063 os_memset(&intro, 0, sizeof(intro)); in hostapd_dpp_rx_peer_disc_req()
2093 res = dpp_peer_intro(&intro, hapd->conf->dpp_connector, in hostapd_dpp_rx_peer_disc_req()
2115 if (intro.peer_version && intro.peer_version >= 2) { in hostapd_dpp_rx_peer_disc_req()
2124 if (attr_version != intro.peer_version) { in hostapd_dpp_rx_peer_disc_req()
2127 intro.peer_version, attr_version); in hostapd_dpp_rx_peer_disc_req()
2143 if (wpa_auth_pmksa_add2(hapd->wpa_auth, src, intro.pmk, intro.pmk_len, in hostapd_dpp_rx_peer_disc_req()
2144 intro.pmkid, expiration, in hostapd_dpp_rx_peer_disc_req()
2153 dpp_peer_intro_deinit(&intro); in hostapd_dpp_rx_peer_disc_req()
2801 struct dpp_introduction intro; in hostapd_dpp_rx_priv_peer_intro_update() local
[all …]
/freebsd/share/doc/papers/malloc/
H A DMakefile3 SRCS= abs.ms intro.ms kernel.ms malloc.ms problems.ms alternatives.ms \
/freebsd/share/doc/psd/18.gprof/
H A DMakefile2 SRCS= header.me abstract.me intro.me profiling.me gathering.me \
/freebsd/share/man/man8/
H A DMakefile8 intro.8 \
/freebsd/contrib/wpa/src/common/
H A Ddpp.c4146 dpp_peer_intro(struct dpp_introduction *intro, const char *own_connector, in dpp_peer_intro() argument
4162 os_memset(intro, 0, sizeof(*intro)); in dpp_peer_intro()
4217 intro->peer_version = token->number; in dpp_peer_intro()
4228 intro->peer_key = dpp_parse_jwk(netkey, &curve); in dpp_peer_intro()
4229 if (!intro->peer_key) { in dpp_peer_intro()
4233 dpp_debug_print_key("DPP: Received netAccessKey", intro->peer_key); in dpp_peer_intro()
4244 if (dpp_ecdh(own_key, intro->peer_key, Nx, &Nx_len) < 0) in dpp_peer_intro()
4251 if (dpp_derive_pmk(Nx, Nx_len, intro->pmk, curve->hash_len) < 0) { in dpp_peer_intro()
4255 intro->pmk_len = curve->hash_len; in dpp_peer_intro()
4258 if (dpp_derive_pmkid(curve, own_key, intro->peer_key, intro->pmkid) < in dpp_peer_intro()
[all …]
H A Ddpp.h668 dpp_peer_intro(struct dpp_introduction *intro, const char *own_connector,
673 void dpp_peer_intro_deinit(struct dpp_introduction *intro);
/freebsd/share/man/man5/
H A DMakefile25 intro.5 \
/freebsd/contrib/libxo/doc/
H A Dindex.rst32 intro
/freebsd/lib/libsys/
H A DMakefile.sys227 intro.2 \
451 MLINKS+=intro.2 errno.2
/freebsd/crypto/heimdal/doc/
H A Dheimdal.texi131 @include intro.texi
H A DMakefile.am107 intro.texi \
/freebsd/share/man/man3/
H A DMakefile10 intro.3 \
/freebsd/sys/contrib/device-tree/src/arm64/rockchip/
H A Drk3399-kobol-helios64.dts10 * See https://wiki.kobol.io/helios64/intro/ for further details.
/freebsd/usr.bin/fortune/datfiles/
H A Dfreebsd-tips123 man <number> intro
125 In other words, to get the intro to general commands, type
127 man 1 intro
/freebsd/share/man/man4/
H A DMakefile242 intro.4 \

12