/freebsd/contrib/ncurses/ |
H A D | dist.mk | 68 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 D | README | 38 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 D | Makefile | 3 MAN= builtin.1 intro.1 98 MLINKS+=intro.1 introduction.1
|
/freebsd/contrib/ntp/ |
H A D | dot.emacs | 6 (c-offsets-alist . ((arglist-intro . +) 8 (statement-case-intro . *)
|
/freebsd/share/man/man7/ |
H A D | Makefile | 17 intro.7 \ 35 MLINKS= intro.7 miscellaneous.7
|
/freebsd/contrib/ncurses/ncurses/base/ |
H A D | lib_mouse.c | 1008 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 D | dpp_supplicant.c | 2735 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 D | Makefile | 1 MAN= intro.6
|
/freebsd/share/man/man3lua/ |
H A D | Makefile | 3 MAN= intro.3lua
|
/freebsd/sys/ |
H A D | README.md | 17 top-level of the src tree. Consult [`intro(9)`](https://man.freebsd.org/intro/9)
|
/freebsd/contrib/wpa/src/ap/ |
H A D | dpp_hostapd.c | 2057 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 D | Makefile | 3 SRCS= abs.ms intro.ms kernel.ms malloc.ms problems.ms alternatives.ms \
|
/freebsd/share/doc/psd/18.gprof/ |
H A D | Makefile | 2 SRCS= header.me abstract.me intro.me profiling.me gathering.me \
|
/freebsd/share/man/man8/ |
H A D | Makefile | 8 intro.8 \
|
/freebsd/contrib/wpa/src/common/ |
H A D | dpp.c | 4146 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 D | dpp.h | 668 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 D | Makefile | 25 intro.5 \
|
/freebsd/contrib/libxo/doc/ |
H A D | index.rst | 32 intro
|
/freebsd/lib/libsys/ |
H A D | Makefile.sys | 227 intro.2 \ 451 MLINKS+=intro.2 errno.2
|
/freebsd/crypto/heimdal/doc/ |
H A D | heimdal.texi | 131 @include intro.texi
|
H A D | Makefile.am | 107 intro.texi \
|
/freebsd/share/man/man3/ |
H A D | Makefile | 10 intro.3 \
|
/freebsd/sys/contrib/device-tree/src/arm64/rockchip/ |
H A D | rk3399-kobol-helios64.dts | 10 * See https://wiki.kobol.io/helios64/intro/ for further details.
|
/freebsd/usr.bin/fortune/datfiles/ |
H A D | freebsd-tips | 123 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 D | Makefile | 242 intro.4 \
|