Lines Matching refs:key

1403 				zend_string *key;  in PHP_METHOD()  local
1411 key = zend_string_tolower(Z_STR_P(tmp_function)); in PHP_METHOD()
1413 if ((f = zend_hash_find_ptr(EG(function_table), key)) == NULL) { in PHP_METHOD()
1419 zend_hash_update(service->soap_functions.ft, key, &function_copy); in PHP_METHOD()
1421 zend_string_release_ex(key, 0); in PHP_METHOD()
1425 zend_string *key; in PHP_METHOD() local
1428 key = zend_string_tolower(Z_STR_P(function_name)); in PHP_METHOD()
1430 if ((f = zend_hash_find_ptr(EG(function_table), key)) == NULL) { in PHP_METHOD()
1440 zend_hash_update(service->soap_functions.ft, key, &function_copy); in PHP_METHOD()
1441 zend_string_release_ex(key, 0); in PHP_METHOD()
3630 smart_str key = {0}; local
3633 smart_str_appends(&key, (char*)hdr_func->ns->href);
3634 smart_str_appendc(&key, ':');
3636 smart_str_appendl(&key, Z_STRVAL(h->function_name), Z_STRLEN(h->function_name));
3637 smart_str_0(&key);
3638 if ((hdr = zend_hash_find_ptr(fnb->input.headers, key.s)) != NULL) {
3641 smart_str_free(&key);
3878 smart_str key = {0}; local
3882 smart_str_appendl(&key, Z_STRVAL_P(tmp), Z_STRLEN_P(tmp));
3883 smart_str_appendc(&key, ':');
3888 smart_str_appendl(&key, Z_STRVAL_P(tmp), Z_STRLEN_P(tmp));
3891 smart_str_0(&key);
3893 (hdr = zend_hash_find_ptr(headers->hdr->headerfaults, key.s)) != NULL) {
3897 smart_str_free(&key);
4096 smart_str key = {0}; local
4101 smart_str_appendl(&key, Z_STRVAL_P(tmp), Z_STRLEN_P(tmp));
4102 smart_str_appendc(&key, ':');
4107 smart_str_appendl(&key, Z_STRVAL_P(tmp), Z_STRLEN_P(tmp));
4110 smart_str_0(&key);
4115 (hdr = zend_hash_find_ptr(fnb->output.headers, key.s)) != NULL) {
4120 smart_str_free(&key);
4342 smart_str key = {0}; local
4345 smart_str_appendl(&key, Z_STRVAL_P(ns), Z_STRLEN_P(ns));
4346 smart_str_appendc(&key, ':');
4347 smart_str_appendl(&key, Z_STRVAL_P(name), Z_STRLEN_P(name));
4348 smart_str_0(&key);
4349 if ((hdr = zend_hash_find_ptr(hdrs, key.s)) != NULL) {
4356 smart_str_free(&key);