Lines Matching refs:phpdbg_watch_element

443 void phpdbg_recurse_watch_element(phpdbg_watch_element *element);
444 void phpdbg_remove_watch_element_recursively(phpdbg_watch_element *element);
445 void phpdbg_free_watch_element(phpdbg_watch_element *element);
447 void phpdbg_watch_parent_ht(phpdbg_watch_element *element);
449 phpdbg_watch_element *phpdbg_add_watch_element(phpdbg_watchpoint_t *watch, phpdbg_watch_element *el…
462 phpdbg_watch_element *old_element;
480 phpdbg_watch_element *phpdbg_add_bucket_watch_element(Bucket *bucket, phpdbg_watch_element *element…
488 phpdbg_watch_element *phpdbg_add_ht_watch_element(zval *zv, phpdbg_watch_element *element) {
501 zend_bool phpdbg_is_recursively_watched(void *ptr, phpdbg_watch_element *element) {
502 phpdbg_watch_element *next = element;
514 void phpdbg_add_recursive_watch_from_ht(phpdbg_watch_element *element, zend_long idx, zend_string *…
515 phpdbg_watch_element *child;
538 void phpdbg_recurse_watch_element(phpdbg_watch_element *element) {
539 phpdbg_watch_element *child;
586 void phpdbg_watch_parent_ht(phpdbg_watch_element *element) {
616 void phpdbg_unwatch_parent_ht(phpdbg_watch_element *element) {
639 void phpdbg_dissociate_watch_element(phpdbg_watch_element *element, phpdbg_watch_element *until);
640 void phpdbg_free_watch_element_tree(phpdbg_watch_element *element);
642 void phpdbg_queue_element_for_recreation(phpdbg_watch_element *element) {
644 phpdbg_watch_element *prev;
647 phpdbg_watch_element *child = prev;
666 zend_bool phpdbg_try_readding_watch_element(zval *parent, phpdbg_watch_element *element) {
708 void phpdbg_automatic_dequeue_free(phpdbg_watch_element *element) {
709 phpdbg_watch_element *child = element;
721 phpdbg_watch_element *element;
750 void phpdbg_clean_watch_element(phpdbg_watch_element *element);
752 void phpdbg_free_watch_element(phpdbg_watch_element *element) {
761 void phpdbg_remove_watch_element_recursively(phpdbg_watch_element *element) {
767 phpdbg_watch_element *child;
779 void phpdbg_remove_watch_element(phpdbg_watch_element *element) {
780 phpdbg_watch_element *parent = element->parent, *child = element->child;
782 phpdbg_watch_element *cur = parent;
788 phpdbg_watch_element *cur = child;
807 void phpdbg_backup_watch_element(phpdbg_watch_element *element) {
812 void phpdbg_dissociate_watch_element(phpdbg_watch_element *element, phpdbg_watch_element *until) {
813 phpdbg_watch_element *child = element;
843 void phpdbg_free_watch_element_tree(phpdbg_watch_element *element) {
844 phpdbg_watch_element *parent = element->parent, *child = element->child;
846 phpdbg_watch_element *cur = parent;
852 phpdbg_watch_element *cur = child;
859 void phpdbg_update_watch_element_watch(phpdbg_watch_element *element) {
861 phpdbg_watch_element *child = element->child;
883 phpdbg_watch_element *element;
897 phpdbg_watch_element *element;
917 void phpdbg_clean_watch_element(phpdbg_watch_element *element) {
929 phpdbg_watch_element *element;
960 phpdbg_watch_element *element;
1016 phpdbg_watch_element *element = NULL;
1057 phpdbg_watch_element *element;
1145 phpdbg_watch_element *element;
1176 phpdbg_watch_element *element;
1187 static int phpdbg_create_simple_watchpoint(zval *zv, phpdbg_watch_element *element) {
1193 static int phpdbg_create_array_watchpoint(zval *zv, phpdbg_watch_element *element) {
1194 phpdbg_watch_element *new;
1203 new = ecalloc(1, sizeof(phpdbg_watch_element));
1219 static int phpdbg_create_recursive_watchpoint(zval *zv, phpdbg_watch_element *element) {
1226 typedef struct { int (*callback)(zval *zv, phpdbg_watch_element *); zend_string *str; } phpdbg_watc…
1230 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;