| 1733 | } |
| 1734 | |
| 1735 | static int32_t FindBrowserHost(dmArray<BrowserHost>& hosts, const char* host) |
| 1736 | { |
| 1737 | for (uint32_t i = 0; i < hosts.Size(); ++i) |
| 1738 | { |
| 1739 | if (NameEquals(hosts[i].m_Host, host)) |
| 1740 | return (int32_t) i; |
| 1741 | } |
| 1742 | return -1; |
| 1743 | } |
| 1744 | |
| 1745 | static int32_t FindBrowserService(dmArray<BrowserService>& services, const char* full_name) |
| 1746 | { |
no test coverage detected