Lines Matching refs:Z_ARRVAL_P

87 	cnt = zend_hash_num_elements(Z_ARRVAL_P(environment));  in _php_array_to_envp()
101 ZEND_HASH_FOREACH_STR_KEY_VAL(Z_ARRVAL_P(environment), key, element) { in _php_array_to_envp()
533 uint32_t num_elems = zend_hash_num_elements(Z_ARRVAL_P(command_zv)); in PHP_FUNCTION()
541 command = create_win_command_from_args(Z_ARRVAL_P(command_zv)); in PHP_FUNCTION()
548 ZEND_HASH_FOREACH_VAL(Z_ARRVAL_P(command_zv), arg_zv) { in PHP_FUNCTION()
574 …zval *item = zend_hash_str_find(Z_ARRVAL_P(other_options), "suppress_errors", sizeof("suppress_err… in PHP_FUNCTION()
582 item = zend_hash_str_find(Z_ARRVAL_P(other_options), "bypass_shell", sizeof("bypass_shell") - 1); in PHP_FUNCTION()
589 …item = zend_hash_str_find(Z_ARRVAL_P(other_options), "blocking_pipes", sizeof("blocking_pipes") - … in PHP_FUNCTION()
596 …item = zend_hash_str_find(Z_ARRVAL_P(other_options), "create_process_group", sizeof("create_proces… in PHP_FUNCTION()
603 …item = zend_hash_str_find(Z_ARRVAL_P(other_options), "create_new_console", sizeof("create_new_cons… in PHP_FUNCTION()
616 ndescriptors_array = zend_hash_num_elements(Z_ARRVAL_P(descriptorspec)); in PHP_FUNCTION()
631 ZEND_HASH_FOREACH_KEY_VAL(Z_ARRVAL_P(descriptorspec), nindex, str_index, descitem) { in PHP_FUNCTION()
672 if ((ztype = zend_hash_index_find(Z_ARRVAL_P(descitem), 0)) != NULL) { in PHP_FUNCTION()
685 if ((zmode = zend_hash_index_find(Z_ARRVAL_P(descitem), 1)) != NULL) { in PHP_FUNCTION()
726 if ((zfile = zend_hash_index_find(Z_ARRVAL_P(descitem), 1)) != NULL) { in PHP_FUNCTION()
735 if ((zmode = zend_hash_index_find(Z_ARRVAL_P(descitem), 2)) != NULL) { in PHP_FUNCTION()
768 zval *ztarget = zend_hash_index_find_deref(Z_ARRVAL_P(descitem), 1); in PHP_FUNCTION()