Searched refs:match (Results 26 - 50 of 67) sorted by relevance

123

/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar9002/
H A Dar9280_olc.c69 HAL_BOOL match; local
78 match = ath_ee_getLowerUpperIndex((uint8_t)FREQ2FBIN(centers.synth_center,
81 if (match) {
H A Dar9285_reset.c666 HAL_BOOL match; local
680 match = ath_ee_getLowerUpperIndex((uint8_t)FREQ2FBIN(centers.synth_center,
683 if (match) {
/haiku/src/servers/app/
H A DDelayedMessage.h25 //! Merge-mode data-matching, set which data must match to merge messages.
81 void SetMerge(DMMergeMode mode, uint32 match = 0);
H A DDelayedMessage.cpp206 DelayedMessage::SetMerge(DMMergeMode mode, uint32 match) argument
211 fData->SetMerge(mode, match);
344 // Search for a match by value.
486 // Default-policy: all data must match
492 // Default Policy: no data needs to match
/haiku/src/add-ons/kernel/drivers/ports/pc_serial/
H A DDriver.h90 // for PCI: if PCI_INVAL then match class
95 } match; member in struct:serial_support_descriptor
/haiku/src/apps/cortex/TipManager/
H A DTipManagerImpl.h175 // match the given point (in target's view coordinates)
178 std::pair<BView*, const tip_entry*> match(
239 // match the given point (in screen coordinates)
242 std::pair<BView*, const tip_entry*> match(
H A DTipManagerImpl.cpp254 // match the given point (in target's view coordinates)
257 pair<BView*, const tip_entry*> _ViewEntry::match( function in class:_ViewEntry
267 // match, and stop recursing here; children can't have tips.
272 // match against tips for my target view
281 // match:
298 pair<BView*, const tip_entry*> ret = entry->match(
449 // match the given point (in screen coordinates)
452 pair<BView*, const tip_entry*> _WindowEntry::match( function in class:_WindowEntry
463 "!!! _WindowEntry::match(): unexpected window for target view (%p)\n",
469 pair<BView*,const tip_entry*> ret = (*it)->match(
[all...]
/haiku/3rdparty/docker/cross-compiler/
H A Dbuild-toolchain.sh35 if ! `git describe --dirty --tags --match=hrev* --abbrev=1`; then
/haiku/src/bin/unzip/
H A Dlist.c183 * filename in order for unzip to consider it a match. Speaking of
185 * with match() to see if the current file is one of them, and make a
212 if (match(G.filename, G.pfnames[i], uO.C_flag)) {
214 break; /* found match, so stop looping */
218 if (match(G.filename, G.pxnames[i], uO.C_flag)) {
219 do_this_file = FALSE; /* ^-- ignore case in match */
565 if (match(G.filename, G.pfnames[i], uO.C_flag)) {
567 break; /* found match, so stop looping */
571 if (match(G.filename, G.pxnames[i], uO.C_flag)) {
572 do_this_file = FALSE; /* ^-- ignore case in match */
[all...]
H A Dunzip.h340 typedef unsigned long ulg; /* predefined on some systems) & match zip */
414 int C_flag; /* -C: match filenames case-insensitively */
572 #define UzpMatch match
H A Dbeos.c78 /* Function do_wild() */ /* for porting: dir separator; match(ignore_case) */
128 continue; /* Unix: '*' and '?' do not match leading dot */
129 if (match(file->d_name, wildname, 0)) { /* 0 == case sens. */
163 continue; /* Unix: '*' and '?' do not match leading dot */
164 if (match(file->d_name, wildname, 0)) { /* 0 == don't ignore case */
H A Dfileio.c2497 unsigned char *match = NULL; local
2499 if (*str == c) {match = (unsigned char *)str;}
2502 return match;
/haiku/src/system/libroot/posix/
H A Dglob.c66 * 1. Patterns with illegal byte sequences match nothing - even if
164 static int match(Char *, Char *, Char *);
509 * If there was no match we are going to append the pattern
675 if (!match(pathend, pattern, restpattern)) {
759 match(Char *name, Char *pat, Char *patend) function
771 if (match(name, pat, patend))
/haiku/src/tools/
H A Dhardlink_packages.py66 if not (pattern.match(pkg)):
/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 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) {
H A DUtilities.h555 float ComputeTypeAheadScore(const char* text, const char* match,
/haiku/src/apps/mail/
H A DAddressTextControl.cpp147 int32 match = choiceText.IFindFirst(pattern); local
148 if (match < 0)
152 choiceText, match, pattern.Length()));
/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/tests/kits/storage/
H A DMimeSnifferTest.cpp873 "Sniffer pattern error: match level expected" },
875 "Sniffer pattern error: match level expected" },
881 "Sniffer pattern error: match level expected" },
942 "Sniffer pattern error: pattern and mask lengths do not match" },
958 "Sniffer pattern error: pattern and mask lengths do not match" },
1379 bool match = rule.Sniff(&data);
1380 // cout << match << endl;
1381 // cout << "match == " << (match ? "yes" : "no") << ", "
1382 // << ((match
[all...]
/haiku/src/add-ons/kernel/bus_managers/firewire/
H A Dfwohcireg.h212 fwohcireg_t match; member in struct:ohci_dma
/haiku/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_node.c661 * (WECA), is that an 802.11 station will change its BSSID to match
2272 struct ieee80211vap *match)
2278 if (match != NULL && ni->ni_vap != match)
2292 if (match != NULL && match->iv_opmode == IEEE80211_M_WDS) {
2301 if (ni->ni_wdsvap == match)
2271 ieee80211_node_table_reset(struct ieee80211_node_table *nt, struct ieee80211vap *match) argument
/haiku/src/kits/package/solver/libsolv/
H A DLibsolvSolver.cpp63 const char* match, int flags)
65 dataiterator_init(this, pool, repo, solvableId, keyname, match, flags);
62 SolvDataIterator(Pool* pool, Repo* repo, Id solvableId, Id keyname, const char* match, int flags) argument
/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/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) {

Completed in 170 milliseconds

123