Lines Matching refs:postfix
118 smart_str postfix[1]; member
955 smart_str_free(&object->postfix[0]); in spl_RecursiveIteratorIterator_free_storage()
974 smart_str_appendl(&intern->postfix[0], "", 0); in spl_RecursiveIteratorIterator_new_ex()
1095 RETVAL_STR(object->postfix[0].s); in spl_recursive_tree_iterator_get_postfix()
1152 char* postfix; in SPL_METHOD() local
1155 if (zend_parse_parameters(ZEND_NUM_ARGS(), "s", &postfix, &postfix_len) == FAILURE) { in SPL_METHOD()
1159 smart_str_free(&object->postfix[0]); in SPL_METHOD()
1160 smart_str_appendl(&object->postfix[0], postfix, postfix_len); in SPL_METHOD()
1206 zval prefix, entry, postfix; in SPL_METHOD() local
1244 spl_recursive_tree_iterator_get_postfix(object, &postfix); in SPL_METHOD()
1246 str = zend_string_alloc(Z_STRLEN(prefix) + Z_STRLEN(entry) + Z_STRLEN(postfix), 0); in SPL_METHOD()
1253 memcpy(ptr, Z_STRVAL(postfix), Z_STRLEN(postfix)); in SPL_METHOD()
1254 ptr += Z_STRLEN(postfix); in SPL_METHOD()
1259 zval_ptr_dtor(&postfix); in SPL_METHOD()
1270 zval prefix, key, postfix, key_copy; in SPL_METHOD() local
1298 spl_recursive_tree_iterator_get_postfix(object, &postfix); in SPL_METHOD()
1300 str = zend_string_alloc(Z_STRLEN(prefix) + Z_STRLEN(key) + Z_STRLEN(postfix), 0); in SPL_METHOD()
1307 memcpy(ptr, Z_STRVAL(postfix), Z_STRLEN(postfix)); in SPL_METHOD()
1308 ptr += Z_STRLEN(postfix); in SPL_METHOD()
1313 zval_ptr_dtor(&postfix); in SPL_METHOD()