Lines Matching refs:postfix
119 smart_str postfix[1]; member
956 smart_str_free(&object->postfix[0]); in spl_RecursiveIteratorIterator_free_storage()
975 smart_str_appendl(&intern->postfix[0], "", 0); in spl_RecursiveIteratorIterator_new_ex()
1096 RETVAL_STR(object->postfix[0].s); in spl_recursive_tree_iterator_get_postfix()
1153 char* postfix; in SPL_METHOD() local
1156 if (zend_parse_parameters(ZEND_NUM_ARGS(), "s", &postfix, &postfix_len) == FAILURE) { in SPL_METHOD()
1160 smart_str_free(&object->postfix[0]); in SPL_METHOD()
1161 smart_str_appendl(&object->postfix[0], postfix, postfix_len); in SPL_METHOD()
1207 zval prefix, entry, postfix; in SPL_METHOD() local
1245 spl_recursive_tree_iterator_get_postfix(object, &postfix); in SPL_METHOD()
1247 str = zend_string_alloc(Z_STRLEN(prefix) + Z_STRLEN(entry) + Z_STRLEN(postfix), 0); in SPL_METHOD()
1254 memcpy(ptr, Z_STRVAL(postfix), Z_STRLEN(postfix)); in SPL_METHOD()
1255 ptr += Z_STRLEN(postfix); in SPL_METHOD()
1260 zval_ptr_dtor(&postfix); in SPL_METHOD()
1271 zval prefix, key, postfix, key_copy; in SPL_METHOD() local
1299 spl_recursive_tree_iterator_get_postfix(object, &postfix); in SPL_METHOD()
1301 str = zend_string_alloc(Z_STRLEN(prefix) + Z_STRLEN(key) + Z_STRLEN(postfix), 0); in SPL_METHOD()
1308 memcpy(ptr, Z_STRVAL(postfix), Z_STRLEN(postfix)); in SPL_METHOD()
1309 ptr += Z_STRLEN(postfix); in SPL_METHOD()
1314 zval_ptr_dtor(&postfix); in SPL_METHOD()