HomeSort by: relevance | last modified time | path
    Searched defs:gl (Results 1 - 12 of 12) sorted by relevancy

  /src/libexec/ftpd/
popen.c 138 glob_t gl; local in function:ftpd_popen
141 memset(&gl, 0, sizeof(gl));
142 if (glob(argv[argc], flags, NULL, &gl)
143 || gl.gl_pathv == NULL) {
145 globfree(&gl);
149 for (pop = gl.gl_pathv; *pop; pop++) {
151 globfree(&gl);
156 globfree(&gl);
conf.c 520 glob_t gl; local in function:show_chdir_messages
563 memset(&gl, 0, sizeof(gl));
564 if (glob(curclass.notify, GLOB_BRACE|GLOB_LIMIT, NULL, &gl) != 0
565 || gl.gl_matchc == 0) {
566 globfree(&gl);
570 for (rlist = gl.gl_pathv; *rlist != NULL; rlist++) {
588 globfree(&gl);
ftpd.c 3428 glob_t gl; local in function:send_file_list
3441 memset(&gl, 0, sizeof(gl));
3443 if (glob(whichf, flags, 0, &gl)) {
3446 } else if (gl.gl_pathc == 0) {
3451 dirlist = gl.gl_pathv;
3566 globfree(&gl);
  /src/sys/external/isc/atheros_hal/dist/ar5212/
ar5212_rfgain.c 190 const GAIN_OPTIMIZATION_LADDER *gl; local in function:ar5212AdjustGain
193 gl = &gainLadder5112;
195 gl = &gainLadder;
196 gv->currStep = &gl->optStep[gv->currStepNum];
208 gv->targetGain -= 2 * (gl->optStep[--(gv->currStepNum)].stepGain -
210 gv->currStep = &gl->optStep[gv->currStepNum];
217 if (gv->currStepNum == gl->numStepsInLadder-1) {
227 gv->currStepNum < (gl->numStepsInLadder - 1)) {
229 (gl->optStep[++(gv->currStepNum)].stepGain - gv->currStep->stepGain);
230 gv->currStep = &gl->optStep[gv->currStepNum]
    [all...]
  /src/tests/lib/libc/gen/
t_glob.c 206 glob_t gl; local in function:run
211 memset(&gl, 0, sizeof(gl));
212 gl.gl_opendir = vfs_opendir;
213 gl.gl_readdir = vfs_readdir;
214 gl.gl_closedir = vfs_closedir;
215 gl.gl_stat = vfs_stat;
216 gl.gl_lstat = vfs_lstat;
218 switch ((e = glob(p, GLOB_ALTDIRFUNC | flags, NULL, &gl))) {
238 for (i = 0; i < gl.gl_pathc; i++
    [all...]
  /src/sys/compat/linux/arch/i386/
linux_machdep.c 493 struct x86_get_ldt_args gl; local in function:linux_read_ldt
508 gl.start = 0;
509 gl.desc = NULL;
510 gl.num = SCARG(uap, bytecount) / sizeof(union descriptor);
511 error = x86_get_ldt1(l, &gl, ldt_buf);
512 /* NB gl.num might have changed */
514 *retval = gl.num * sizeof(*ldtstore);
516 gl.num * sizeof *ldt_buf);
  /src/lib/libc/regex/
engine.c 212 const sopno gl = g->laststate; local in function:matcher
315 endp = walk(m, start, stop, gf, gl, true);
327 endp = walk(m, m->coldp, stop, gf, gl, false);
349 dp = dissect(m, m->coldp, endp, gf, gl);
359 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0, 0);
371 endp = walk(m, m->coldp, endp-1, gf, gl, false);
382 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0, 0);
  /src/lib/libc/citrus/modules/
citrus_iso2022.c 95 int gl:3, member in struct:__anon85d41a080208
422 s->gl = 0;
586 psenc->gl = 0;
592 psenc->gl = 1;
658 psenc->gl = string[1] - 'n' + 2;
730 ? psenc->gl : psenc->singlegl;
1100 /* invoke the plane onto GL or GR. */
1101 if (psenc->gl == target)
1108 psenc->gl = 0;
1111 psenc->gl = 1
    [all...]
  /src/usr.bin/mail/
complete.c 208 glob_t gl; local in function:globulize
216 (void)memset(&gl, 0, sizeof(gl));
217 if (glob(pattern, flags, NULL, &gl) || gl.gl_pathc == 0) {
219 globfree(&gl);
222 p = estrdup(gl.gl_pathv[0]);
223 globfree(&gl);
  /src/usr.bin/ftp/
util.c 628 glob_t gl; local in function:globulize
636 memset(&gl, 0, sizeof(gl));
637 if (glob(pattern, flags, NULL, &gl) || gl.gl_pathc == 0) {
639 globfree(&gl);
642 p = ftp_strdup(gl.gl_pathv[0]);
643 globfree(&gl);
cmds.c 501 glob_t gl; local in function:mput
523 memset(&gl, 0, sizeof(gl));
525 if (glob(argv[i], flags, NULL, &gl) || gl.gl_pathc == 0) {
527 globfree(&gl);
530 for (cpp = gl.gl_pathv; cpp && *cpp != NULL && connected;
549 globfree(&gl);
  /src/usr.bin/make/
var.c 1058 Var *gl = VarFind(name, SCOPE_GLOBAL, false); local in function:Var_SetWithFlags
1059 if (gl != NULL && strcmp(gl->val.data, val) == 0) {
1065 } else if (gl != NULL && gl->readOnlyLoud)

Completed in 37 milliseconds