Searched refs:match (Results 1 - 25 of 67) sorted by last modified time

123

/haiku/src/add-ons/kernel/drivers/network/wlan/idualwifi7260/dev/pci/
H A Dif_iwm.c5526 /* Ignore Tx reports which don't match our last LQ command. */
5573 /* Ignore Tx reports which don't match our last LQ command. */
11641 iwm_match(struct device *parent, iwm_match_t match __unused, void *aux)
/haiku/src/add-ons/kernel/drivers/network/wlan/iaxwifi200/dev/pci/
H A Dif_iwx.c6009 /* Firmware expects indices which match our 11a rate set. */
6024 /* Firmware expects indices which match our 11b rate set. */
7732 /* Firmware expects indices which match our 11g rate set. */
10472 iwx_match(struct device *parent, iwx_match_t match __unused, void *aux)
/haiku/src/kits/tracker/
H A DUtilities.cpp1083 // capacity. Both must match.
1177 entry_ref match; local
1178 for (int32 index = 0; (message->FindRef("refs", index, &match) == B_OK);
1180 if (*ref == match)
1660 ComputeTypeAheadScore(const char* text, const char* match, bool wordMode) argument
1662 // highest score: exact match
1663 const char* found = strcasestr(text, match);
1671 // there was no exact match
1676 for (int32 j = 0, k = 0; match[j]; j++) {
1678 && tolower(text[k]) != tolower(match[
[all...]
H A DUtilities.h555 float ComputeTypeAheadScore(const char* text, const char* match,
H A DModel.cpp1060 // perform a mime type wildcard match
1063 // for everything else a full string match is used
1126 int32 match; local
1130 match = MatchMimeTypeString(&typeString, mimeSignature);
1132 match = WhileEachListItem(const_cast<BObjectList<BString>*>(list),
1137 if (match == kMatch)
1140 else if (match == kMatchSupertype) {
/haiku/src/servers/registrar/
H A DRecentEntries.cpp156 match the given filter criterion, only the most recent instance is
193 bool match = false; local
196 match = true;
200 if (!match)
/haiku/src/apps/mediaplayer/
H A DMainWin.cpp553 int32 match = propertyInfo.FindMatch(msg, index, &specifier, what, property); local
554 switch (match) {
724 if (match == 14 && (specifier.FindInt32("index", &i) != B_OK
735 if (match == 14)
755 if (match == 14) {
/haiku/src/system/libnetwork/netresolv/net/
H A Dgetaddrinfo.c625 /* require exact match for family field */
652 /* entry does not match addrconfig mask, remove from list */
658 /* entry does match, keep it in list and move to next one */
860 goto next; /* not match */
964 int match = 0; local
991 match++;
996 match += 8;
997 return match;
1095 * We compare the match length in a same AF only.
1196 * if the servname does not match socktyp
[all...]
/haiku/src/system/boot/loader/file_systems/fat/
H A DDirectory.cpp552 Directory::GetNextEntry(void *cookie, uint8 mask, uint8 match) argument
554 TRACE(("FASFS::Directory::%s(, %02x, %02x)\n", __FUNCTION__, mask, match));
592 if ((c->entry.Flags() & mask) == match) {
/haiku/src/add-ons/kernel/drivers/ports/pc_serial/
H A DDriver.cpp337 if (info.class_base != sSupportedDevices[i].match.class_base)
339 if (info.class_sub != sSupportedDevices[i].match.class_sub)
341 if (info.class_api != sSupportedDevices[i].match.class_api)
343 if (sSupportedDevices[i].match.vendor_id != PCI_INVAL
344 && info.vendor_id != sSupportedDevices[i].match.vendor_id)
346 if (sSupportedDevices[i].match.device_id != PCI_INVAL
347 && info.device_id != sSupportedDevices[i].match.device_id)
H A DDriver.h90 // for PCI: if PCI_INVAL then match class
95 } match; member in struct:serial_support_descriptor
/haiku/src/bin/
H A Dleak_analyser.sh38 Exclude allocations that match a regular expression. The
40 allocation, so can match in the header line as well as any
/haiku/src/add-ons/kernel/drivers/network/ether/rtl8125/dev/pci/
H A Dif_rge.c191 rge_match(struct device *parent, void *match, void *aux) argument
/haiku/3rdparty/docker/cross-compiler/
H A Dbuild-toolchain.sh35 if ! `git describe --dirty --tags --match=hrev* --abbrev=1`; then
/haiku/src/servers/debug/
H A DDebugServer.cpp87 // the expression in question is a team name match only,
94 RegExp::MatchResult match = expressionMatcher.Match(value); local
95 if (match.HasMatched())
/haiku/src/tests/kits/net/netservices2/
H A Dtestserver.py170 match = MULTIPART_FORM_BOUNDARY_RE.match(
172 if match is not None:
173 boundary_id_value = match.group(1)
210 match = AUTH_PATH_RE.match(self.path)
211 if match is None:
214 strategy = match.group('strategy')
215 expected_username = match.group('username')
216 expected_password = match
[all...]
/haiku/src/kits/support/
H A DString.cpp1532 // detach and set first match
1866 bool match = false; local
1873 match = true;
1878 if (match)
/haiku/src/apps/poorman/libhttpd/
H A Dlibhttpd.c85 #include "match.h"
773 if ( match( "**MSIE**", hc->useragent ) )
3061 if ( list[n][len] == '/' ) /* check in case of a substring match */
3855 match( hc->hs->cgi_pattern, hc->expnfilename ) )
4090 if ( hs->no_empty_referrers && match( hs->url_pattern, hc->origfilename ) )
4136 /* If the referrer host doesn't match the local host pattern, and
4137 ** the filename does match the url pattern, it's an illegal reference.
4139 if ( ! match( lp, refhost ) && match( hs->url_pattern, hc->origfilename ) )
/haiku/src/tools/checkstyle/
H A Dcheckstyle.py11 for match in matches:
12 printMatch(name, match, text)
13 highlights.append((match.start(), match.end(), name))
H A Dutils.py13 # prints match to stdout
14 def printMatch(name, match, source):
15 start = match.start()
16 end = match.end()
20 + "): '" + match.group().replace('\n','\\n') + "'")
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DImageFunctionsView.cpp149 void SetFilterMatch(const RegExp::MatchResult& match) argument
151 fFilterMatch = match;
226 const RegExp::MatchResult& match = node->FilterMatch(); local
227 if (!match.HasMatched())
233 fField.String(), match.StartOffset());
235 + match.StartOffset(), match.EndOffset()
236 - match.StartOffset());
595 RegExp::MatchResult& match)
604 functionNode->SetFilterMatch(match);
593 _AddFunctionNode(SourcePathComponentNode* parent, FunctionInstance* function, LocatableFile* file, RegExp::MatchResult& match) argument
[all...]
/haiku/src/libs/compat/freebsd_network/
H A Dfbsd_if_media.c174 struct ifmedia_entry *match; local
176 match = ifmedia_match(ifm, target, ifm->ifm_mask);
178 if (match == NULL) {
179 TRACE("ifmedia_set: no match for 0x%x/0x%x\n",
183 ifm->ifm_cur = match;
203 struct ifmedia_entry *match; local
221 match = ifmedia_match(ifm, newmedia, ifm->ifm_mask);
222 if (match == NULL) {
232 * Similarly, if best match changed (kernel debugger?).
236 (match
363 struct ifmedia_entry *match, *next; local
[all...]
/haiku/src/tools/
H A Dhardlink_packages.py66 if not (pattern.match(pkg)):
/haiku/src/add-ons/accelerants/intel_extreme/
H A Dmode.cpp462 f. Configure PCH transcoder timings, M/N/TU, and other transcoder settings (should match CPU settings).
/haiku/src/add-ons/kernel/drivers/network/ether/jmicron2x0/dev/jme/
H A Dif_jme.c398 int match; local
407 match = 0;
421 match++;
429 } while (match != ETHER_ADDR_LEN && offset < JME_EEPROM_END);
431 if (match == ETHER_ADDR_LEN) {

Completed in 208 milliseconds

123