Searched refs:TEXT (Results 1 - 25 of 66) sorted by relevance

123

/freebsd-current/contrib/dialog/samples/
H A Dtextbox-both8 TEXT=/usr/share/common-licenses/GPL
9 test -f $TEXT || TEXT=../COPYING
12 expand < $TEXT >> $tempfile
14 $DIALOG --clear --title "TEXT BOX" \
H A Dtextbox38 TEXT=/usr/share/common-licenses/GPL
9 test -f $TEXT || TEXT=../COPYING
12 expand < $TEXT >> $tempfile
14 $DIALOG --clear --title "TEXT BOX" \
H A Dtextbox-help8 TEXT=/usr/share/common-licenses/GPL
9 test -f $TEXT || TEXT=../COPYING
12 expand < $TEXT >> $tempfile
14 $DIALOG --clear --title "TEXT BOX" \
/freebsd-current/contrib/byacc/test/
H A Derr_syntax10.y7 %token <TEXT> '(' '*' '&'
/freebsd-current/contrib/wpa/wpa_supplicant/
H A Dconfig_winreg.c40 #define WPA_KEY_PREFIX TEXT("SOFTWARE\\wpa_supplicant")
58 ret = RegOpenKeyEx(hk, TEXT("blobs"), 0, KEY_QUERY_VALUE, &bhk);
87 name[namelen] = TEXT('\0');
168 str = wpa_config_read_reg_string(hk, TEXT("uuid"));
187 str = wpa_config_read_reg_string(hk, TEXT("os_version"));
206 wpa_config_read_reg_dword(hk, TEXT("ap_scan"), &config->ap_scan);
207 wpa_config_read_reg_dword(hk, TEXT("fast_reauth"),
209 wpa_config_read_reg_dword(hk, TEXT("dot11RSNAConfigPMKLifetime"),
212 TEXT("dot11RSNAConfigPMKReauthThreshold"),
215 wpa_config_read_reg_dword(hk, TEXT("dot11RSNAConfigSATimeou
[all...]
H A Dmain_winsvc.c31 #define WPASVC_NAME TEXT("wpasvc")
34 #define WPASVC_DISPLAY_NAME TEXT("wpa_supplicant service")
38 TEXT("Provides IEEE 802.1X and WPA/WPA2 supplicant functionality")
51 #define WPA_KEY_PREFIX TEXT("SOFTWARE\\wpa_supplicant")
82 ret = RegQueryValueEx(hk, TEXT("ctrl_interface"), NULL, NULL,
85 ctrl_interface[TBUFLEN - 1] = TEXT('\0');
93 ret = RegQueryValueEx(hk, TEXT("adapter"), NULL, NULL,
96 adapter[TBUFLEN - 1] = TEXT('\0');
104 ret = RegQueryValueEx(hk, TEXT("config"), NULL, NULL,
115 ret = RegQueryValueEx(hk, TEXT("skip_on_erro
[all...]
/freebsd-current/crypto/openssl/crypto/
H A DLPdir_win.c145 if (wdir[sz - 1] != TEXT('*')) {
146 if (wdir[sz - 1] != TEXT('/') && wdir[sz - 1] != TEXT('\\'))
147 _tcscpy(wdir + sz, TEXT("/*"));
149 _tcscpy(wdir + sz, TEXT("*"));
/freebsd-current/contrib/nvi/common/
H A Dcommon.h45 typedef struct _text TEXT; typedef in typeref:struct:_text
H A Dcut.c31 * Put a range of lines/columns into a TEXT buffer.
222 TEXT *tp;
230 /* Create a TEXT structure that can hold the entire line. */
236 * copy the portion we want, and reset the TEXT length.
279 * Allocate a new TEXT structure.
281 * PUBLIC: TEXT *text_init(SCR *, const CHAR_T *, size_t, size_t);
283 TEXT *
286 TEXT *tp;
288 CALLOC(sp, tp, 1, sizeof(TEXT));
314 TEXT *t
[all...]
H A Dline.c85 TEXT *tp;
108 * Look-aside into the TEXT buffers and see if the line we want
112 l1 = ((TEXT *)TAILQ_FIRST(sp->tiq))->lno;
113 l2 = ((TEXT *)TAILQ_LAST(sp->tiq, _texth))->lno;
116 TRACE(sp, "retrieve TEXT buffer line %lu\n", (u_long)lno);
462 ep->c_nlines + (((TEXT *)TAILQ_LAST(sp->tiq, _texth))->lno -
463 ((TEXT *)TAILQ_FIRST(sp->tiq))->lno) : ep->c_nlines));
497 *lnop += ((TEXT *)TAILQ_LAST(sp->tiq, _texth))->lno -
498 ((TEXT *)TAILQ_FIRST(sp->tiq))->lno;
534 ((TEXT *)TAILQ_LAS
[all...]
H A Dput.c35 TEXT *ltp, *tp;
/freebsd-current/contrib/kyua/store/
H A Dschema_v3.sql75 cwd TEXT NOT NULL
83 var_name TEXT PRIMARY KEY,
84 var_value TEXT NOT NULL
112 property_name TEXT NOT NULL,
115 property_value TEXT,
148 absolute_path TEXT NOT NULL,
151 root TEXT NOT NULL,
154 relative_path TEXT NOT NULL,
157 test_suite_name TEXT NOT NULL,
166 interface TEXT NO
[all...]
H A Dmigrate_v1_v2.sql86 property_name TEXT NOT NULL,
87 property_value TEXT,
99 absolute_path TEXT NOT NULL,
100 root TEXT NOT NULL,
101 relative_path TEXT NOT NULL,
102 test_suite_name TEXT NOT NULL,
104 interface TEXT NOT NULL
149 interface TEXT NOT NULL,
150 property_name TEXT NOT NULL,
151 property_value TEXT NO
[all...]
H A Dschema_v1.sql76 cwd TEXT NOT NULL
85 var_name TEXT NOT NULL,
86 var_value TEXT NOT NULL,
148 root TEXT NOT NULL,
154 test_suite_name TEXT NOT NULL,
160 interface TEXT NOT NULL
173 name TEXT NOT NULL
184 result_type TEXT NOT NULL,
185 result_reason TEXT,
202 file_name TEXT NO
[all...]
H A Dschema_v2.sql78 cwd TEXT NOT NULL
87 var_name TEXT NOT NULL,
88 var_value TEXT NOT NULL,
142 property_name TEXT NOT NULL,
145 property_value TEXT,
179 absolute_path TEXT NOT NULL,
182 root TEXT NOT NULL,
185 relative_path TEXT NOT NULL,
188 test_suite_name TEXT NOT NULL,
197 interface TEXT NO
[all...]
/freebsd-current/contrib/nvi/ex/
H A Dex_txt.c43 static int txt_dent(SCR *, TEXT *);
44 static void txt_prompt(SCR *, TEXT *, ARG_CHAR_T, u_int32_t);
57 TEXT ait, *ntp, *tp;
66 * Get a TEXT structure with some initial buffer space, reusing the
67 * last one if it's big enough. (All TEXT bookkeeping fields default
183 * TEXT.
221 * Swap old and new TEXT's, and insert the new TEXT
352 txt_prompt(SCR *sp, TEXT *tp, ARG_CHAR_T prompt, u_int32_t flags)
376 txt_dent(SCR *sp, TEXT *t
[all...]
H A Dex_display.c124 TEXT *tp;
H A Dex_at.c40 TEXT *tp;
/freebsd-current/usr.bin/ident/
H A Dident.c47 PUNC_SEEN, /* ':' -> _SVN; space -> TEXT */
49 TEXT enumerator in enum:__anon896
160 state = TEXT;
168 case TEXT:
/freebsd-current/contrib/ncurses/menu/
H A Dmenu.h40 #define TEXT TEXT_ncurses macro
83 TEXT; typedef in typeref:struct:__anon5123
91 TEXT name; /* name of menu item */
92 TEXT description; /* description of item, optional in display */
H A Dmenu.priv.h126 extern MENU_EXPORT(int) _nc_Calculate_Text_Width(const TEXT *);
/freebsd-current/contrib/nvi/vi/
H A Dv_at.c36 TEXT *tp;
H A Dv_txt.c28 static int txt_abbrev(SCR *, TEXT *, CHAR_T *, int, int *, int *);
29 static void txt_ai_resolve(SCR *, TEXT *, int *);
30 static TEXT *txt_backup(SCR *, TEXTH *, TEXT *, u_int32_t *);
31 static int txt_dent(SCR *, TEXT *, int, int);
32 static int txt_emark(SCR *, TEXT *, size_t);
34 static int txt_fc(SCR *, TEXT *, int *);
36 static int txt_hex(SCR *, TEXT *);
37 static int txt_insch(SCR *, TEXT *, CHAR_T *, u_int);
38 static int txt_isrch(SCR *, VICMD *, TEXT *, u_int8_
[all...]
H A Dv_ex.c28 static int v_ecl_log(SCR *, TEXT *);
235 TEXT *tp;
324 TEXT *tp;
574 v_ecl_log(SCR *sp, TEXT *tp)
/freebsd-current/usr.bin/sed/
H A Ddefs.h111 TEXT, /* a c i */ enumerator in enum:e_args

Completed in 187 milliseconds

123