Lines Matching refs:phpdbg_watch_element

500 void phpdbg_recurse_watch_element(phpdbg_watch_element *element);
501 void phpdbg_remove_watch_element_recursively(phpdbg_watch_element *element);
502 void phpdbg_free_watch_element(phpdbg_watch_element *element);
504 void phpdbg_watch_parent_ht(phpdbg_watch_element *element);
506 phpdbg_watch_element *phpdbg_add_watch_element(phpdbg_watchpoint_t *watch, phpdbg_watch_element *el…
519 phpdbg_watch_element *old_element;
539 phpdbg_watch_element *phpdbg_add_bucket_watch_element(Bucket *bucket, phpdbg_watch_element *element…
547 phpdbg_watch_element *phpdbg_add_ht_watch_element(zval *zv, phpdbg_watch_element *element) {
560 bool phpdbg_is_recursively_watched(void *ptr, phpdbg_watch_element *element) {
561 phpdbg_watch_element *next = element;
573 void phpdbg_add_recursive_watch_from_ht(phpdbg_watch_element *element, zend_long idx, zend_string *…
574 phpdbg_watch_element *child;
597 void phpdbg_recurse_watch_element(phpdbg_watch_element *element) {
598 phpdbg_watch_element *child;
645 void phpdbg_watch_parent_ht(phpdbg_watch_element *element) {
669 void phpdbg_unwatch_parent_ht(phpdbg_watch_element *element) {
692 void phpdbg_dissociate_watch_element(phpdbg_watch_element *element, phpdbg_watch_element *until);
693 void phpdbg_free_watch_element_tree(phpdbg_watch_element *element);
695 void phpdbg_queue_element_for_recreation(phpdbg_watch_element *element) {
697 phpdbg_watch_element *prev;
700 phpdbg_watch_element *child = prev;
719 bool phpdbg_try_re_adding_watch_element(zval *parent, phpdbg_watch_element *element) {
761 void phpdbg_automatic_dequeue_free(phpdbg_watch_element *element) {
762 phpdbg_watch_element *child = element;
774 phpdbg_watch_element *element;
803 void phpdbg_clean_watch_element(phpdbg_watch_element *element);
805 void phpdbg_free_watch_element(phpdbg_watch_element *element) {
814 void phpdbg_remove_watch_element_recursively(phpdbg_watch_element *element) {
820 phpdbg_watch_element *child;
832 void phpdbg_remove_watch_element(phpdbg_watch_element *element) {
833 phpdbg_watch_element *parent = element->parent, *child = element->child;
835 phpdbg_watch_element *cur = parent;
841 phpdbg_watch_element *cur = child;
860 void phpdbg_backup_watch_element(phpdbg_watch_element *element) {
865 void phpdbg_dissociate_watch_element(phpdbg_watch_element *element, phpdbg_watch_element *until) {
866 phpdbg_watch_element *child = element;
896 void phpdbg_free_watch_element_tree(phpdbg_watch_element *element) {
897 phpdbg_watch_element *parent = element->parent, *child = element->child;
899 phpdbg_watch_element *cur = parent;
905 phpdbg_watch_element *cur = child;
912 void phpdbg_update_watch_element_watch(phpdbg_watch_element *element) {
914 phpdbg_watch_element *child = element->child;
936 phpdbg_watch_element *element;
950 phpdbg_watch_element *element;
970 void phpdbg_clean_watch_element(phpdbg_watch_element *element) {
985 phpdbg_watch_element *element;
1016 phpdbg_watch_element *element;
1072 phpdbg_watch_element *element = NULL;
1113 phpdbg_watch_element *element;
1215 phpdbg_watch_element *element;
1246 phpdbg_watch_element *element;
1253 static int phpdbg_create_simple_watchpoint(zval *zv, phpdbg_watch_element *element) {
1259 static int phpdbg_create_array_watchpoint(zval *zv, phpdbg_watch_element *element) {
1260 phpdbg_watch_element *new;
1269 new = ecalloc(1, sizeof(phpdbg_watch_element));
1285 static int phpdbg_create_recursive_watchpoint(zval *zv, phpdbg_watch_element *element) {
1292 typedef struct { int (*callback)(zval *zv, phpdbg_watch_element *); zend_string *str; } phpdbg_watc…
1296 phpdbg_watch_element *element = ecalloc(1, sizeof(phpdbg_watch_element));
1336 phpdbg_watch_element *element;
1345 element = ecalloc(1, sizeof(phpdbg_watch_element));
1364 …chpoint_parse_symtables(char *input, size_t len, int (*callback)(zval *, phpdbg_watch_element *)) { argument
1393 phpdbg_watch_element *element;
1507 phpdbg_watch_element *element;