Lines Matching refs:found_entry
572 browscap_entry *found_entry = *found_entry_ptr; in browser_reg_compare() local
642 if (found_entry) { in browser_reg_compare()
644 zend_string *previous_match = found_entry->pattern; in browser_reg_compare()
710 browscap_entry *found_entry = NULL; in PHP_FUNCTION() local
750 found_entry = zend_hash_find_ptr(bdata->htab, lookup_browser_name); in PHP_FUNCTION()
751 if (found_entry == NULL) { in PHP_FUNCTION()
752 …_hash_apply_with_arguments(bdata->htab, browser_reg_compare, 2, lookup_browser_name, &found_entry); in PHP_FUNCTION()
754 if (found_entry == NULL) { in PHP_FUNCTION()
755 found_entry = zend_hash_str_find_ptr(bdata->htab, in PHP_FUNCTION()
757 if (found_entry == NULL) { in PHP_FUNCTION()
764 agent_ht = browscap_entry_to_array(bdata, found_entry); in PHP_FUNCTION()
772 while (found_entry->parent) { in PHP_FUNCTION()
773 found_entry = zend_hash_find_ptr(bdata->htab, found_entry->parent); in PHP_FUNCTION()
774 if (found_entry == NULL) { in PHP_FUNCTION()
778 agent_ht = browscap_entry_to_array(bdata, found_entry); in PHP_FUNCTION()