Home
last modified time | relevance | path

Searched refs:tmp_len (Results 1 – 3 of 3) sorted by relevance

/f-stack/dpdk/lib/librte_cmdline/
H A Dcmdline_parse.c316 int tmp_len = -1; in cmdline_complete() local
381 tmp_len = strnlen(tmpbuf, sizeof(tmpbuf)); in cmdline_complete()
382 if (tmp_len < CMDLINE_BUFFER_SIZE - 1) { in cmdline_complete()
383 tmpbuf[tmp_len] = ' '; in cmdline_complete()
384 tmpbuf[tmp_len+1] = 0; in cmdline_complete()
492 tmp_len = strnlen(tmpbuf, sizeof(tmpbuf)); in cmdline_complete()
493 if (tmp_len < CMDLINE_BUFFER_SIZE - 1) { in cmdline_complete()
494 tmpbuf[tmp_len] = ' '; in cmdline_complete()
495 tmpbuf[tmp_len + 1] = 0; in cmdline_complete()
/f-stack/app/nginx-1.16.1/src/http/v2/
H A Dngx_http_v2_filter_module.c137 size_t len, tmp_len; in ngx_http_v2_header_filter() local
379 tmp_len = len; in ngx_http_v2_header_filter()
428 if (header[i].key.len > tmp_len) { in ngx_http_v2_header_filter()
429 tmp_len = header[i].key.len; in ngx_http_v2_header_filter()
433 tmp_len = header[i].value.len; in ngx_http_v2_header_filter()
437 tmp = ngx_palloc(r->pool, tmp_len); in ngx_http_v2_header_filter()
1306 size_t len, tmp_len; in ngx_http_v2_create_trailers_frame() local
1314 tmp_len = 0; in ngx_http_v2_create_trailers_frame()
1352 if (header[i].key.len > tmp_len) { in ngx_http_v2_create_trailers_frame()
1353 tmp_len = header[i].key.len; in ngx_http_v2_create_trailers_frame()
[all …]
/f-stack/app/nginx-1.16.1/src/http/modules/
H A Dngx_http_grpc_module.c608 tmp_len = 0; in ngx_http_grpc_create_request()
612 tmp_len = r->method_name.len; in ngx_http_grpc_create_request()
633 if (tmp_len < uri_len) { in ngx_http_grpc_create_request()
634 tmp_len = uri_len; in ngx_http_grpc_create_request()
643 tmp_len = glcf->host.len; in ngx_http_grpc_create_request()
673 if (tmp_len < key_len) { in ngx_http_grpc_create_request()
674 tmp_len = key_len; in ngx_http_grpc_create_request()
677 if (tmp_len < val_len) { in ngx_http_grpc_create_request()
678 tmp_len = val_len; in ngx_http_grpc_create_request()
741 key_tmp = tmp + tmp_len; in ngx_http_grpc_create_request()
[all …]