Lines Matching refs:phpdbg_watch_element

497 void phpdbg_recurse_watch_element(phpdbg_watch_element *element);
498 void phpdbg_remove_watch_element_recursively(phpdbg_watch_element *element);
499 void phpdbg_free_watch_element(phpdbg_watch_element *element);
501 void phpdbg_watch_parent_ht(phpdbg_watch_element *element);
503 phpdbg_watch_element *phpdbg_add_watch_element(phpdbg_watchpoint_t *watch, phpdbg_watch_element *el…
516 phpdbg_watch_element *old_element;
536 phpdbg_watch_element *phpdbg_add_bucket_watch_element(Bucket *bucket, phpdbg_watch_element *element…
544 phpdbg_watch_element *phpdbg_add_ht_watch_element(zval *zv, phpdbg_watch_element *element) {
557 bool phpdbg_is_recursively_watched(void *ptr, phpdbg_watch_element *element) {
558 phpdbg_watch_element *next = element;
570 void phpdbg_add_recursive_watch_from_ht(phpdbg_watch_element *element, zend_long idx, zend_string *…
571 phpdbg_watch_element *child;
594 void phpdbg_recurse_watch_element(phpdbg_watch_element *element) {
595 phpdbg_watch_element *child;
642 void phpdbg_watch_parent_ht(phpdbg_watch_element *element) {
672 void phpdbg_unwatch_parent_ht(phpdbg_watch_element *element) {
695 void phpdbg_dissociate_watch_element(phpdbg_watch_element *element, phpdbg_watch_element *until);
696 void phpdbg_free_watch_element_tree(phpdbg_watch_element *element);
698 void phpdbg_queue_element_for_recreation(phpdbg_watch_element *element) {
700 phpdbg_watch_element *prev;
703 phpdbg_watch_element *child = prev;
722 bool phpdbg_try_re_adding_watch_element(zval *parent, phpdbg_watch_element *element) {
764 void phpdbg_automatic_dequeue_free(phpdbg_watch_element *element) {
765 phpdbg_watch_element *child = element;
777 phpdbg_watch_element *element;
806 void phpdbg_clean_watch_element(phpdbg_watch_element *element);
808 void phpdbg_free_watch_element(phpdbg_watch_element *element) {
817 void phpdbg_remove_watch_element_recursively(phpdbg_watch_element *element) {
823 phpdbg_watch_element *child;
835 void phpdbg_remove_watch_element(phpdbg_watch_element *element) {
836 phpdbg_watch_element *parent = element->parent, *child = element->child;
838 phpdbg_watch_element *cur = parent;
844 phpdbg_watch_element *cur = child;
863 void phpdbg_backup_watch_element(phpdbg_watch_element *element) {
868 void phpdbg_dissociate_watch_element(phpdbg_watch_element *element, phpdbg_watch_element *until) {
869 phpdbg_watch_element *child = element;
899 void phpdbg_free_watch_element_tree(phpdbg_watch_element *element) {
900 phpdbg_watch_element *parent = element->parent, *child = element->child;
902 phpdbg_watch_element *cur = parent;
908 phpdbg_watch_element *cur = child;
915 void phpdbg_update_watch_element_watch(phpdbg_watch_element *element) {
917 phpdbg_watch_element *child = element->child;
939 phpdbg_watch_element *element;
953 phpdbg_watch_element *element;
973 void phpdbg_clean_watch_element(phpdbg_watch_element *element) {
988 phpdbg_watch_element *element;
1019 phpdbg_watch_element *element;
1075 phpdbg_watch_element *element = NULL;
1116 phpdbg_watch_element *element;
1218 phpdbg_watch_element *element;
1249 phpdbg_watch_element *element;
1256 static int phpdbg_create_simple_watchpoint(zval *zv, phpdbg_watch_element *element) {
1262 static int phpdbg_create_array_watchpoint(zval *zv, phpdbg_watch_element *element) {
1263 phpdbg_watch_element *new;
1272 new = ecalloc(1, sizeof(phpdbg_watch_element));
1288 static int phpdbg_create_recursive_watchpoint(zval *zv, phpdbg_watch_element *element) {
1295 typedef struct { int (*callback)(zval *zv, phpdbg_watch_element *); zend_string *str; } phpdbg_watc…
1299 phpdbg_watch_element *element = ecalloc(1, sizeof(phpdbg_watch_element));
1339 phpdbg_watch_element *element;
1348 element = ecalloc(1, sizeof(phpdbg_watch_element));
1367 …chpoint_parse_symtables(char *input, size_t len, int (*callback)(zval *, phpdbg_watch_element *)) { argument
1396 phpdbg_watch_element *element;
1503 phpdbg_watch_element *element;