Lines Matching refs:found_entry
547 browscap_entry *found_entry = *found_entry_ptr; in browser_reg_compare() local
617 if (found_entry) { in browser_reg_compare()
619 zend_string *previous_match = found_entry->pattern; in browser_reg_compare()
684 browscap_entry *found_entry = NULL; in PHP_FUNCTION() local
724 found_entry = zend_hash_find_ptr(bdata->htab, lookup_browser_name); in PHP_FUNCTION()
725 if (found_entry == NULL) { in PHP_FUNCTION()
729 if (browser_reg_compare(entry, lookup_browser_name, &found_entry)) { in PHP_FUNCTION()
734 if (found_entry == NULL) { in PHP_FUNCTION()
735 found_entry = zend_hash_str_find_ptr(bdata->htab, in PHP_FUNCTION()
737 if (found_entry == NULL) { in PHP_FUNCTION()
744 agent_ht = browscap_entry_to_array(bdata, found_entry); in PHP_FUNCTION()
752 while (found_entry->parent) { in PHP_FUNCTION()
753 found_entry = zend_hash_find_ptr(bdata->htab, found_entry->parent); in PHP_FUNCTION()
754 if (found_entry == NULL) { in PHP_FUNCTION()
758 agent_ht = browscap_entry_to_array(bdata, found_entry); in PHP_FUNCTION()