| /f-stack/app/nginx-1.16.1/src/stream/ |
| H A D | ngx_stream_script.c | 42 index = val->flushes; in ngx_stream_script_flush_complex_value() 144 ccv->complex_value->flushes = NULL; in ngx_stream_compile_complex_value() 179 pf = &flushes; in ngx_stream_compile_complex_value() 187 sc.flushes = &pf; in ngx_stream_compile_complex_value() 200 if (flushes.nelts) { in ngx_stream_compile_complex_value() 201 ccv->complex_value->flushes = flushes.elts; in ngx_stream_compile_complex_value() 202 ccv->complex_value->flushes[flushes.nelts] = (ngx_uint_t) -1; in ngx_stream_compile_complex_value() 463 if (sc->flushes && *sc->flushes == NULL) { in ngx_stream_script_init_arrays() 466 if (*sc->flushes == NULL) { in ngx_stream_script_init_arrays() 665 if (sc->flushes) { in ngx_stream_script_add_var_code() [all …]
|
| H A D | ngx_stream_script.h | 36 ngx_array_t **flushes; member 56 ngx_uint_t *flushes; member
|
| H A D | ngx_stream_log_module.c | 36 ngx_array_t *flushes; member 139 ngx_array_t *flushes, ngx_array_t *ops, ngx_array_t *args, ngx_uint_t s); 247 log[l].format->flushes); in ngx_stream_log_handler() 1295 fmt->flushes = ngx_array_create(cf->pool, 4, sizeof(ngx_int_t)); in ngx_stream_log_set_format() 1296 if (fmt->flushes == NULL) { in ngx_stream_log_set_format() 1305 return ngx_stream_log_compile_format(cf, fmt->flushes, fmt->ops, in ngx_stream_log_set_format() 1311 ngx_stream_log_compile_format(ngx_conf_t *cf, ngx_array_t *flushes, in ngx_stream_log_compile_format() argument 1412 if (flushes) { in ngx_stream_log_compile_format() 1414 flush = ngx_array_push(flushes); in ngx_stream_log_compile_format()
|
| /f-stack/app/nginx-1.16.1/src/http/ |
| H A D | ngx_http_script.c | 41 index = val->flushes; in ngx_http_script_flush_complex_value() 143 ccv->complex_value->flushes = NULL; in ngx_http_compile_complex_value() 178 pf = &flushes; in ngx_http_compile_complex_value() 186 sc.flushes = &pf; in ngx_http_compile_complex_value() 199 if (flushes.nelts) { in ngx_http_compile_complex_value() 200 ccv->complex_value->flushes = flushes.elts; in ngx_http_compile_complex_value() 201 ccv->complex_value->flushes[flushes.nelts] = (ngx_uint_t) -1; in ngx_http_compile_complex_value() 587 if (sc->flushes && *sc->flushes == NULL) { in ngx_http_script_init_arrays() 590 if (*sc->flushes == NULL) { in ngx_http_script_init_arrays() 801 if (sc->flushes) { in ngx_http_script_add_var_code() [all …]
|
| H A D | ngx_http_script.h | 43 ngx_array_t **flushes; member 68 ngx_uint_t *flushes; member
|
| /f-stack/app/nginx-1.16.1/src/http/modules/ |
| H A D | ngx_http_log_module.c | 36 ngx_array_t *flushes; member 159 ngx_array_t *flushes, ngx_array_t *ops, ngx_array_t *args, ngx_uint_t s); 299 ngx_http_script_flush_no_cacheable_variables(r, log[l].format->flushes); in ngx_http_log_handler() 1150 fmt->flushes = NULL; in ngx_http_log_create_main_conf() 1566 fmt->flushes = ngx_array_create(cf->pool, 4, sizeof(ngx_int_t)); in ngx_http_log_set_format() 1567 if (fmt->flushes == NULL) { in ngx_http_log_set_format() 1576 return ngx_http_log_compile_format(cf, fmt->flushes, fmt->ops, cf->args, 2); in ngx_http_log_set_format() 1581 ngx_http_log_compile_format(ngx_conf_t *cf, ngx_array_t *flushes, in ngx_http_log_compile_format() argument 1697 if (flushes) { in ngx_http_log_compile_format() 1699 flush = ngx_array_push(flushes); in ngx_http_log_compile_format()
|
| H A D | ngx_http_scgi_module.c | 20 ngx_array_t *flushes; member 673 ngx_http_script_flush_no_cacheable_variables(r, params->flushes); in ngx_http_scgi_create_request() 1773 sc.flushes = ¶ms->flushes; in ngx_http_scgi_init_params()
|
| H A D | ngx_http_uwsgi_module.c | 21 ngx_array_t *flushes; member 861 ngx_http_script_flush_no_cacheable_variables(r, params->flushes); in ngx_http_uwsgi_create_request() 2042 sc.flushes = ¶ms->flushes; in ngx_http_uwsgi_init_params()
|
| H A D | ngx_http_fastcgi_module.c | 19 ngx_array_t *flushes; member 868 ngx_http_script_flush_no_cacheable_variables(r, params->flushes); in ngx_http_fastcgi_create_request() 3313 sc.flushes = ¶ms->flushes; in ngx_http_fastcgi_init_params()
|
| H A D | ngx_http_proxy_module.c | 48 ngx_array_t *flushes; member 1258 ngx_http_script_flush_no_cacheable_variables(r, headers->flushes); in ngx_http_proxy_create_request() 3375 sc.flushes = &conf->body_flushes; in ngx_http_proxy_merge_loc_conf() 3560 sc.flushes = &headers->flushes; in ngx_http_proxy_init_headers()
|
| H A D | ngx_http_grpc_module.c | 14 ngx_array_t *flushes; member 649 ngx_http_script_flush_no_cacheable_variables(r, glcf->headers.flushes); in ngx_http_grpc_create_request() 4492 sc.flushes = &headers->flushes; in ngx_http_grpc_init_headers()
|
| /f-stack/freebsd/contrib/device-tree/Bindings/pmem/ |
| H A D | pmem-region.txt | 37 may skip the cache flushes required to ensure data is made
|
| /f-stack/freebsd/contrib/zlib/ |
| H A D | ChangeLog | 206 - Permit stronger flushes after Z_BLOCK flushes 207 - Avoid extraneous empty blocks when doing empty flushes
|
| /f-stack/tools/libxo/doc/ |
| H A D | api.rst | 578 `xo_finish` or `xo_finish_h` is required. This flushes any buffered
|
| /f-stack/dpdk/doc/guides/testpmd_app_ug/ |
| H A D | testpmd_funcs.rst | 1300 engine flushes the GROed packets from the tables every ``cycles`` GRO
|