Home
last modified time | relevance | path

Searched refs:gl (Results 1 – 7 of 7) sorted by relevance

/f-stack/app/nginx-1.16.1/src/os/unix/
H A Dngx_files.c705 ngx_open_glob(ngx_glob_t *gl) in ngx_open_glob() argument
709 n = glob((char *) gl->pattern, 0, NULL, &gl->pglob); in ngx_open_glob()
717 if (n == GLOB_NOMATCH && gl->test) { in ngx_open_glob()
733 count = (size_t) gl->pglob.gl_pathc; in ngx_read_glob()
735 count = (size_t) gl->pglob.gl_matchc; in ngx_read_glob()
738 if (gl->n < count) { in ngx_read_glob()
740 name->len = (size_t) ngx_strlen(gl->pglob.gl_pathv[gl->n]); in ngx_read_glob()
741 name->data = (u_char *) gl->pglob.gl_pathv[gl->n]; in ngx_read_glob()
742 gl->n++; in ngx_read_glob()
752 ngx_close_glob(ngx_glob_t *gl) in ngx_close_glob() argument
[all …]
H A Dngx_files.h286 ngx_int_t ngx_open_glob(ngx_glob_t *gl);
288 ngx_int_t ngx_read_glob(ngx_glob_t *gl, ngx_str_t *name);
289 void ngx_close_glob(ngx_glob_t *gl);
/f-stack/app/nginx-1.16.1/src/core/
H A Dngx_conf_file.c826 ngx_glob_t gl; in ngx_conf_include() local
844 ngx_memzero(&gl, sizeof(ngx_glob_t)); in ngx_conf_include()
846 gl.pattern = file.data; in ngx_conf_include()
847 gl.log = cf->log; in ngx_conf_include()
848 gl.test = 1; in ngx_conf_include()
850 if (ngx_open_glob(&gl) != NGX_OK) { in ngx_conf_include()
859 n = ngx_read_glob(&gl, &name); in ngx_conf_include()
880 ngx_close_glob(&gl); in ngx_conf_include()
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlparser.c341 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 …]
/f-stack/dpdk/drivers/net/cxgbe/base/
H A Dadapter.h123 const struct pkt_gl *gl);
/f-stack/dpdk/drivers/net/hns3/
H A Dhns3_ethdev.c2217 uint16_t gl; in hns3_bind_ring_with_vector() local
2224 gl = HNS3_RING_GL_RX; in hns3_bind_ring_with_vector()
2226 gl = HNS3_RING_GL_TX; in hns3_bind_ring_with_vector()
2234 gl); in hns3_bind_ring_with_vector()
/f-stack/dpdk/drivers/net/cxgbe/
H A Dcxgbe_main.c137 __rte_unused const struct pkt_gl *gl) in fwevtq_handler() argument