Searched refs:zend_hash_index_exists (Results 1 – 11 of 11) sorted by relevance
/PHP-8.3/sapi/phpdbg/ |
H A D | phpdbg_bp.c | 304 if (!zend_hash_index_exists(broken, line_num)) { in phpdbg_set_breakpoint_file() 481 if (!zend_hash_index_exists(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE], opline)) { in phpdbg_set_breakpoint_opline() 676 if (zend_hash_index_exists(method_table, opline)) { in phpdbg_set_breakpoint_method_opline() 723 if (zend_hash_index_exists(func_table, opline)) { in phpdbg_set_breakpoint_function_opline() 769 if (zend_hash_index_exists(file_table, opline)) { in phpdbg_set_breakpoint_file_opline() 789 if (zend_hash_index_exists(&PHPDBG_G(bp)[PHPDBG_BREAK_OPCODE], hash)) { in phpdbg_set_breakpoint_opcode() 808 if (!zend_hash_index_exists(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE], (zend_ulong) opline)) { in phpdbg_set_breakpoint_opline_ex() 907 if (!zend_hash_index_exists(&PHPDBG_G(bp)[PHPDBG_BREAK_COND], expr_hash)) { in phpdbg_set_breakpoint_expression() 925 if (!zend_hash_index_exists(&PHPDBG_G(bp)[PHPDBG_BREAK_COND], hash)) { in phpdbg_set_breakpoint_at()
|
H A D | phpdbg_prompt.c | 672 …if (zend_hash_index_exists(&PHPDBG_G(seek), (zend_ulong) phpdbg_user_execute_data(EG(current_execu… in PHPDBG_COMMAND() 689 …if (zend_hash_index_exists(&PHPDBG_G(seek), (zend_ulong) phpdbg_user_execute_data(EG(current_execu… in PHPDBG_COMMAND() 1737 #define INDEX_EXISTS_CHECK (zend_hash_index_exists(&PHPDBG_G(seek), address) || (exception && phpdb… in phpdbg_execute_ex()
|
/PHP-8.3/ext/com_dotnet/ |
H A D | com_wrapper.c | 399 while(!zend_hash_index_exists(disp->dispid_to_name, next)) in disp_getnextdispid() 402 if (zend_hash_index_exists(disp->dispid_to_name, next)) { in disp_getnextdispid()
|
/PHP-8.3/Zend/ |
H A D | zend_hash.h | 240 static zend_always_inline bool zend_hash_index_exists(const HashTable *ht, zend_ulong h) in zend_hash_index_exists() function 558 return zend_hash_index_exists(ht, idx); in zend_symtable_exists() 570 return zend_hash_index_exists(ht, idx); in zend_symtable_exists_ind() 642 return zend_hash_index_exists(ht, idx); in zend_symtable_str_exists()
|
H A D | zend_weakrefs.c | 420 if (!zend_hash_index_exists(&wm->ht, zend_object_to_weakref_key(obj_addr))) { in zend_weakmap_unset_dimension()
|
H A D | zend_execute.c | 3028 return zend_hash_index_exists(ht, hval); in zend_array_key_exists_fast()
|
/PHP-8.3/ext/pdo_pgsql/ |
H A D | pgsql_statement.c | 302 if (!zend_hash_index_exists(stmt->bound_param_map, param->paramno)) { in pgsql_stmt_param_hook()
|
/PHP-8.3/ext/soap/ |
H A D | php_http.c | 1035 if (!zend_hash_index_exists(Z_ARRVAL(zcookie), 1)) { in make_http_soap_request() 1042 if (!zend_hash_index_exists(Z_ARRVAL(zcookie), 2)) { in make_http_soap_request()
|
H A D | soap.c | 651 if (zend_hash_index_exists(&SOAP_GLOBAL(defEncIndex), type)) { in PHP_METHOD()
|
/PHP-8.3/ext/standard/ |
H A D | array.c | 6655 RETVAL_BOOL(zend_hash_index_exists(ht, Z_LVAL_P(key))); 6661 RETVAL_BOOL(zend_hash_index_exists(ht, zend_dval_to_lval_safe(Z_DVAL_P(key)))); 6664 RETVAL_BOOL(zend_hash_index_exists(ht, 0)); 6667 RETVAL_BOOL(zend_hash_index_exists(ht, 1)); 6671 RETVAL_BOOL(zend_hash_index_exists(ht, Z_RES_HANDLE_P(key)));
|
/PHP-8.3/Zend/Optimizer/ |
H A D | sccp.c | 715 res = zend_hash_index_exists(ht, Z_LVAL_P(op1)); in ct_eval_in_array()
|
Completed in 133 milliseconds