Home
last modified time | relevance | path

Searched refs:list (Results 1 – 25 of 314) sorted by last modified time

12345678910>>...13

/PHP-7.4/
H A DNEWS1325 . Fixed bug #71030 (Self-assignment in list() may have inconsistent behavior).
1330 . Implemented FR #76148 (Add array_key_exists() to the list of specially
1395 As a side effect, this allowed passing left hand list() "by reference",
1943 . Fixed bug #78291 (opcache_get_configuration doesn't list all directives).
2469 . Added support for references in list() and array destructuring, per
H A DLICENSE11 notice, this list of conditions and the following disclaimer.
14 notice, this list of conditions and the following disclaimer in
/PHP-7.4/ext/pgsql/
H A Dpgsql.c2372 static char *get_field_name(PGconn *pgsql, Oid oid, HashTable *list) argument
2383 if ((field_type = zend_hash_find_ptr(list, str.s)) != NULL) {
2418 zend_hash_update_mem(list, str.s, (void *) &new_oid_entry, sizeof(zend_resource));
/PHP-7.4/main/streams/
H A Dstreams.c236 zend_llist *list = (zend_llist*)Z_PTR_P(item); in wrapper_list_dtor() local
237 zend_llist_destroy(list); in wrapper_list_dtor()
238 efree(list); in wrapper_list_dtor()
254 zend_llist *list = NULL; in php_stream_wrapper_log_error() local
259 list = zend_hash_str_find_ptr(FG(wrapper_errors), (const char*)&wrapper, sizeof(wrapper)); in php_stream_wrapper_log_error()
262 if (!list) { in php_stream_wrapper_log_error()
265 list = zend_hash_str_update_mem(FG(wrapper_errors), (const char*)&wrapper, in php_stream_wrapper_log_error()
270 zend_llist_add_element(list, &buffer); in php_stream_wrapper_log_error()
/PHP-7.4/ext/openssl/
H A Dconfig0.m414 [whether to use system default cipher list instead of hardcoded value],
16 [OPENSSL: Use system default cipher list instead of hardcoded value])],
38 …AC_DEFINE(USE_OPENSSL_SYSTEM_CIPHERS,1,[ Use system default cipher list instead of hardcoded value…
/PHP-7.4/ext/standard/
H A Darray.c4777 Bucket **lists, *list, **ptrs, *p; local
4894list = (Bucket *) pemalloc((hash->nNumOfElements + 1) * sizeof(Bucket), GC_FLAGS(hash) & IS_ARRAY_…
4895 lists[i] = list;
4896 ptrs[i] = list;
4900 *list++ = *p;
4902 ZVAL_UNDEF(&list->val);
5188 Bucket **lists, *list, **ptrs, *p; local
5306 lists[i] = list;
5307 ptrs[i] = list;
5311 *list++ = *p;
[all …]
/PHP-7.4/ext/intl/locale/
H A Dlocale_methods.c107 static int16_t findOffset(const char* const* list, const char* key) in findOffset() argument
109 const char* const* anchor = list; in findOffset()
110 while (*list != NULL) { in findOffset()
111 if (strcmp(key, *list) == 0) { in findOffset()
112 return (int16_t)(list - anchor); in findOffset()
114 list++; in findOffset()
/PHP-7.4/ext/mbstring/
H A Dmbstring.c716 list = NULL; in php_mb_parse_encoding_list()
744 entry = list; in php_mb_parse_encoding_list()
823 list = NULL; in php_mb_parse_encoding_array()
829 entry = list; in php_mb_parse_encoding_array()
912 if (!list) { in php_mb_zend_encoding_detector()
1929 if (!list) { in PHP_FUNCTION()
1933 efree(list); in PHP_FUNCTION()
3559 list = NULL; in PHP_FUNCTION()
3565 if (list) { in PHP_FUNCTION()
3577 if (list) { in PHP_FUNCTION()
[all …]
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_jit_compile.c3014 while (list) in set_jumps()
3018 SET_LABEL(list->jump, label); in set_jumps()
3019 list = list->next; in set_jumps()
3028 list_item->next = *list; in add_jump()
3030 *list = list_item; in add_jump()
7342 jump_list **list = (cc[0] & XCL_NOT) == 0 ? &found : backtracks; in compile_xclass_matchingpath() local
7422 if (list == backtracks) in compile_xclass_matchingpath()
7522 add_jump(compiler, list, JUMP(SLJIT_NOT_ZERO)); in compile_xclass_matchingpath()
7589 invertcmp = (compares == 0 && list != backtracks); in compile_xclass_matchingpath()
7659 invertcmp = (compares == 0 && list != backtracks); in compile_xclass_matchingpath()
[all …]
/PHP-7.4/ext/fileinfo/
H A Dlibmagic.patch327 /* const char *fn: list of magic files and directories */
/PHP-7.4/Zend/
H A Dzend_execute.c3324 list = ZEND_PROPERTY_INFO_SOURCE_TO_LIST(source_list->list); in zend_ref_add_type_source()
3329 list->num = 1; in zend_ref_add_type_source()
3330 } else if (list->num_allocated == list->num) { in zend_ref_add_type_source()
3331 list->num_allocated = list->num * 2; in zend_ref_add_type_source()
3335 list->ptr[list->num++] = prop; in zend_ref_add_type_source()
3336 source_list->list = ZEND_PROPERTY_INFO_SOURCE_FROM_LIST(list); in zend_ref_add_type_source()
3352 efree(list); in zend_ref_del_type_source()
3359 ptr = list->ptr; in zend_ref_del_type_source()
3367 *ptr = list->ptr[--list->num]; in zend_ref_del_type_source()
3369 if (list->num >= 4 && list->num * 4 == list->num_allocated) { in zend_ref_del_type_source()
[all …]
H A Dzend_compile.c1511 if (list) { in zend_add_to_list()
1512 while (list[n]) { in zend_add_to_list()
1517 list = erealloc(list, sizeof(void*) * (n+2)); in zend_add_to_list()
1519 list[n] = item; in zend_add_to_list()
1520 list[n+1] = NULL; in zend_add_to_list()
1522 *(void**)result = list; in zend_add_to_list()
2628 list->children > 0 && list->child[0] != NULL && list->child[0]->child[1] != NULL; in zend_compile_list_assign()
4573 zend_ast_list *list; in zend_compile_expr_list() local
5541 if (!list->children) { in zend_compile_closure_binding()
7139 if (!list->children) { in zend_try_ct_eval_array()
[all …]
H A Dzend_alloc.c1677 list->ptr = ptr;
1678 list->size = size;
1703 size = list->size;
1707 prev = list;
1708 list = list->next;
1721 list = list->next;
1746 list = list->next;
2105 while (list) {
2123 heap->huge_list = list = list->next;
2246 while (list) {
[all …]
/PHP-7.4/ext/ftp/tests/
H A Dserver.inc40 case 'list':
186 fputs($s, "214 end of list\r\n");
/PHP-7.4/ext/simplexml/
H A Dsimplexml.c961 static inline zend_string *sxe_xmlNodeListGetString(xmlDocPtr doc, xmlNodePtr list, int inLine) /* … in sxe_xmlNodeListGetString() argument
963 xmlChar *tmp = xmlNodeListGetString(doc, list, inLine); in sxe_xmlNodeListGetString()
/PHP-7.4/ext/soap/
H A Dphp_encoding.c2970 smart_str list = {0}; in to_xml_list() local
2976 if (list.s && ZSTR_LEN(list.s) != 0) { in to_xml_list()
2986 smart_str_0(&list); in to_xml_list()
2987 if (list.s) { in to_xml_list()
2988 xmlNodeSetContentLen(ret, BAD_CAST(ZSTR_VAL(list.s)), ZSTR_LEN(list.s)); in to_xml_list()
2992 smart_str_free(&list); in to_xml_list()
2996 smart_str list = {0}; in to_xml_list() local
3018 if (list.s && ZSTR_LEN(list.s) != 0) { in to_xml_list()
3030 smart_str_0(&list); in to_xml_list()
3031 if (list.s) { in to_xml_list()
[all …]
/PHP-7.4/win32/
H A Dsendmail.c337 static char *find_address(char *list, char **state) in find_address() argument
340 char *p = list; in find_address()
342 if (list == NULL) { in find_address()
346 p = list = *state; in find_address()
365 return list; in find_address()
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_prompt.c83 …PHPDBG_COMMAND_D(list, "lists some code", 'l', phpdbg_list_commands,…
1522 PHPDBG_COMMAND(list) /* {{{ */ in PHPDBG_COMMAND() argument
/PHP-7.4/ext/oci8/
H A DLICENSE11 notice, this list of conditions and the following disclaimer.
14 notice, this list of conditions and the following disclaimer in
/PHP-7.4/sapi/fpm/tests/
H A Dresponse.inc290 list ($this->rawHeaders, $this->rawBody) = array_map(
/PHP-7.4/ext/standard/tests/streams/
H A Dbug77069.phpt18 list(, $data, $this->data) = $match;
/PHP-7.4/build/
H A Dphp.m4105 dnl Adds "file" to the list of files generated by AC_OUTPUT. This macro can be
926 dnl "sources" is a list of files relative to the subdir which are used to build
1000 dnl list, so that modules can be init'd in the correct order
1774 dnl list of excluded versions EXCLUDED-VERSION (for example "3.0 3.2").
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_set_charset.phpt98 printf("[016] Cannot get list of character sets\n");
H A Dmysqli_ssl_set.phpt46 'A list of allowable ciphers to use for SSL encryption.')))
H A Dmysqli_stmt_bind_param_many_columns.phpt32 list($old_max_allowed_packet) = $link->query("SELECT @@max_allowed_packet")->fetch_row();

Completed in 190 milliseconds

12345678910>>...13