Home
last modified time | relevance | path

Searched refs:id (Results 1 – 25 of 794) sorted by last modified time

12345678910>>...32

/php-src/
H A DNEWS142 . Updated pcntl_get_signal_handler signal id upper limit to be
H A DUPGRADING496 . Added pcntl_getcpu to get the cpu id from where the current process runs.
/php-src/main/
H A Dfastcgi.c210 int id; member
875 req->id = -1; in fcgi_init_request()
1076 req->id = (hdr.requestIdB1 << 8) + hdr.requestIdB0; in fcgi_read_request()
1505 …req->out_pos += fcgi_make_header(req->out_hdr, (fcgi_request_type)req->out_hdr->type, req->id, len…
1521 fcgi_make_header(&rec->hdr, FCGI_END_REQUEST, req->id, sizeof(fcgi_end_request));
1614 fcgi_make_header(req->out_hdr, type, req->id, 0xfff8);
1630 fcgi_make_header(req->out_hdr, type, req->id, (len - pos) - rest);
/php-src/ext/dom/
H A Dphp_dom.h188 xmlDocPtr dom_document_parser(zval *id, dom_load_mode mode, const char *source, size_t source_len, …
H A Dnode.c1438 zval *id; in PHP_METHOD() local
1503 zval *id; in PHP_METHOD() local
1558 zval *id; in dom_node_is_same_node() local
1821 zval *id; in dom_node_lookup_prefix() local
1962 zval *id; in PHP_METHOD() local
1994 zval *id; in PHP_METHOD() local
2020 zval *id; in PHP_METHOD() local
2082 zval *id; in dom_canonicalization() local
2263 zval *id; in dom_node_get_node_path() local
2303 zval *id; in PHP_METHOD() local
[all …]
H A Dnodelist.c240 zval *id = ZEND_THIS; in PHP_METHOD() local
241 dom_object *intern = Z_DOMOBJ_P(id); in PHP_METHOD()
H A Ddocument.c501 zval *id; in PHP_METHOD() local
555 zval *id; in PHP_METHOD() local
585 zval *id; in PHP_METHOD() local
677 zval *id; in PHP_METHOD() local
718 zval *id; in PHP_METHOD() local
936 zval *id; in PHP_METHOD() local
1016 zval *id; in PHP_METHOD() local
1203 zval *id; in PHP_METHOD() local
1530 zval *id; in PHP_METHOD() local
1736 zval *id; in PHP_METHOD() local
[all …]
/php-src/sapi/phpdbg/
H A Dphpdbg_watch.c765 if (zend_hash_index_del(&PHPDBG_G(watch_elements), child->id) == SUCCESS) {
854 zend_hash_index_del(&PHPDBG_G(watch_elements), element->id);
1316 element->id = PHPDBG_G(watch_elements).nNextFreeElement - 1;
1318 …lement->flags & PHPDBG_WATCH_RECURSIVE_ROOT) ? " recursive" : "", element->id, (int) ZSTR_LEN(elem…
/php-src/ext/filter/
H A Dfilter.c33 int id; member
105 IF_G(default_filter) = filter_list[i].id; in ZEND_GET_MODULE()
208 static filter_list_entry php_find_filter(zend_long id) /* {{{ */ in php_find_filter() argument
213 if (filter_list[i].id == id) { in php_find_filter()
219 if (filter_list[i].id == FILTER_DEFAULT) { in php_find_filter()
247 if (!filter_func.id) { in php_zval_filter()
754 RETURN_LONG(filter_list[i].id); in PHP_FUNCTION()
/php-src/Zend/
H A Dzend_API.h1541 #define Z_EXPECTED_TYPE_ENUM(id, str) id, argument
1542 #define Z_EXPECTED_TYPE_STR(id, str) str, argument
H A Dzend_builtin_functions.c1492 int id = zend_fetch_list_dtor_id(ZSTR_VAL(type)); in ZEND_FUNCTION() local
1494 if (id <= 0) { in ZEND_FUNCTION()
1501 if (!key && Z_RES_TYPE_P(val) == id) { in ZEND_FUNCTION()
/php-src/ext/pcntl/
H A Dpcntl.c226 pid_t id; in PHP_FUNCTION() local
230 id = fork(); in PHP_FUNCTION()
231 if (id == -1) { in PHP_FUNCTION()
253 } else if (id == 0) { in PHP_FUNCTION()
257 RETURN_LONG((zend_long) id); in PHP_FUNCTION()
/php-src/ext/openssl/
H A Dopenssl.c2172 int id, purpset; in PHP_FUNCTION() local
2180 id = X509_PURPOSE_get_id(purp); in PHP_FUNCTION()
2182 purpset = X509_check_purpose(cert, id, 0); in PHP_FUNCTION()
2185 purpset = X509_check_purpose(cert, id, 1); in PHP_FUNCTION()
2193 add_index_zval(&subitem, id, &subsub); in PHP_FUNCTION()
/php-src/ext/dom/lexbor/lexbor/selectors/
H A Dselectors.h74 uintptr_t id; member
H A Dselectors.c1157 if (entry->id == 0) { in lxb_selectors_match_element()
1164 entry->id = tag_id; in lxb_selectors_match_element()
1167 return node->local_name == entry->id; in lxb_selectors_match_element()
1262 if (entry->id == 0) { in lxb_selectors_match_attribute()
1269 entry->id = attr_data->attr_id; in lxb_selectors_match_attribute()
1272 dom_attr = lxb_dom_element_attr_by_id(element, entry->id); in lxb_selectors_match_attribute()
/php-src/ext/dom/lexbor/lexbor/html/tree/
H A Derror.c12 lxb_html_token_t *token, lxb_html_tree_error_id_t id) in lxb_html_tree_error_add() argument
23 entry->id = id; in lxb_html_tree_error_add()
H A Derror.h99 lxb_html_tree_error_id_t id; member
109 lxb_html_token_t *token, lxb_html_tree_error_id_t id);
/php-src/ext/dom/lexbor/lexbor/html/
H A Dtree.c238 lxb_html_tree_error_id_t id) in lxb_html_tree_parse_error() argument
240 lxb_html_tree_error_add(tree->parse_errors, token, id); in lxb_html_tree_parse_error()
H A Dtree.h104 lxb_html_tree_error_id_t id);
/php-src/ext/dom/lexbor/lexbor/html/tokenizer/
H A Derror.h125 lxb_html_tokenizer_error_id_t id; member
133 lxb_html_tokenizer_error_id_t id);
H A Derror.c13 lxb_html_tokenizer_error_id_t id) in lxb_html_tokenizer_error_add() argument
24 entry->id = id; in lxb_html_tokenizer_error_add()
/php-src/ext/dom/lexbor/lexbor/html/interfaces/
H A Delement.h57 lxb_html_element_style_by_id(lxb_html_element_t *element, uintptr_t id);
60 lxb_html_element_style_node_by_id(lxb_html_element_t *element, uintptr_t id);
67 lxb_html_element_css_property_by_id(lxb_html_element_t *element, uintptr_t id);
89 lxb_html_element_style_remove_by_id(lxb_html_element_t *element, uintptr_t id);
H A Ddocument.c40 uintptr_t id; member
385 return (entry != NULL) ? entry->id : 0; in lxb_html_document_css_customs_find_id()
404 entry->id = document->css.customs_id++; in lxb_html_document_css_customs_insert()
418 return entry->id; in lxb_html_document_css_customs_id()
426 return entry->id; in lxb_html_document_css_customs_id()
H A Delement.c108 uintptr_t id; in lxb_html_element_style_by_name()
114 if (id == LXB_CSS_PROPERTY__UNDEF) { in lxb_html_element_style_by_name()
156 uintptr_t id; in lxb_html_element_style_node_by_name()
161 if (id == LXB_CSS_PROPERTY__UNDEF) { in lxb_html_element_style_node_by_name()
180 return lxb_css_property_initial_by_id(id); in lxb_html_element_css_property_by_id()
267 uintptr_t id; in lxb_html_element_style_append() local
276 id = declr->type; in lxb_html_element_style_append()
280 if (id == LXB_CSS_PROPERTY__CUSTOM) { in lxb_html_element_style_append()
285 if (id == 0) { in lxb_html_element_style_append()
414 uintptr_t id; in lxb_html_element_style_remove_by_name()
[all …]
/php-src/ext/dom/lexbor/lexbor/css/syntax/tokenizer/
H A Derror.h42 lxb_css_syntax_tokenizer_error_id_t id; member
50 lxb_css_syntax_tokenizer_error_id_t id);

Completed in 172 milliseconds

12345678910>>...32