Home
last modified time | relevance | path

Searched refs:item (Results 1 – 16 of 16) sorted by relevance

/unit/src/
H A Dnxt_vector.c77 void *item, *start, *old; in nxt_vector_add() local
119 return item; in nxt_vector_add()
127 void *item; in nxt_vector_zero_add() local
129 item = nxt_vector_add(vector, proto, pool); in nxt_vector_zero_add()
131 if (nxt_fast_path(item != NULL)) { in nxt_vector_zero_add()
132 nxt_memzero(item, vector->item_size); in nxt_vector_zero_add()
135 return item; in nxt_vector_zero_add()
140 nxt_vector_remove(nxt_vector_t *vector, void *item) in nxt_vector_remove() argument
149 if (item != last) { in nxt_vector_remove()
150 next = nxt_pointer_to(item, item_size); in nxt_vector_remove()
[all …]
H A Dnxt_openssl.c933 item->name = domain;
969 item = data;
984 str = item->name;
987 item->name.start++;
988 item->name.length--;
990 if (item->name.length == 0 || item->name.start[0] != '.') {
999 lhq.key = item->name;
1000 lhq.value = item;
1003 lhq.key_hash = nxt_murmur_hash2(item->name.start, item->name.length);
1129 item = lhq.value;
[all …]
H A Dnxt_script.c167 nxt_script_item_t *item; in nxt_script_info_init() local
169 item = scripts->elts; in nxt_script_info_init()
172 script = nxt_script_get(task, &item->name, item->fd); in nxt_script_info_init()
182 item++; in nxt_script_info_init()
355 nxt_script_item_t *item; in nxt_script_store_load() local
395 item = nxt_array_add(scripts); in nxt_script_store_load()
400 item->fd = -1; in nxt_script_store_load()
431 item->fd = file.fd; in nxt_script_store_load()
466 nxt_script_item_t *item; in nxt_script_store_release() local
468 item = scripts->elts; in nxt_script_store_release()
[all …]
H A Dnxt_vector.h41 NXT_EXPORT void nxt_vector_remove(nxt_vector_t *vector, void *item);
H A Dnxt_cert.c825 nxt_cert_item_t *item; in nxt_cert_store_load() local
864 item = nxt_array_add(certs); in nxt_cert_store_load()
865 if (nxt_slow_path(item == NULL)) { in nxt_cert_store_load()
869 item->fd = -1; in nxt_cert_store_load()
901 item->fd = file.fd; in nxt_cert_store_load()
903 if (nxt_slow_path(nxt_str_dup(mp, &item->name, &name) == NULL)) { in nxt_cert_store_load()
/unit/src/test/
H A Dnxt_rbtree_test.c32 nxt_rbtree_test_t *items, *item; in nxt_rbtree_test() local
86 item = (nxt_rbtree_test_t *) node; in nxt_rbtree_test()
88 if (keys[i] != item->key) { in nxt_rbtree_test()
90 i, keys[i], item->key); in nxt_rbtree_test()
/unit/test/
H A Dconftest.py185 def pytest_runtest_makereport(item): argument
193 setattr(item, f'rep_{rep.when}', rep)
434 for item in Path(temporary_dir).iterdir():
435 if item.name not in [
442 public_dir(item)
444 if item.is_file() or stat.S_ISSOCK(item.stat().st_mode):
445 item.unlink()
449 shutil.rmtree(item)
/unit/src/wasm/
H A Dnxt_rt_wasmtime.c246 wasmtime_extern_t item; in nxt_wasmtime_get_function_exports() local
254 strlen(ctx->fh[i].func_name), &item); in nxt_wasmtime_get_function_exports()
261 ctx->fh[i].func = item.of.func; in nxt_wasmtime_get_function_exports()
306 wasmtime_extern_t item; in nxt_wasmtime_init_memory() local
322 strlen("memory"), &item); in nxt_wasmtime_init_memory()
327 rt_ctx->memory = item.of.memory; in nxt_wasmtime_init_memory()
/unit/src/java/nginx/unit/
H A DTaglib.java16 Node node = nodes.item(i); in Taglib()
H A DContext.java1159 Node node = files.item(j); in processWebXml()
1186 Element filter_el = (Element) filters.item(i); in processWebXml()
1199 Node child_node = child_nodes.item(j); in processWebXml()
1253 Node child_node = dispatchers.item(j); in processWebXml()
1265 Node child_node = child_nodes.item(j); in processWebXml()
1283 Element servlet_el = (Element) servlets.item(i); in processWebXml()
1296 Node child_node = child_nodes.item(j); in processWebXml()
1361 Node child_node = child_nodes.item(j); in processWebXml()
1396 Node child_node = child_nodes.item(j); in processWebXml()
1439 Node jsp_node = jsp_nodes.item(j); in processWebXml()
[all …]
H A DJspPropertyGroup.java31 Node node = nodes.item(i); in JspPropertyGroup()
/unit/src/ruby/
H A Dnxt_ruby.c902 VALUE item; in nxt_ruby_hash_info() local
906 item = rb_ary_entry(r_value, i); in nxt_ruby_hash_info()
907 if (TYPE(item) != T_STRING) { in nxt_ruby_hash_info()
914 len += RSTRING_LEN(item) + 2; /* +2 for '; ' */ in nxt_ruby_hash_info()
978 VALUE item; in nxt_ruby_hash_add() local
982 item = rb_ary_entry(r_value, i); in nxt_ruby_hash_add()
984 len += RSTRING_LEN(item) + 2; /* +2 for '; ' */ in nxt_ruby_hash_add()
995 item = rb_ary_entry(r_value, i); in nxt_ruby_hash_add()
997 p = nxt_cpymem(p, RSTRING_PTR(item), RSTRING_LEN(item)); in nxt_ruby_hash_add()
/unit/src/python/
H A Dnxt_python_wsgi.c311 PyObject *environ, *args, *response, *iterator, *item; in nxt_python_request_handler() local
384 item = PyIter_Next(iterator); in nxt_python_request_handler()
386 if (item == NULL) { in nxt_python_request_handler()
398 if (nxt_fast_path(PyBytes_Check(item))) { in nxt_python_request_handler()
399 rc = nxt_python_write(pctx, item); in nxt_python_request_handler()
407 Py_DECREF(item); in nxt_python_request_handler()
/unit/docs/
H A Dunit-openapi.yaml1794 summary: "Add a new tickets array item in a listener"
1903 summary: "Retrieve a ticket array item in a listener"
1974 summary: "Delete a ticket array item in a listener"
2129 string array item"
2165 summary: "Update a certificate array item in a listener"
2204 summary: "Delete a certificate array item in a listener"
2603 summary: "Add a new source array item in a listener"
2701 string array item"
2705 summary: "Retrieve a source array item in a listener"
2737 summary: "Update a source array item in a listener"
[all …]
/unit/pkg/deb/debian.module/
H A Dcopyright.unit-jsc-common811 The Covered Software is a "commercial item," as that term is
/unit/pkg/rpm/rpmbuild/SOURCES/
H A DCOPYRIGHT.unit-jsc-common811 The Covered Software is a "commercial item," as that term is