| /freebsd/sbin/gbde/ |
| H A D | gbde.c | |
| /freebsd/sys/geom/bde/ |
| H A D | g_bde_lock.c | |
| H A D | g_bde.h | |
| /freebsd/contrib/netbsd-tests/lib/libc/gen/ |
| H A D | t_glob.c | 199 glob_t gl; in run() local 202 memset(&gl, 0, sizeof(gl)); in run() 203 gl.gl_opendir = gl_opendir; in run() 204 gl.gl_readdir = gl_readdir; in run() 205 gl.gl_closedir = gl_closedir; in run() 206 gl.gl_stat = gl_stat; in run() 207 gl.gl_lstat = gl_lstat; in run() 209 RZ(glob(p, GLOB_ALTDIRFUNC | flags, NULL, &gl)); in run() 211 for (i = 0; i < gl.gl_pathc; i++) in run() 212 DPRINTF(("%s\n", gl.gl_pathv[i])); in run() [all …]
|
| /freebsd/libexec/ftpd/ |
| H A D | popen.c | |
| H A D | ftpcmd.y | |
| /freebsd/crypto/heimdal/appl/ftp/ftpd/ |
| H A D | popen.c | 138 glob_t gl; in ftpd_popen() local 148 memset(&gl, 0, sizeof(gl)); in ftpd_popen() 150 glob(argv[argc], flags, NULL, &gl) || in ftpd_popen() 151 gl.gl_pathc == 0) in ftpd_popen() 154 for (pop = gl.gl_pathv; in ftpd_popen() 158 globfree(&gl); in ftpd_popen()
|
| H A D | ftpcmd.y | 841 glob_t gl; 845 memset(&gl, 0, sizeof(gl)); 846 if (glob($1, flags, NULL, &gl) || 847 gl.gl_pathc == 0) { 851 $$ = strdup(gl.gl_pathv[0]); 853 globfree(&gl);
|
| H A D | ftpcmd.c | 2679 glob_t gl; in yyparse() 2683 memset(&gl, 0, sizeof(gl)); in yyparse() 2684 if (glob((yyvsp[(1) - (1)].s), flags, NULL, &gl) || in yyparse() 2685 gl.gl_pathc == 0) { in yyparse() 2689 (yyval.s) = strdup(gl.gl_pathv[0]); in yyparse() 2691 globfree(&gl); in yyparse()
|
| H A D | ftpd.c | 2218 glob_t gl; in send_file_list() local 2230 memset(&gl, 0, sizeof(gl)); in send_file_list() 2232 if (glob(whichf, flags, 0, &gl)) { in send_file_list() 2235 } else if (gl.gl_pathc == 0) { in send_file_list() 2240 dirlist = gl.gl_pathv; in send_file_list() 2338 globfree(&gl); in send_file_list()
|
| /freebsd/sys/dev/ath/ath_hal/ar5212/ |
| H A D | ar5212_rfgain.c | 190 const GAIN_OPTIMIZATION_LADDER *gl; in ar5212AdjustGain() local 193 gl = &gainLadder5112; in ar5212AdjustGain() 195 gl = &gainLadder; in ar5212AdjustGain() 196 gv->currStep = &gl->optStep[gv->currStepNum]; in ar5212AdjustGain() 208 gv->targetGain -= 2 * (gl->optStep[--(gv->currStepNum)].stepGain - in ar5212AdjustGain() 210 gv->currStep = &gl->optStep[gv->currStepNum]; in ar5212AdjustGain() 217 if (gv->currStepNum == gl->numStepsInLadder-1) { in ar5212AdjustGain() 227 gv->currStepNum < (gl->numStepsInLadder - 1)) { in ar5212AdjustGain() 229 (gl->optStep[++(gv->currStepNum)].stepGain - gv->currStep->stepGain); in ar5212AdjustGain() 230 gv->currStep = &gl->optStep[gv->currStepNum]; in ar5212AdjustGain()
|
| /freebsd/usr.bin/vtfontcvt/ |
| H A D | vtfontcvt.c | 196 add_mapping(struct glyph *gl, unsigned int c, unsigned int map_idx) in add_mapping() argument 205 mp->m_glyph = gl; in add_mapping() 257 struct glyph *gl; in add_glyph() local 265 SLIST_FOREACH(gl, &glyph_hash[hash], g_hash) { in add_glyph() 266 if (memcmp(gl->g_data, bytes, wbytes * height) == 0) { in add_glyph() 268 return (gl); in add_glyph() 273 gl = xmalloc(sizeof *gl); in add_glyph() 274 gl->g_data = xmalloc(wbytes * height); in add_glyph() 275 memcpy(gl->g_data, bytes, wbytes * height); in add_glyph() 277 TAILQ_INSERT_HEAD(&glyphs[map_idx], gl, g_list); in add_glyph() [all …]
|
| /freebsd/usr.bin/login/ |
| H A D | login_fbtab.c | 122 glob_t gl; in login_protect() local 126 if (glob(pattern, GLOB_NOSORT, NULL, &gl) != 0) in login_protect() 128 for (i = 0; i < gl.gl_pathc; i++) { in login_protect() 129 path = gl.gl_pathv[i]; in login_protect() 138 globfree(&gl); in login_protect()
|
| /freebsd/crypto/openssh/ |
| H A D | auth2-pubkey.c | 329 glob_t gl; in match_principals_file() local 336 r = glob(file, 0, NULL, &gl); in match_principals_file() 343 } else if (gl.gl_pathc > INT_MAX) { in match_principals_file() 345 } else if (gl.gl_pathc > 1) { in match_principals_file() 347 gl.gl_pathc); in match_principals_file() 349 for (i = 0; !success && i < gl.gl_pathc; i++) { in match_principals_file() 352 if ((f = auth_openprincipals(gl.gl_pathv[i], pw, in match_principals_file() 357 success = auth_process_principals(f, gl.gl_pathv[i], in match_principals_file() 366 globfree(&gl); in match_principals_file() 816 glob_t gl; in user_key_allowed() local [all …]
|
| H A D | .git_allowed_signers.asc | 15 =gl+l
|
| /freebsd/crypto/heimdal/appl/ftp/ftp/ |
| H A D | cmds.c | 514 glob_t gl; in mput() local 537 memset(&gl, 0, sizeof(gl)); in mput() 539 if (glob(argv[i], flags, NULL, &gl) || gl.gl_pathc == 0) { in mput() 541 globfree(&gl); in mput() 544 for (cpp = gl.gl_pathv; cpp && *cpp != NULL; cpp++) { in mput() 562 globfree(&gl); in mput() 1564 glob_t gl; in globulize() local 1571 memset(&gl, 0, sizeof(gl)); in globulize() 1572 if (glob(*cpp, flags, NULL, &gl) || in globulize() 1573 gl.gl_pathc == 0) { in globulize() [all …]
|
| /freebsd/lib/libiconv_modules/ISO2022/ |
| H A D | citrus_iso2022.c | 93 int gl:3, member 434 s->gl = 0; in _citrus_ISO2022_init_state() 587 psenc->gl = 0; in _ISO2022_sgetwchar() 593 psenc->gl = 1; in _ISO2022_sgetwchar() 659 psenc->gl = string[1] - 'n' + 2; in _ISO2022_sgetwchar() 729 cur = (psenc->singlegl == -1) ? psenc->gl : psenc->singlegl; in _ISO2022_sgetwchar() 1075 if (psenc->gl == target) in _ISO2022_sputwchar() 1082 psenc->gl = 0; in _ISO2022_sputwchar() 1085 psenc->gl = 1; in _ISO2022_sputwchar() 1089 psenc->gl = 2; in _ISO2022_sputwchar() [all …]
|
| /freebsd/contrib/tnftp/src/ |
| H A D | util.c | 634 glob_t gl; in globulize() local 642 memset(&gl, 0, sizeof(gl)); in globulize() 643 if (glob(pattern, flags, NULL, &gl) || gl.gl_pathc == 0) { in globulize() 645 globfree(&gl); in globulize() 648 p = ftp_strdup(gl.gl_pathv[0]); in globulize() 649 globfree(&gl); in globulize()
|
| H A D | cmds.c | 507 glob_t gl; in mput() local 529 memset(&gl, 0, sizeof(gl)); in mput() 531 if (glob(argv[i], flags, NULL, &gl) || gl.gl_pathc == 0) { in mput() 533 globfree(&gl); in mput() 536 for (cpp = gl.gl_pathv; cpp && *cpp != NULL && connected; in mput() 555 globfree(&gl); in mput()
|
| /freebsd/sys/contrib/openzfs/module/lua/ |
| H A D | lparser.c | 341 Labellist *gl = &ls->dyd->gt; in closegoto() local 342 Labeldesc *gt = &gl->arr[g]; in closegoto() 353 for (i = g; i < gl->n - 1; i++) in closegoto() 354 gl->arr[i] = gl->arr[i + 1]; in closegoto() 355 gl->n--; in closegoto() 401 Labellist *gl = &ls->dyd->gt; in findgotos() local 403 while (i < gl->n) { in findgotos() 404 if (luaS_eqstr(gl->arr[i].name, lb->name)) in findgotos() 420 Labellist *gl = &fs->ls->dyd->gt; in movegotosout() local 423 while (i < gl->n) { in movegotosout() [all …]
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
| H A D | asan_ignorelist.txt | 12 # Stack buffer overflow in VC/INCLUDE/xlocnum, see http://goo.gl/L4qqUG
|
| /freebsd/contrib/lua/src/ |
| H A D | lparser.c | 529 Labellist *gl = &ls->dyd->gt; /* list of gotos */ in solvegoto() local 530 Labeldesc *gt = &gl->arr[g]; /* goto to be resolved */ in solvegoto() 535 for (i = g; i < gl->n - 1; i++) /* remove goto from pending list */ in solvegoto() 536 gl->arr[i] = gl->arr[i + 1]; in solvegoto() 537 gl->n--; in solvegoto() 586 Labellist *gl = &ls->dyd->gt; in solvegotos() local 589 while (i < gl->n) { in solvegotos() 590 if (eqstr(gl->arr[i].name, lb->name)) { in solvegotos() 591 needsclose |= gl->arr[i].close; in solvegotos() 630 Labellist *gl = &fs->ls->dyd->gt; in movegotosout() local [all …]
|
| /freebsd/contrib/nvi/regex/ |
| H A D | engine.c | 141 const sopno gl = g->laststate; in matcher() local 185 endp = fast(m, start, stop, gf, gl); in matcher() 197 endp = slow(m, m->coldp, stop, gf, gl); in matcher() 218 dp = dissect(m, m->coldp, endp, gf, gl); in matcher() 229 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0); in matcher() 241 endp = slow(m, m->coldp, endp-1, gf, gl); in matcher() 252 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0); in matcher()
|
| /freebsd/lib/libc/regex/ |
| H A D | engine.c | 198 const sopno gl = g->laststate; in matcher() local 295 endp = walk(m, start, stop, gf, gl, true); in matcher() 311 endp = walk(m, m->coldp, stop, gf, gl, false); in matcher() 333 dp = dissect(m, m->coldp, endp, gf, gl); in matcher() 344 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0, 0); in matcher() 356 endp = walk(m, m->coldp, endp-1, gf, gl, false); in matcher() 367 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0, 0); in matcher()
|
| /freebsd/contrib/dialog/po/ |
| H A D | gl.po | 20 "Language: gl\n"
|