Lines Matching refs:tmp

84 		zval *tmp;  in PHP_FUNCTION()  local
88 if (NULL != (tmp = zend_hash_str_find(Z_ARRVAL_P(server_params), in PHP_FUNCTION()
90 convert_to_string_ex(tmp); in PHP_FUNCTION()
91 server_name = Z_STRVAL_P(tmp); in PHP_FUNCTION()
92 server_name_len = Z_STRLEN_P(tmp); in PHP_FUNCTION()
96 if (NULL != (tmp = zend_hash_str_find(Z_ARRVAL_P(server_params), in PHP_FUNCTION()
98 convert_to_string_ex(tmp); in PHP_FUNCTION()
99 user_name = Z_STRVAL_P(tmp); in PHP_FUNCTION()
100 user_name_len = Z_STRLEN_P(tmp); in PHP_FUNCTION()
103 if (NULL != (tmp = zend_hash_str_find(Z_ARRVAL_P(server_params), in PHP_FUNCTION()
105 convert_to_string_ex(tmp); in PHP_FUNCTION()
106 password = Z_STRVAL_P(tmp); in PHP_FUNCTION()
107 password_len = Z_STRLEN_P(tmp); in PHP_FUNCTION()
110 if (NULL != (tmp = zend_hash_str_find(Z_ARRVAL_P(server_params), in PHP_FUNCTION()
112 convert_to_string_ex(tmp); in PHP_FUNCTION()
113 domain_name = Z_STRVAL_P(tmp); in PHP_FUNCTION()
114 domain_name_len = Z_STRLEN_P(tmp); in PHP_FUNCTION()
117 if (NULL != (tmp = zend_hash_str_find(Z_ARRVAL_P(server_params), in PHP_FUNCTION()
119 convert_to_long_ex(tmp); in PHP_FUNCTION()
120 ctx = (CLSCTX)Z_LVAL_P(tmp); in PHP_FUNCTION()
430 zval *tmp; in php_com_get_id_of_name() local
436 …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()
437 *dispid = (DISPID)Z_LVAL_P(tmp); in php_com_get_id_of_name()
459 zval tmp; in php_com_get_id_of_name() local
466 ZVAL_LONG(&tmp, *dispid); in php_com_get_id_of_name()
467 zend_hash_str_update(obj->id_of_name_cache, name, namelen, &tmp); in php_com_get_id_of_name()
719 zval *tmp; in PHP_FUNCTION() local
721 if ((tmp = zend_hash_index_find(Z_ARRVAL_P(sink), 0)) != NULL && Z_TYPE_P(tmp) == IS_STRING) in PHP_FUNCTION()
722 typelibname = Z_STRVAL_P(tmp); in PHP_FUNCTION()
723 if ((tmp = zend_hash_index_find(Z_ARRVAL_P(sink), 1)) != NULL && Z_TYPE_P(tmp) == IS_STRING) in PHP_FUNCTION()
724 dispname = Z_STRVAL_P(tmp); in PHP_FUNCTION()