Lines Matching refs:key_str

126 	zend_string *key_str = zend_strpprintf(0, "[%s]%s", ZSTR_VAL(group_str), ZSTR_VAL(name_str));  in ZEND_GET_MODULE()  local
129 return key_str; in ZEND_GET_MODULE()
133 #define DBA_RELEASE_HT_KEY_CREATION() if (key_ht) {zend_string_release_ex(key_str, false);}
408 zend_string *key_str = NULL; in php_dba_update() local
412 Z_PARAM_ARRAY_HT_OR_STR(key_ht, key_str) in php_dba_update()
421 key_str = php_dba_make_key(key_ht); in php_dba_update()
422 if (!key_str) { in php_dba_update()
428 RETVAL_BOOL(info->hnd->update(info, key_str, value, mode) == SUCCESS); in php_dba_update()
912 zend_string *key_str = NULL; in PHP_FUNCTION() local
915 Z_PARAM_ARRAY_HT_OR_STR(key_ht, key_str) in PHP_FUNCTION()
922 key_str = php_dba_make_key(key_ht); in PHP_FUNCTION()
923 if (!key_str) { in PHP_FUNCTION()
929 RETVAL_BOOL(info->hnd->exists(info, key_str) == SUCCESS); in PHP_FUNCTION()
940 zend_string *key_str = NULL; in PHP_FUNCTION() local
946 Z_PARAM_ARRAY_HT_OR_STR(key_ht, key_str) in PHP_FUNCTION()
953 Z_PARAM_ARRAY_HT_OR_STR(key_ht, key_str) in PHP_FUNCTION()
963 key_str = php_dba_make_key(key_ht); in PHP_FUNCTION()
964 if (!key_str) { in PHP_FUNCTION()
996 if ((val = info->hnd->fetch(info, key_str, skip)) == NULL) { in PHP_FUNCTION()
1085 zend_string *key_str = NULL; in PHP_FUNCTION() local
1088 Z_PARAM_ARRAY_HT_OR_STR(key_ht, key_str) in PHP_FUNCTION()
1096 key_str = php_dba_make_key(key_ht); in PHP_FUNCTION()
1097 if (!key_str) { in PHP_FUNCTION()
1103 RETVAL_BOOL(info->hnd->delete(info, key_str) == SUCCESS); in PHP_FUNCTION()