Lines Matching refs:tmp

82 		zval *tmp;  in PHP_FUNCTION()  local
86 if (NULL != (tmp = zend_hash_str_find(Z_ARRVAL_P(server_params), in PHP_FUNCTION()
88 convert_to_string_ex(tmp); in PHP_FUNCTION()
89 server_name = Z_STRVAL_P(tmp); in PHP_FUNCTION()
90 server_name_len = Z_STRLEN_P(tmp); in PHP_FUNCTION()
94 if (NULL != (tmp = zend_hash_str_find(Z_ARRVAL_P(server_params), in PHP_FUNCTION()
96 convert_to_string_ex(tmp); in PHP_FUNCTION()
97 user_name = Z_STRVAL_P(tmp); in PHP_FUNCTION()
98 user_name_len = Z_STRLEN_P(tmp); in PHP_FUNCTION()
101 if (NULL != (tmp = zend_hash_str_find(Z_ARRVAL_P(server_params), in PHP_FUNCTION()
103 convert_to_string_ex(tmp); in PHP_FUNCTION()
104 password = Z_STRVAL_P(tmp); in PHP_FUNCTION()
105 password_len = Z_STRLEN_P(tmp); in PHP_FUNCTION()
108 if (NULL != (tmp = zend_hash_str_find(Z_ARRVAL_P(server_params), in PHP_FUNCTION()
110 convert_to_string_ex(tmp); in PHP_FUNCTION()
111 domain_name = Z_STRVAL_P(tmp); in PHP_FUNCTION()
112 domain_name_len = Z_STRLEN_P(tmp); in PHP_FUNCTION()
115 if (NULL != (tmp = zend_hash_str_find(Z_ARRVAL_P(server_params), in PHP_FUNCTION()
117 ctx = (CLSCTX)zval_get_long(tmp); in PHP_FUNCTION()
426 zval *tmp; in php_com_get_id_of_name() local
432 …if (obj->id_of_name_cache && NULL != (tmp = zend_hash_str_find(obj->id_of_name_cache, name, namele… in php_com_get_id_of_name()
433 *dispid = (DISPID)Z_LVAL_P(tmp); in php_com_get_id_of_name()
456 zval tmp; in php_com_get_id_of_name() local
463 ZVAL_LONG(&tmp, *dispid); in php_com_get_id_of_name()
464 zend_hash_str_update(obj->id_of_name_cache, name, namelen, &tmp); in php_com_get_id_of_name()
718 zval *tmp; in PHP_FUNCTION() local
720 if ((tmp = zend_hash_index_find(Z_ARRVAL_P(sink), 0)) != NULL && Z_TYPE_P(tmp) == IS_STRING) in PHP_FUNCTION()
721 typelibname = Z_STRVAL_P(tmp); in PHP_FUNCTION()
722 if ((tmp = zend_hash_index_find(Z_ARRVAL_P(sink), 1)) != NULL && Z_TYPE_P(tmp) == IS_STRING) in PHP_FUNCTION()
723 dispname = Z_STRVAL_P(tmp); in PHP_FUNCTION()