Lines Matching refs:phpdbg_watch_element

445 void phpdbg_recurse_watch_element(phpdbg_watch_element *element);
446 void phpdbg_remove_watch_element_recursively(phpdbg_watch_element *element);
447 void phpdbg_free_watch_element(phpdbg_watch_element *element);
449 void phpdbg_watch_parent_ht(phpdbg_watch_element *element);
451 phpdbg_watch_element *phpdbg_add_watch_element(phpdbg_watchpoint_t *watch, phpdbg_watch_element *el…
464 phpdbg_watch_element *old_element;
482 phpdbg_watch_element *phpdbg_add_bucket_watch_element(Bucket *bucket, phpdbg_watch_element *element…
490 phpdbg_watch_element *phpdbg_add_ht_watch_element(zval *zv, phpdbg_watch_element *element) {
503 zend_bool phpdbg_is_recursively_watched(void *ptr, phpdbg_watch_element *element) {
504 phpdbg_watch_element *next = element;
516 void phpdbg_add_recursive_watch_from_ht(phpdbg_watch_element *element, zend_long idx, zend_string *…
517 phpdbg_watch_element *child;
540 void phpdbg_recurse_watch_element(phpdbg_watch_element *element) {
541 phpdbg_watch_element *child;
588 void phpdbg_watch_parent_ht(phpdbg_watch_element *element) {
618 void phpdbg_unwatch_parent_ht(phpdbg_watch_element *element) {
641 void phpdbg_dissociate_watch_element(phpdbg_watch_element *element, phpdbg_watch_element *until);
642 void phpdbg_free_watch_element_tree(phpdbg_watch_element *element);
644 void phpdbg_queue_element_for_recreation(phpdbg_watch_element *element) {
646 phpdbg_watch_element *prev;
649 phpdbg_watch_element *child = prev;
668 zend_bool phpdbg_try_readding_watch_element(zval *parent, phpdbg_watch_element *element) {
710 void phpdbg_automatic_dequeue_free(phpdbg_watch_element *element) {
711 phpdbg_watch_element *child = element;
723 phpdbg_watch_element *element;
752 void phpdbg_clean_watch_element(phpdbg_watch_element *element);
754 void phpdbg_free_watch_element(phpdbg_watch_element *element) {
763 void phpdbg_remove_watch_element_recursively(phpdbg_watch_element *element) {
769 phpdbg_watch_element *child;
781 void phpdbg_remove_watch_element(phpdbg_watch_element *element) {
782 phpdbg_watch_element *parent = element->parent, *child = element->child;
784 phpdbg_watch_element *cur = parent;
790 phpdbg_watch_element *cur = child;
809 void phpdbg_backup_watch_element(phpdbg_watch_element *element) {
814 void phpdbg_dissociate_watch_element(phpdbg_watch_element *element, phpdbg_watch_element *until) {
815 phpdbg_watch_element *child = element;
845 void phpdbg_free_watch_element_tree(phpdbg_watch_element *element) {
846 phpdbg_watch_element *parent = element->parent, *child = element->child;
848 phpdbg_watch_element *cur = parent;
854 phpdbg_watch_element *cur = child;
861 void phpdbg_update_watch_element_watch(phpdbg_watch_element *element) {
863 phpdbg_watch_element *child = element->child;
885 phpdbg_watch_element *element;
899 phpdbg_watch_element *element;
919 void phpdbg_clean_watch_element(phpdbg_watch_element *element) {
931 phpdbg_watch_element *element;
962 phpdbg_watch_element *element;
1018 phpdbg_watch_element *element = NULL;
1059 phpdbg_watch_element *element;
1147 phpdbg_watch_element *element;
1178 phpdbg_watch_element *element;
1189 static int phpdbg_create_simple_watchpoint(zval *zv, phpdbg_watch_element *element) {
1195 static int phpdbg_create_array_watchpoint(zval *zv, phpdbg_watch_element *element) {
1196 phpdbg_watch_element *new;
1205 new = ecalloc(1, sizeof(phpdbg_watch_element));
1221 static int phpdbg_create_recursive_watchpoint(zval *zv, phpdbg_watch_element *element) {
1228 typedef struct { int (*callback)(zval *zv, phpdbg_watch_element *); zend_string *str; } phpdbg_watc…
1232 phpdbg_watch_element *element = ecalloc(1, sizeof(phpdbg_watch_element));
1270 phpdbg_watch_element *element;
1279 element = ecalloc(1, sizeof(phpdbg_watch_element));
1298 …chpoint_parse_symtables(char *input, size_t len, int (*callback)(zval *, phpdbg_watch_element *)) { argument
1327 phpdbg_watch_element *element;
1415 phpdbg_watch_element *element;